From a0d4da4bd48cf879651f328763ba06cac97de5d1 Mon Sep 17 00:00:00 2001 From: Alex Dixon Date: Fri, 13 Oct 2023 09:11:19 -0700 Subject: [PATCH 01/63] fix: helm chart url The previous url didn't work for me. The new one is copied from the instructions in the helm-charts repo. --- docs/versioned_docs/version-2.19.0/setup/helm.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/versioned_docs/version-2.19.0/setup/helm.md b/docs/versioned_docs/version-2.19.0/setup/helm.md index cca63346c1..e14232f0a4 100644 --- a/docs/versioned_docs/version-2.19.0/setup/helm.md +++ b/docs/versioned_docs/version-2.19.0/setup/helm.md @@ -13,7 +13,7 @@ This repository contains Helm charts for deploying [ToolJet](https://github.com/ ### From Helm repo ```bash -helm repo add tooljet https://github.com/ToolJet/helm-charts.git +helm repo add tooljet https://tooljet.github.io/helm-charts helm install tooljet tooljet/tooljet ``` @@ -33,4 +33,4 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. From 1bf1e561c5a46b9b168ced6c38a50e6fb50e8693 Mon Sep 17 00:00:00 2001 From: Akshay Sasidharan Date: Wed, 18 Oct 2023 15:10:24 +0530 Subject: [PATCH 02/63] remove unused postgrest proxy provider in import export module --- .../import_export_resources/import_export_resources.module.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/src/modules/import_export_resources/import_export_resources.module.ts b/server/src/modules/import_export_resources/import_export_resources.module.ts index f366f12aeb..5520a069bf 100644 --- a/server/src/modules/import_export_resources/import_export_resources.module.ts +++ b/server/src/modules/import_export_resources/import_export_resources.module.ts @@ -20,7 +20,6 @@ import { AppsService } from '@services/apps.service'; import { App } from 'src/entities/app.entity'; import { AppVersion } from 'src/entities/app_version.entity'; import { AppUser } from 'src/entities/app_user.entity'; -import { PostgrestProxyService } from '@services/postgrest_proxy.service'; const imports = [ PluginsModule, @@ -46,7 +45,6 @@ if (process.env.ENABLE_TOOLJET_DB === 'true') { PluginsHelper, AppsService, CredentialsService, - PostgrestProxyService, ], exports: [ImportExportResourcesService], }) From 339c7e54bce85467501f6c5291d425f05f6f3608 Mon Sep 17 00:00:00 2001 From: Mekhla Asopa <59684099+Mekhla-Asopa@users.noreply.github.com> Date: Mon, 9 Oct 2023 18:14:57 +0530 Subject: [PATCH 03/63] Updated cypess mysql spec (#7717) --- .../e2e/editor/data-source/mysqlHappyPath.cy.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cypress-tests/cypress/e2e/editor/data-source/mysqlHappyPath.cy.js b/cypress-tests/cypress/e2e/editor/data-source/mysqlHappyPath.cy.js index f8ad149d8b..230baf3a29 100644 --- a/cypress-tests/cypress/e2e/editor/data-source/mysqlHappyPath.cy.js +++ b/cypress-tests/cypress/e2e/editor/data-source/mysqlHappyPath.cy.js @@ -138,7 +138,7 @@ describe("Data sources MySql", () => { fillDataSourceTextField( postgreSqlText.labelDbName, postgreSqlText.placeholderNameOfDB, - "testdb" + "testdv" ); fillDataSourceTextField( postgreSqlText.labelUserName, @@ -205,7 +205,7 @@ describe("Data sources MySql", () => { fillConnectionForm({ Host: Cypress.env("mysql_host"), Port: Cypress.env("mysql_port"), - "Database Name": "testdb", + "Database Name": "testdv", Username: Cypress.env("mysql_user"), Password: Cypress.env("mysql_password"), }); @@ -383,7 +383,7 @@ describe("Data sources MySql", () => { fillConnectionForm({ Host: Cypress.env("mysql_host"), Port: Cypress.env("mysql_port"), - "Database Name": "testdb", + "Database Name": "testdv", Username: Cypress.env("mysql_user"), Password: Cypress.env("mysql_password"), }); @@ -416,7 +416,7 @@ describe("Data sources MySql", () => { cy.get(".p-3").should( "have.text", - `[{"Tables_in_testdb (${dbName})":"${dbName}"}]` + `[{"Tables_in_testdv (${dbName})":"${dbName}"}]` ); // addQuery( @@ -458,7 +458,7 @@ describe("Data sources MySql", () => { fillConnectionForm({ Host: Cypress.env("mysql_host"), Port: "3318", - "Database Name": "testdb", + "Database Name": "testdv", Username: Cypress.env("mysql_user"), Password: Cypress.env("mysql_password"), }); From a5d65e7cc4e84c7295b8062ba24ea01150c48c82 Mon Sep 17 00:00:00 2001 From: Pratik date Date: Fri, 20 Oct 2023 23:10:21 +0530 Subject: [PATCH 04/63] Update .env.external.example --- deploy/docker/.env.external.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/docker/.env.external.example b/deploy/docker/.env.external.example index 0e7118f101..7aa73adef5 100644 --- a/deploy/docker/.env.external.example +++ b/deploy/docker/.env.external.example @@ -8,7 +8,7 @@ SECRET_KEY_BASE= #replace_with_secret_key_base # DATABASE CONFIG ORM_LOGGING=all -PG_DB= # Databse name +PG_DB= # Database name PG_USER= # Postgres database username PG_HOST= # Postgres database host PG_PASS= # Postgres database password From 329b9658c0c1a6b08fb673bd2f2d8495d7181070 Mon Sep 17 00:00:00 2001 From: Shubhendra Date: Tue, 31 Oct 2023 16:20:45 +0530 Subject: [PATCH 05/63] [doc]codespaces guide --- .../contributing-guide/setup/codespaces.md | 118 ++++++++++++++++++ docs/sidebars.js | 1 + .../contributing-guide/setup/codespaces.md | 118 ++++++++++++++++++ .../contributing-guide/setup/codespaces.md | 118 ++++++++++++++++++ .../contributing-guide/setup/codespaces.md | 118 ++++++++++++++++++ .../contributing-guide/setup/codespaces.md | 118 ++++++++++++++++++ .../contributing-guide/setup/codespaces.md | 118 ++++++++++++++++++ .../contributing-guide/setup/codespaces.md | 118 ++++++++++++++++++ .../version-2.15.0-sidebars.json | 1 + .../version-2.16.0-sidebars.json | 1 + .../version-2.17.0-sidebars.json | 1 + .../version-2.18.0-sidebars.json | 3 +- .../version-2.19.0-sidebars.json | 1 + .../version-2.22.0-sidebars.json | 3 +- 14 files changed, 835 insertions(+), 2 deletions(-) create mode 100644 docs/docs/contributing-guide/setup/codespaces.md create mode 100644 docs/versioned_docs/version-2.15.0/contributing-guide/setup/codespaces.md create mode 100644 docs/versioned_docs/version-2.16.0/contributing-guide/setup/codespaces.md create mode 100644 docs/versioned_docs/version-2.17.0/contributing-guide/setup/codespaces.md create mode 100644 docs/versioned_docs/version-2.18.0/contributing-guide/setup/codespaces.md create mode 100644 docs/versioned_docs/version-2.19.0/contributing-guide/setup/codespaces.md create mode 100644 docs/versioned_docs/version-2.22.0/contributing-guide/setup/codespaces.md diff --git a/docs/docs/contributing-guide/setup/codespaces.md b/docs/docs/contributing-guide/setup/codespaces.md new file mode 100644 index 0000000000..bfc2d53219 --- /dev/null +++ b/docs/docs/contributing-guide/setup/codespaces.md @@ -0,0 +1,118 @@ +--- +id: codespaces +title: GitHub Codespaces +--- + +Follow the steps below to set up ToolJet on GitHub Codespaces. We recommend reading our guide on [architecture](https://docs.tooljet.com/docs/contributing-guide/setup/architecture) of ToolJet before proceeding. + +Open the terminal and run the commands below. + +## Setting up + +### 1. Set up the environment + +1. Install Node.js ( version: v18.3.0 ) and npm (version: v8.11.0) + +``` +nvm install 18.3.0 +nvm use 18.3.0 +npm install -g npm@8.11.0 +``` + +2. Install Postgres + +``` +sudo sh -c 'echo "deb [http://apt.postgresql.org/pub/repos/apt](http://apt.postgresql.org/pub/repos/apt) $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' + +wget --quiet -O - [https://www.postgresql.org/media/keys/ACCC4CF8.asc](https://www.postgresql.org/media/keys/ACCC4CF8.asc) | sudo apt-key add - + +sudo apt-get update + +sudo apt-get install postgresql-13 postgresql-contrib-13 +``` + +To start the postgresql service run the below command: + +``` +sudo service postgresql start +``` + +If you wish to change the password of the installed postresql service run the below commands: + +``` +sudo su + +sudo -u postgres psql + +\password postgres + +\q +``` + +### 2. Set up environment variables + +Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) + +For basic set-up you add the below env variables: + +`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) + +`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) + +``` +TOOLJET_HOST=http://localhost:3000 + +LOCKBOX_MASTER_KEY= + +SECRET_KEY_BASE= + +PG_USER=postgres + +PG_HOST=localhost + +PG_PASS=postgres + +PG_DB=tooljet_prod + +SUB_PATH=/apps/tooljet/ + +NODE_ENV=production + +SERVE_CLIENT=true +``` + + +### 3. Install and build dependencies + +Make sure node version is set to 18.3.0 before running the below command: + +``` +npm install +npm install --prefix server +npm install --prefix frontend +npm run build:plugins +``` + + +### 4. Set up database + +``` +npm run --prefix server db:create +npm run --prefix server db:mirgate +``` + +If at any point you need to reset the database, use this command `npm run --prefix server db:reset` + +### 5. Build client + +``` +cd ./frontend && NODE=production npm run build +``` + +### 6. Run server + +``` +cd ./server && npm run start:prod +``` + +The client will start on the **port 3000**, you can access the client by visiting the url created by codespace - `https:///apps/tooljet` \ No newline at end of file diff --git a/docs/sidebars.js b/docs/sidebars.js index ab94cdd29f..cdf308776d 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -384,6 +384,7 @@ const sidebars = { 'type': 'category', 'label': 'Setup', 'items': [ + 'contributing-guide/setup/codespaces', 'contributing-guide/setup/macos', 'contributing-guide/setup/docker', 'contributing-guide/setup/ubuntu', diff --git a/docs/versioned_docs/version-2.15.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.15.0/contributing-guide/setup/codespaces.md new file mode 100644 index 0000000000..bfc2d53219 --- /dev/null +++ b/docs/versioned_docs/version-2.15.0/contributing-guide/setup/codespaces.md @@ -0,0 +1,118 @@ +--- +id: codespaces +title: GitHub Codespaces +--- + +Follow the steps below to set up ToolJet on GitHub Codespaces. We recommend reading our guide on [architecture](https://docs.tooljet.com/docs/contributing-guide/setup/architecture) of ToolJet before proceeding. + +Open the terminal and run the commands below. + +## Setting up + +### 1. Set up the environment + +1. Install Node.js ( version: v18.3.0 ) and npm (version: v8.11.0) + +``` +nvm install 18.3.0 +nvm use 18.3.0 +npm install -g npm@8.11.0 +``` + +2. Install Postgres + +``` +sudo sh -c 'echo "deb [http://apt.postgresql.org/pub/repos/apt](http://apt.postgresql.org/pub/repos/apt) $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' + +wget --quiet -O - [https://www.postgresql.org/media/keys/ACCC4CF8.asc](https://www.postgresql.org/media/keys/ACCC4CF8.asc) | sudo apt-key add - + +sudo apt-get update + +sudo apt-get install postgresql-13 postgresql-contrib-13 +``` + +To start the postgresql service run the below command: + +``` +sudo service postgresql start +``` + +If you wish to change the password of the installed postresql service run the below commands: + +``` +sudo su + +sudo -u postgres psql + +\password postgres + +\q +``` + +### 2. Set up environment variables + +Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) + +For basic set-up you add the below env variables: + +`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) + +`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) + +``` +TOOLJET_HOST=http://localhost:3000 + +LOCKBOX_MASTER_KEY= + +SECRET_KEY_BASE= + +PG_USER=postgres + +PG_HOST=localhost + +PG_PASS=postgres + +PG_DB=tooljet_prod + +SUB_PATH=/apps/tooljet/ + +NODE_ENV=production + +SERVE_CLIENT=true +``` + + +### 3. Install and build dependencies + +Make sure node version is set to 18.3.0 before running the below command: + +``` +npm install +npm install --prefix server +npm install --prefix frontend +npm run build:plugins +``` + + +### 4. Set up database + +``` +npm run --prefix server db:create +npm run --prefix server db:mirgate +``` + +If at any point you need to reset the database, use this command `npm run --prefix server db:reset` + +### 5. Build client + +``` +cd ./frontend && NODE=production npm run build +``` + +### 6. Run server + +``` +cd ./server && npm run start:prod +``` + +The client will start on the **port 3000**, you can access the client by visiting the url created by codespace - `https:///apps/tooljet` \ No newline at end of file diff --git a/docs/versioned_docs/version-2.16.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.16.0/contributing-guide/setup/codespaces.md new file mode 100644 index 0000000000..bfc2d53219 --- /dev/null +++ b/docs/versioned_docs/version-2.16.0/contributing-guide/setup/codespaces.md @@ -0,0 +1,118 @@ +--- +id: codespaces +title: GitHub Codespaces +--- + +Follow the steps below to set up ToolJet on GitHub Codespaces. We recommend reading our guide on [architecture](https://docs.tooljet.com/docs/contributing-guide/setup/architecture) of ToolJet before proceeding. + +Open the terminal and run the commands below. + +## Setting up + +### 1. Set up the environment + +1. Install Node.js ( version: v18.3.0 ) and npm (version: v8.11.0) + +``` +nvm install 18.3.0 +nvm use 18.3.0 +npm install -g npm@8.11.0 +``` + +2. Install Postgres + +``` +sudo sh -c 'echo "deb [http://apt.postgresql.org/pub/repos/apt](http://apt.postgresql.org/pub/repos/apt) $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' + +wget --quiet -O - [https://www.postgresql.org/media/keys/ACCC4CF8.asc](https://www.postgresql.org/media/keys/ACCC4CF8.asc) | sudo apt-key add - + +sudo apt-get update + +sudo apt-get install postgresql-13 postgresql-contrib-13 +``` + +To start the postgresql service run the below command: + +``` +sudo service postgresql start +``` + +If you wish to change the password of the installed postresql service run the below commands: + +``` +sudo su + +sudo -u postgres psql + +\password postgres + +\q +``` + +### 2. Set up environment variables + +Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) + +For basic set-up you add the below env variables: + +`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) + +`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) + +``` +TOOLJET_HOST=http://localhost:3000 + +LOCKBOX_MASTER_KEY= + +SECRET_KEY_BASE= + +PG_USER=postgres + +PG_HOST=localhost + +PG_PASS=postgres + +PG_DB=tooljet_prod + +SUB_PATH=/apps/tooljet/ + +NODE_ENV=production + +SERVE_CLIENT=true +``` + + +### 3. Install and build dependencies + +Make sure node version is set to 18.3.0 before running the below command: + +``` +npm install +npm install --prefix server +npm install --prefix frontend +npm run build:plugins +``` + + +### 4. Set up database + +``` +npm run --prefix server db:create +npm run --prefix server db:mirgate +``` + +If at any point you need to reset the database, use this command `npm run --prefix server db:reset` + +### 5. Build client + +``` +cd ./frontend && NODE=production npm run build +``` + +### 6. Run server + +``` +cd ./server && npm run start:prod +``` + +The client will start on the **port 3000**, you can access the client by visiting the url created by codespace - `https:///apps/tooljet` \ No newline at end of file diff --git a/docs/versioned_docs/version-2.17.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.17.0/contributing-guide/setup/codespaces.md new file mode 100644 index 0000000000..bfc2d53219 --- /dev/null +++ b/docs/versioned_docs/version-2.17.0/contributing-guide/setup/codespaces.md @@ -0,0 +1,118 @@ +--- +id: codespaces +title: GitHub Codespaces +--- + +Follow the steps below to set up ToolJet on GitHub Codespaces. We recommend reading our guide on [architecture](https://docs.tooljet.com/docs/contributing-guide/setup/architecture) of ToolJet before proceeding. + +Open the terminal and run the commands below. + +## Setting up + +### 1. Set up the environment + +1. Install Node.js ( version: v18.3.0 ) and npm (version: v8.11.0) + +``` +nvm install 18.3.0 +nvm use 18.3.0 +npm install -g npm@8.11.0 +``` + +2. Install Postgres + +``` +sudo sh -c 'echo "deb [http://apt.postgresql.org/pub/repos/apt](http://apt.postgresql.org/pub/repos/apt) $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' + +wget --quiet -O - [https://www.postgresql.org/media/keys/ACCC4CF8.asc](https://www.postgresql.org/media/keys/ACCC4CF8.asc) | sudo apt-key add - + +sudo apt-get update + +sudo apt-get install postgresql-13 postgresql-contrib-13 +``` + +To start the postgresql service run the below command: + +``` +sudo service postgresql start +``` + +If you wish to change the password of the installed postresql service run the below commands: + +``` +sudo su + +sudo -u postgres psql + +\password postgres + +\q +``` + +### 2. Set up environment variables + +Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) + +For basic set-up you add the below env variables: + +`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) + +`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) + +``` +TOOLJET_HOST=http://localhost:3000 + +LOCKBOX_MASTER_KEY= + +SECRET_KEY_BASE= + +PG_USER=postgres + +PG_HOST=localhost + +PG_PASS=postgres + +PG_DB=tooljet_prod + +SUB_PATH=/apps/tooljet/ + +NODE_ENV=production + +SERVE_CLIENT=true +``` + + +### 3. Install and build dependencies + +Make sure node version is set to 18.3.0 before running the below command: + +``` +npm install +npm install --prefix server +npm install --prefix frontend +npm run build:plugins +``` + + +### 4. Set up database + +``` +npm run --prefix server db:create +npm run --prefix server db:mirgate +``` + +If at any point you need to reset the database, use this command `npm run --prefix server db:reset` + +### 5. Build client + +``` +cd ./frontend && NODE=production npm run build +``` + +### 6. Run server + +``` +cd ./server && npm run start:prod +``` + +The client will start on the **port 3000**, you can access the client by visiting the url created by codespace - `https:///apps/tooljet` \ No newline at end of file diff --git a/docs/versioned_docs/version-2.18.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.18.0/contributing-guide/setup/codespaces.md new file mode 100644 index 0000000000..bfc2d53219 --- /dev/null +++ b/docs/versioned_docs/version-2.18.0/contributing-guide/setup/codespaces.md @@ -0,0 +1,118 @@ +--- +id: codespaces +title: GitHub Codespaces +--- + +Follow the steps below to set up ToolJet on GitHub Codespaces. We recommend reading our guide on [architecture](https://docs.tooljet.com/docs/contributing-guide/setup/architecture) of ToolJet before proceeding. + +Open the terminal and run the commands below. + +## Setting up + +### 1. Set up the environment + +1. Install Node.js ( version: v18.3.0 ) and npm (version: v8.11.0) + +``` +nvm install 18.3.0 +nvm use 18.3.0 +npm install -g npm@8.11.0 +``` + +2. Install Postgres + +``` +sudo sh -c 'echo "deb [http://apt.postgresql.org/pub/repos/apt](http://apt.postgresql.org/pub/repos/apt) $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' + +wget --quiet -O - [https://www.postgresql.org/media/keys/ACCC4CF8.asc](https://www.postgresql.org/media/keys/ACCC4CF8.asc) | sudo apt-key add - + +sudo apt-get update + +sudo apt-get install postgresql-13 postgresql-contrib-13 +``` + +To start the postgresql service run the below command: + +``` +sudo service postgresql start +``` + +If you wish to change the password of the installed postresql service run the below commands: + +``` +sudo su + +sudo -u postgres psql + +\password postgres + +\q +``` + +### 2. Set up environment variables + +Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) + +For basic set-up you add the below env variables: + +`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) + +`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) + +``` +TOOLJET_HOST=http://localhost:3000 + +LOCKBOX_MASTER_KEY= + +SECRET_KEY_BASE= + +PG_USER=postgres + +PG_HOST=localhost + +PG_PASS=postgres + +PG_DB=tooljet_prod + +SUB_PATH=/apps/tooljet/ + +NODE_ENV=production + +SERVE_CLIENT=true +``` + + +### 3. Install and build dependencies + +Make sure node version is set to 18.3.0 before running the below command: + +``` +npm install +npm install --prefix server +npm install --prefix frontend +npm run build:plugins +``` + + +### 4. Set up database + +``` +npm run --prefix server db:create +npm run --prefix server db:mirgate +``` + +If at any point you need to reset the database, use this command `npm run --prefix server db:reset` + +### 5. Build client + +``` +cd ./frontend && NODE=production npm run build +``` + +### 6. Run server + +``` +cd ./server && npm run start:prod +``` + +The client will start on the **port 3000**, you can access the client by visiting the url created by codespace - `https:///apps/tooljet` \ No newline at end of file diff --git a/docs/versioned_docs/version-2.19.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.19.0/contributing-guide/setup/codespaces.md new file mode 100644 index 0000000000..bfc2d53219 --- /dev/null +++ b/docs/versioned_docs/version-2.19.0/contributing-guide/setup/codespaces.md @@ -0,0 +1,118 @@ +--- +id: codespaces +title: GitHub Codespaces +--- + +Follow the steps below to set up ToolJet on GitHub Codespaces. We recommend reading our guide on [architecture](https://docs.tooljet.com/docs/contributing-guide/setup/architecture) of ToolJet before proceeding. + +Open the terminal and run the commands below. + +## Setting up + +### 1. Set up the environment + +1. Install Node.js ( version: v18.3.0 ) and npm (version: v8.11.0) + +``` +nvm install 18.3.0 +nvm use 18.3.0 +npm install -g npm@8.11.0 +``` + +2. Install Postgres + +``` +sudo sh -c 'echo "deb [http://apt.postgresql.org/pub/repos/apt](http://apt.postgresql.org/pub/repos/apt) $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' + +wget --quiet -O - [https://www.postgresql.org/media/keys/ACCC4CF8.asc](https://www.postgresql.org/media/keys/ACCC4CF8.asc) | sudo apt-key add - + +sudo apt-get update + +sudo apt-get install postgresql-13 postgresql-contrib-13 +``` + +To start the postgresql service run the below command: + +``` +sudo service postgresql start +``` + +If you wish to change the password of the installed postresql service run the below commands: + +``` +sudo su + +sudo -u postgres psql + +\password postgres + +\q +``` + +### 2. Set up environment variables + +Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) + +For basic set-up you add the below env variables: + +`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) + +`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) + +``` +TOOLJET_HOST=http://localhost:3000 + +LOCKBOX_MASTER_KEY= + +SECRET_KEY_BASE= + +PG_USER=postgres + +PG_HOST=localhost + +PG_PASS=postgres + +PG_DB=tooljet_prod + +SUB_PATH=/apps/tooljet/ + +NODE_ENV=production + +SERVE_CLIENT=true +``` + + +### 3. Install and build dependencies + +Make sure node version is set to 18.3.0 before running the below command: + +``` +npm install +npm install --prefix server +npm install --prefix frontend +npm run build:plugins +``` + + +### 4. Set up database + +``` +npm run --prefix server db:create +npm run --prefix server db:mirgate +``` + +If at any point you need to reset the database, use this command `npm run --prefix server db:reset` + +### 5. Build client + +``` +cd ./frontend && NODE=production npm run build +``` + +### 6. Run server + +``` +cd ./server && npm run start:prod +``` + +The client will start on the **port 3000**, you can access the client by visiting the url created by codespace - `https:///apps/tooljet` \ No newline at end of file diff --git a/docs/versioned_docs/version-2.22.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.22.0/contributing-guide/setup/codespaces.md new file mode 100644 index 0000000000..bfc2d53219 --- /dev/null +++ b/docs/versioned_docs/version-2.22.0/contributing-guide/setup/codespaces.md @@ -0,0 +1,118 @@ +--- +id: codespaces +title: GitHub Codespaces +--- + +Follow the steps below to set up ToolJet on GitHub Codespaces. We recommend reading our guide on [architecture](https://docs.tooljet.com/docs/contributing-guide/setup/architecture) of ToolJet before proceeding. + +Open the terminal and run the commands below. + +## Setting up + +### 1. Set up the environment + +1. Install Node.js ( version: v18.3.0 ) and npm (version: v8.11.0) + +``` +nvm install 18.3.0 +nvm use 18.3.0 +npm install -g npm@8.11.0 +``` + +2. Install Postgres + +``` +sudo sh -c 'echo "deb [http://apt.postgresql.org/pub/repos/apt](http://apt.postgresql.org/pub/repos/apt) $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' + +wget --quiet -O - [https://www.postgresql.org/media/keys/ACCC4CF8.asc](https://www.postgresql.org/media/keys/ACCC4CF8.asc) | sudo apt-key add - + +sudo apt-get update + +sudo apt-get install postgresql-13 postgresql-contrib-13 +``` + +To start the postgresql service run the below command: + +``` +sudo service postgresql start +``` + +If you wish to change the password of the installed postresql service run the below commands: + +``` +sudo su + +sudo -u postgres psql + +\password postgres + +\q +``` + +### 2. Set up environment variables + +Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) + +For basic set-up you add the below env variables: + +`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) + +`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) + +``` +TOOLJET_HOST=http://localhost:3000 + +LOCKBOX_MASTER_KEY= + +SECRET_KEY_BASE= + +PG_USER=postgres + +PG_HOST=localhost + +PG_PASS=postgres + +PG_DB=tooljet_prod + +SUB_PATH=/apps/tooljet/ + +NODE_ENV=production + +SERVE_CLIENT=true +``` + + +### 3. Install and build dependencies + +Make sure node version is set to 18.3.0 before running the below command: + +``` +npm install +npm install --prefix server +npm install --prefix frontend +npm run build:plugins +``` + + +### 4. Set up database + +``` +npm run --prefix server db:create +npm run --prefix server db:mirgate +``` + +If at any point you need to reset the database, use this command `npm run --prefix server db:reset` + +### 5. Build client + +``` +cd ./frontend && NODE=production npm run build +``` + +### 6. Run server + +``` +cd ./server && npm run start:prod +``` + +The client will start on the **port 3000**, you can access the client by visiting the url created by codespace - `https:///apps/tooljet` \ No newline at end of file diff --git a/docs/versioned_sidebars/version-2.15.0-sidebars.json b/docs/versioned_sidebars/version-2.15.0-sidebars.json index 84cf3e94b2..be4cbea4be 100644 --- a/docs/versioned_sidebars/version-2.15.0-sidebars.json +++ b/docs/versioned_sidebars/version-2.15.0-sidebars.json @@ -372,6 +372,7 @@ "type": "category", "label": "Setup", "items": [ + "contributing-guide/setup/codespaces", "contributing-guide/setup/macos", "contributing-guide/setup/docker", "contributing-guide/setup/ubuntu", diff --git a/docs/versioned_sidebars/version-2.16.0-sidebars.json b/docs/versioned_sidebars/version-2.16.0-sidebars.json index d3dc03521e..efcf1d8760 100644 --- a/docs/versioned_sidebars/version-2.16.0-sidebars.json +++ b/docs/versioned_sidebars/version-2.16.0-sidebars.json @@ -373,6 +373,7 @@ "type": "category", "label": "Setup", "items": [ + "contributing-guide/setup/codespaces", "contributing-guide/setup/macos", "contributing-guide/setup/docker", "contributing-guide/setup/ubuntu", diff --git a/docs/versioned_sidebars/version-2.17.0-sidebars.json b/docs/versioned_sidebars/version-2.17.0-sidebars.json index c4aa240d9a..4e6b671de1 100644 --- a/docs/versioned_sidebars/version-2.17.0-sidebars.json +++ b/docs/versioned_sidebars/version-2.17.0-sidebars.json @@ -372,6 +372,7 @@ "type": "category", "label": "Setup", "items": [ + "contributing-guide/setup/codespaces", "contributing-guide/setup/macos", "contributing-guide/setup/docker", "contributing-guide/setup/ubuntu", diff --git a/docs/versioned_sidebars/version-2.18.0-sidebars.json b/docs/versioned_sidebars/version-2.18.0-sidebars.json index 393cfcb9bb..b94aa3ff24 100644 --- a/docs/versioned_sidebars/version-2.18.0-sidebars.json +++ b/docs/versioned_sidebars/version-2.18.0-sidebars.json @@ -372,6 +372,7 @@ "type": "category", "label": "Setup", "items": [ + "contributing-guide/setup/codespaces", "contributing-guide/setup/macos", "contributing-guide/setup/docker", "contributing-guide/setup/ubuntu", @@ -421,4 +422,4 @@ ] } ] -} +} \ No newline at end of file diff --git a/docs/versioned_sidebars/version-2.19.0-sidebars.json b/docs/versioned_sidebars/version-2.19.0-sidebars.json index 66c63b0d4a..dcd5417d85 100644 --- a/docs/versioned_sidebars/version-2.19.0-sidebars.json +++ b/docs/versioned_sidebars/version-2.19.0-sidebars.json @@ -373,6 +373,7 @@ "type": "category", "label": "Setup", "items": [ + "contributing-guide/setup/codespaces", "contributing-guide/setup/macos", "contributing-guide/setup/docker", "contributing-guide/setup/ubuntu", diff --git a/docs/versioned_sidebars/version-2.22.0-sidebars.json b/docs/versioned_sidebars/version-2.22.0-sidebars.json index 270805f7c5..be5dcec7a5 100644 --- a/docs/versioned_sidebars/version-2.22.0-sidebars.json +++ b/docs/versioned_sidebars/version-2.22.0-sidebars.json @@ -373,6 +373,7 @@ "type": "category", "label": "Setup", "items": [ + "contributing-guide/setup/codespaces", "contributing-guide/setup/macos", "contributing-guide/setup/docker", "contributing-guide/setup/ubuntu", @@ -422,4 +423,4 @@ ] } ] -} +} \ No newline at end of file From e897db5f11a2afc6e13e9de46cee0db71d91f9de Mon Sep 17 00:00:00 2001 From: Shubhendra Date: Tue, 31 Oct 2023 16:28:04 +0530 Subject: [PATCH 06/63] [doc]docker run command update --- docs/docs/setup/try-tooljet.md | 3 ++- docs/versioned_docs/version-1.x.x/setup/try-tooljet.md | 5 +++-- docs/versioned_docs/version-2.0.0/setup/try-tooljet.md | 3 ++- docs/versioned_docs/version-2.1.0/setup/try-tooljet.md | 3 ++- docs/versioned_docs/version-2.10.0/setup/try-tooljet.md | 3 ++- docs/versioned_docs/version-2.11.0/setup/try-tooljet.md | 3 ++- docs/versioned_docs/version-2.12.0/setup/try-tooljet.md | 4 ++-- docs/versioned_docs/version-2.13.0/setup/try-tooljet.md | 4 ++-- docs/versioned_docs/version-2.14.0/setup/try-tooljet.md | 4 ++-- docs/versioned_docs/version-2.15.0/setup/try-tooljet.md | 4 ++-- docs/versioned_docs/version-2.16.0/setup/try-tooljet.md | 4 ++-- docs/versioned_docs/version-2.17.0/setup/try-tooljet.md | 4 ++-- docs/versioned_docs/version-2.18.0/setup/try-tooljet.md | 4 ++-- docs/versioned_docs/version-2.19.0/setup/try-tooljet.md | 4 ++-- docs/versioned_docs/version-2.2.0/setup/try-tooljet.md | 4 +++- docs/versioned_docs/version-2.22.0/setup/try-tooljet.md | 4 ++-- docs/versioned_docs/version-2.3.0/setup/try-tooljet.md | 4 +++- docs/versioned_docs/version-2.4.0/setup/try-tooljet.md | 4 +++- docs/versioned_docs/version-2.5.0/setup/try-tooljet.md | 4 +++- docs/versioned_docs/version-2.6.0/setup/try-tooljet.md | 4 +++- docs/versioned_docs/version-2.7.0/setup/try-tooljet.md | 4 +++- docs/versioned_docs/version-2.8.0/setup/try-tooljet.md | 4 +++- docs/versioned_docs/version-2.9.0/setup/try-tooljet.md | 4 +++- docs/versioned_docs/version-2.9.4/setup/try-tooljet.md | 4 +++- 24 files changed, 58 insertions(+), 34 deletions(-) diff --git a/docs/docs/setup/try-tooljet.md b/docs/docs/setup/try-tooljet.md index eb60b5323a..ff2bc44904 100644 --- a/docs/docs/setup/try-tooljet.md +++ b/docs/docs/setup/try-tooljet.md @@ -10,10 +10,11 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-1.x.x/setup/try-tooljet.md b/docs/versioned_docs/version-1.x.x/setup/try-tooljet.md index ed0173f004..6d379d672b 100644 --- a/docs/versioned_docs/version-1.x.x/setup/try-tooljet.md +++ b/docs/versioned_docs/version-1.x.x/setup/try-tooljet.md @@ -9,10 +9,11 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ - -p 3000:3000 \ + -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.0.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.0.0/setup/try-tooljet.md index 7ba26756aa..e2158d85fd 100644 --- a/docs/versioned_docs/version-2.0.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.0.0/setup/try-tooljet.md @@ -9,10 +9,11 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.1.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.1.0/setup/try-tooljet.md index 7ba26756aa..e2158d85fd 100644 --- a/docs/versioned_docs/version-2.1.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.1.0/setup/try-tooljet.md @@ -9,10 +9,11 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.10.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.10.0/setup/try-tooljet.md index 7ba26756aa..e2158d85fd 100644 --- a/docs/versioned_docs/version-2.10.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.10.0/setup/try-tooljet.md @@ -9,10 +9,11 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.11.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.11.0/setup/try-tooljet.md index 7ba26756aa..e2158d85fd 100644 --- a/docs/versioned_docs/version-2.11.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.11.0/setup/try-tooljet.md @@ -9,10 +9,11 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.12.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.12.0/setup/try-tooljet.md index eb60b5323a..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.12.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.12.0/setup/try-tooljet.md @@ -10,16 +10,16 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* - #### Setup information - Runs the ToolJet server on the port 80 on your machine. diff --git a/docs/versioned_docs/version-2.13.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.13.0/setup/try-tooljet.md index eb60b5323a..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.13.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.13.0/setup/try-tooljet.md @@ -10,16 +10,16 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* - #### Setup information - Runs the ToolJet server on the port 80 on your machine. diff --git a/docs/versioned_docs/version-2.14.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.14.0/setup/try-tooljet.md index eb60b5323a..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.14.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.14.0/setup/try-tooljet.md @@ -10,16 +10,16 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* - #### Setup information - Runs the ToolJet server on the port 80 on your machine. diff --git a/docs/versioned_docs/version-2.15.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.15.0/setup/try-tooljet.md index eb60b5323a..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.15.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.15.0/setup/try-tooljet.md @@ -10,16 +10,16 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* - #### Setup information - Runs the ToolJet server on the port 80 on your machine. diff --git a/docs/versioned_docs/version-2.16.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.16.0/setup/try-tooljet.md index eb60b5323a..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.16.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.16.0/setup/try-tooljet.md @@ -10,16 +10,16 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* - #### Setup information - Runs the ToolJet server on the port 80 on your machine. diff --git a/docs/versioned_docs/version-2.17.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.17.0/setup/try-tooljet.md index eb60b5323a..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.17.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.17.0/setup/try-tooljet.md @@ -10,16 +10,16 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* - #### Setup information - Runs the ToolJet server on the port 80 on your machine. diff --git a/docs/versioned_docs/version-2.18.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.18.0/setup/try-tooljet.md index eb60b5323a..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.18.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.18.0/setup/try-tooljet.md @@ -10,16 +10,16 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* - #### Setup information - Runs the ToolJet server on the port 80 on your machine. diff --git a/docs/versioned_docs/version-2.19.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.19.0/setup/try-tooljet.md index eb60b5323a..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.19.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.19.0/setup/try-tooljet.md @@ -10,16 +10,16 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* - #### Setup information - Runs the ToolJet server on the port 80 on your machine. diff --git a/docs/versioned_docs/version-2.2.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.2.0/setup/try-tooljet.md index 7ba26756aa..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.2.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.2.0/setup/try-tooljet.md @@ -4,15 +4,17 @@ title: Try ToolJet --- # Try ToolJet + ## On local with Docker You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.22.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.22.0/setup/try-tooljet.md index eb60b5323a..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.22.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.22.0/setup/try-tooljet.md @@ -10,16 +10,16 @@ title: Try ToolJet You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* - #### Setup information - Runs the ToolJet server on the port 80 on your machine. diff --git a/docs/versioned_docs/version-2.3.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.3.0/setup/try-tooljet.md index 7ba26756aa..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.3.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.3.0/setup/try-tooljet.md @@ -4,15 +4,17 @@ title: Try ToolJet --- # Try ToolJet + ## On local with Docker You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.4.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.4.0/setup/try-tooljet.md index 7ba26756aa..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.4.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.4.0/setup/try-tooljet.md @@ -4,15 +4,17 @@ title: Try ToolJet --- # Try ToolJet + ## On local with Docker You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.5.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.5.0/setup/try-tooljet.md index 7ba26756aa..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.5.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.5.0/setup/try-tooljet.md @@ -4,15 +4,17 @@ title: Try ToolJet --- # Try ToolJet + ## On local with Docker You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.6.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.6.0/setup/try-tooljet.md index 7ba26756aa..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.6.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.6.0/setup/try-tooljet.md @@ -4,15 +4,17 @@ title: Try ToolJet --- # Try ToolJet + ## On local with Docker You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.7.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.7.0/setup/try-tooljet.md index 7ba26756aa..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.7.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.7.0/setup/try-tooljet.md @@ -4,15 +4,17 @@ title: Try ToolJet --- # Try ToolJet + ## On local with Docker You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.8.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.8.0/setup/try-tooljet.md index 7ba26756aa..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.8.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.8.0/setup/try-tooljet.md @@ -4,15 +4,17 @@ title: Try ToolJet --- # Try ToolJet + ## On local with Docker You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.9.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.9.0/setup/try-tooljet.md index 7ba26756aa..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.9.0/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.9.0/setup/try-tooljet.md @@ -4,15 +4,17 @@ title: Try ToolJet --- # Try ToolJet + ## On local with Docker You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` diff --git a/docs/versioned_docs/version-2.9.4/setup/try-tooljet.md b/docs/versioned_docs/version-2.9.4/setup/try-tooljet.md index 7ba26756aa..59c9108cf2 100644 --- a/docs/versioned_docs/version-2.9.4/setup/try-tooljet.md +++ b/docs/versioned_docs/version-2.9.4/setup/try-tooljet.md @@ -4,15 +4,17 @@ title: Try ToolJet --- # Try ToolJet + ## On local with Docker You can run the command below to have ToolJet up and running right away. ```bash -docker run \ +docker run -d \ --name tooljet \ --restart unless-stopped \ -p 80:80 \ + --platform linux/amd64 \ -v tooljet_data:/var/lib/postgresql/13/main \ tooljet/try:latest ``` From 73c4c17ad49c089a29f2107cdec379ca2ea26f83 Mon Sep 17 00:00:00 2001 From: Shubhendra Date: Tue, 31 Oct 2023 16:34:12 +0530 Subject: [PATCH 07/63] [doc]ec2 update --- docs/docs/setup/ec2.md | 7 +++++++ docs/versioned_docs/version-2.15.0/setup/ec2.md | 7 +++++++ docs/versioned_docs/version-2.16.0/setup/ec2.md | 7 +++++++ docs/versioned_docs/version-2.17.0/setup/ec2.md | 7 +++++++ docs/versioned_docs/version-2.18.0/setup/ec2.md | 7 +++++++ docs/versioned_docs/version-2.19.0/setup/ec2.md | 7 +++++++ docs/versioned_docs/version-2.22.0/setup/ec2.md | 7 +++++++ 7 files changed, 49 insertions(+) diff --git a/docs/docs/setup/ec2.md b/docs/docs/setup/ec2.md index 662b4f2d56..e4cc244db9 100644 --- a/docs/docs/setup/ec2.md +++ b/docs/docs/setup/ec2.md @@ -11,6 +11,13 @@ You should setup a PostgreSQL database manually to be used by the ToolJet server *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* +You can effortlessly deploy Amazon Elastic Compute Cloud Service (EC2) by utilizing a **CloudFormation template**. This template will deploy all the services required to run ToolJet on AWS EC2 instances. + +To deploy all the services at once, simply employ the following template: +``` +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/cloudformation/EC2-cloudfomration.yml +``` + Follow the steps below to deploy ToolJet on AWS EC2 instances. 1. Setup a PostgreSQL database and make sure that the database is accessible from the EC2 instance. diff --git a/docs/versioned_docs/version-2.15.0/setup/ec2.md b/docs/versioned_docs/version-2.15.0/setup/ec2.md index 662b4f2d56..e4cc244db9 100644 --- a/docs/versioned_docs/version-2.15.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.15.0/setup/ec2.md @@ -11,6 +11,13 @@ You should setup a PostgreSQL database manually to be used by the ToolJet server *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* +You can effortlessly deploy Amazon Elastic Compute Cloud Service (EC2) by utilizing a **CloudFormation template**. This template will deploy all the services required to run ToolJet on AWS EC2 instances. + +To deploy all the services at once, simply employ the following template: +``` +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/cloudformation/EC2-cloudfomration.yml +``` + Follow the steps below to deploy ToolJet on AWS EC2 instances. 1. Setup a PostgreSQL database and make sure that the database is accessible from the EC2 instance. diff --git a/docs/versioned_docs/version-2.16.0/setup/ec2.md b/docs/versioned_docs/version-2.16.0/setup/ec2.md index 662b4f2d56..e4cc244db9 100644 --- a/docs/versioned_docs/version-2.16.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.16.0/setup/ec2.md @@ -11,6 +11,13 @@ You should setup a PostgreSQL database manually to be used by the ToolJet server *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* +You can effortlessly deploy Amazon Elastic Compute Cloud Service (EC2) by utilizing a **CloudFormation template**. This template will deploy all the services required to run ToolJet on AWS EC2 instances. + +To deploy all the services at once, simply employ the following template: +``` +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/cloudformation/EC2-cloudfomration.yml +``` + Follow the steps below to deploy ToolJet on AWS EC2 instances. 1. Setup a PostgreSQL database and make sure that the database is accessible from the EC2 instance. diff --git a/docs/versioned_docs/version-2.17.0/setup/ec2.md b/docs/versioned_docs/version-2.17.0/setup/ec2.md index 662b4f2d56..e4cc244db9 100644 --- a/docs/versioned_docs/version-2.17.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.17.0/setup/ec2.md @@ -11,6 +11,13 @@ You should setup a PostgreSQL database manually to be used by the ToolJet server *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* +You can effortlessly deploy Amazon Elastic Compute Cloud Service (EC2) by utilizing a **CloudFormation template**. This template will deploy all the services required to run ToolJet on AWS EC2 instances. + +To deploy all the services at once, simply employ the following template: +``` +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/cloudformation/EC2-cloudfomration.yml +``` + Follow the steps below to deploy ToolJet on AWS EC2 instances. 1. Setup a PostgreSQL database and make sure that the database is accessible from the EC2 instance. diff --git a/docs/versioned_docs/version-2.18.0/setup/ec2.md b/docs/versioned_docs/version-2.18.0/setup/ec2.md index 662b4f2d56..e4cc244db9 100644 --- a/docs/versioned_docs/version-2.18.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.18.0/setup/ec2.md @@ -11,6 +11,13 @@ You should setup a PostgreSQL database manually to be used by the ToolJet server *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* +You can effortlessly deploy Amazon Elastic Compute Cloud Service (EC2) by utilizing a **CloudFormation template**. This template will deploy all the services required to run ToolJet on AWS EC2 instances. + +To deploy all the services at once, simply employ the following template: +``` +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/cloudformation/EC2-cloudfomration.yml +``` + Follow the steps below to deploy ToolJet on AWS EC2 instances. 1. Setup a PostgreSQL database and make sure that the database is accessible from the EC2 instance. diff --git a/docs/versioned_docs/version-2.19.0/setup/ec2.md b/docs/versioned_docs/version-2.19.0/setup/ec2.md index 662b4f2d56..e4cc244db9 100644 --- a/docs/versioned_docs/version-2.19.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.19.0/setup/ec2.md @@ -11,6 +11,13 @@ You should setup a PostgreSQL database manually to be used by the ToolJet server *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* +You can effortlessly deploy Amazon Elastic Compute Cloud Service (EC2) by utilizing a **CloudFormation template**. This template will deploy all the services required to run ToolJet on AWS EC2 instances. + +To deploy all the services at once, simply employ the following template: +``` +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/cloudformation/EC2-cloudfomration.yml +``` + Follow the steps below to deploy ToolJet on AWS EC2 instances. 1. Setup a PostgreSQL database and make sure that the database is accessible from the EC2 instance. diff --git a/docs/versioned_docs/version-2.22.0/setup/ec2.md b/docs/versioned_docs/version-2.22.0/setup/ec2.md index 662b4f2d56..e4cc244db9 100644 --- a/docs/versioned_docs/version-2.22.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.22.0/setup/ec2.md @@ -11,6 +11,13 @@ You should setup a PostgreSQL database manually to be used by the ToolJet server *If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* +You can effortlessly deploy Amazon Elastic Compute Cloud Service (EC2) by utilizing a **CloudFormation template**. This template will deploy all the services required to run ToolJet on AWS EC2 instances. + +To deploy all the services at once, simply employ the following template: +``` +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/cloudformation/EC2-cloudfomration.yml +``` + Follow the steps below to deploy ToolJet on AWS EC2 instances. 1. Setup a PostgreSQL database and make sure that the database is accessible from the EC2 instance. From 6872346f7b0e7bb33ff144b8aef59becdb5d9fd0 Mon Sep 17 00:00:00 2001 From: lone-wolf45 <114744855+lone-wolf45@users.noreply.github.com> Date: Wed, 1 Nov 2023 15:39:00 +0530 Subject: [PATCH 08/63] Update widgetConfig.js (#7880) From 7a40bd7bef5377db0b68a4e3e64b7ea43be2742e Mon Sep 17 00:00:00 2001 From: Bhushan1019 <121352274+Bhushan1019@users.noreply.github.com> Date: Wed, 1 Nov 2023 16:34:37 +0530 Subject: [PATCH 09/63] Fixes: #7746 Changed labels to sentence case for NumberInput (#7914) --- frontend/src/Editor/WidgetManager/widgetConfig.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/Editor/WidgetManager/widgetConfig.js b/frontend/src/Editor/WidgetManager/widgetConfig.js index 6556cb0589..406c023966 100644 --- a/frontend/src/Editor/WidgetManager/widgetConfig.js +++ b/frontend/src/Editor/WidgetManager/widgetConfig.js @@ -1264,11 +1264,11 @@ export const widgets = [ }, backgroundColor: { type: 'color', - displayName: 'Background Color', + displayName: 'Background color', }, borderColor: { type: 'color', - displayName: 'Border Color', + displayName: 'Border color', validation: { schema: { type: 'string' }, }, From 0c35a2ea2fd31c455cf208ec84dfbedf1690cf95 Mon Sep 17 00:00:00 2001 From: Susheel Thapa <077bct090.susheel@pcampus.edu.np> Date: Wed, 1 Nov 2023 16:50:34 +0545 Subject: [PATCH 10/63] Chore: Typos fixed of tutorial/sharing-and-deploying.md (#7847) --- docs/docs/tutorial/sharing-and-deploying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorial/sharing-and-deploying.md b/docs/docs/tutorial/sharing-and-deploying.md index 4931337d82..265b61c6a8 100644 --- a/docs/docs/tutorial/sharing-and-deploying.md +++ b/docs/docs/tutorial/sharing-and-deploying.md @@ -45,7 +45,7 @@ Once you have released a version of your app, you can share the app with others -- You can also `Embedd` your application using the embeddable link +- You can also `Embed` your application using the embeddable link
From 465b9d4572c706930c9bf0fb68cd5b8c124f1deb Mon Sep 17 00:00:00 2001 From: Ishita Pathak <75848598+IshitaPathak@users.noreply.github.com> Date: Wed, 1 Nov 2023 16:43:59 +0530 Subject: [PATCH 11/63] Update README.md (#7986) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b8ca7cd66..d7831e47e7 100644 --- a/README.md +++ b/README.md @@ -154,4 +154,4 @@ Kindly read our [Contributing Guide](CONTRIBUTING.md) to familiarize yourself wi ## License -ToolJet © 2022, ToolJet Solutions Inc - Released under the GNU Affero General Public License v3.0. +ToolJet © 2023, ToolJet Solutions Inc - Released under the GNU Affero General Public License v3.0. From d1bd60b8ac3d2d5162f90cfb760c14ca04595e12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michelle=20=22MishManners=C2=AE=E2=84=A2=22=20Mannering?= <36594527+mishmanners@users.noreply.github.com> Date: Wed, 1 Nov 2023 22:14:28 +1100 Subject: [PATCH 12/63] Accessibility features for Tooljet markdown files (#8057) * Accessibility for README Add accessibility features to markdown file based on: https://github.blog/2023-10-26-5-tips-for-making-your-github-profile-page-accessible/ * Accessibility for CODE_OF_CONDUCT Accessibility for markdowns, based on: https://github.blog/2023-10-26-5-tips-for-making-your-github-profile-page-accessible/ * Some accessibility, some typography * Fix email link --- CODE_OF_CONDUCT.md | 10 ++++------ CONTRIBUTING.md | 8 ++++---- README.md | 28 ++++++++++++++-------------- SECURITY.md | 2 +- 4 files changed, 23 insertions(+), 25 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index e317567c07..bae56e7799 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -114,15 +114,13 @@ the community. ## Attribution -This Code of Conduct is adapted from the [Contributor Covenant][homepage], -version 2.0, available at -https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. +This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), [version 2.0](https://www.contributor-covenant.org/version/2/0/code_of_conduct.html). Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). -[homepage]: https://www.contributor-covenant.org -For answers to common questions about this code of conduct, see the FAQ at -https://www.contributor-covenant.org/faq. Translations are available at +- For answers to common questions about this code of conduct, see the FAQs at +https://www.contributor-covenant.org/faq. +- Translations are available at https://www.contributor-covenant.org/translations. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d5e9f4f00f..fcfc56cc55 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,9 +8,9 @@ We love your input! We want to make contributing to this project as easy and tra ## Setup -[Mac OS](https://docs.tooljet.io/docs/contributing-guide/setup/macos) -[Docker](https://docs.tooljet.io/docs/contributing-guide/setup/docker) -[Ubuntu](https://docs.tooljet.io/docs/contributing-guide/setup/ubuntu) +- [Mac OS](https://docs.tooljet.io/docs/contributing-guide/setup/macos) +- [Docker](https://docs.tooljet.io/docs/contributing-guide/setup/docker) +- [Ubuntu](https://docs.tooljet.io/docs/contributing-guide/setup/ubuntu) ## We Develop with GitHub We use GitHub to host code, to track issues and feature requests, as well as accept pull requests. @@ -51,4 +51,4 @@ We use GitHub issues to track public bugs. Report a bug by [opening a new issue] By contributing, you agree that your contributions will be licensed under its AGPL v3 License. ## Questions? -Contact us on [Slack](https://tooljet.com/slack) or mail us at [hello@tooljet.io](mailto:hello@tooljet.io). +Contact us [on Slack](https://tooljet.com/slack) or [email us at hello@tooljet.io](mailto:hello@tooljet.io). diff --git a/README.md b/README.md index d7831e47e7..fe50a56d15 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,20 @@ ToolJet is an **open-source low-code framework** to build and deploy internal tools with minimal engineering effort. ToolJet's drag-and-drop frontend builder allows you to create complex, responsive frontends within minutes. Additionally, you can integrate various data sources, including databases like PostgreSQL, MongoDB, and Elasticsearch; API endpoints with OpenAPI spec and OAuth2 support; SaaS tools such as Stripe, Slack, Google Sheets, Airtable, and Notion; as well as object storage services like S3, GCS, and Minio, to fetch and write data. -⭐ If you find ToolJet useful, please consider giving us a star on GitHub! Your support helps us continue to innovate and deliver exciting features. + :star: If you find ToolJet useful, please consider giving us a star on GitHub! Your support helps us continue to innovate and deliver exciting features. ![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/tooljet/tooljet-ce) -![GitHub contributors](https://img.shields.io/github/contributors/tooljet/tooljet) -[![GitHub issues](https://img.shields.io/github/issues/ToolJet/ToolJet)](https://github.com/ToolJet/ToolJet/issues) -[![GitHub stars](https://img.shields.io/github/stars/ToolJet/ToolJet)](https://github.com/ToolJet/ToolJet/stargazers) -![GitHub closed issues](https://img.shields.io/github/issues-closed/tooljet/tooljet) -![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/tooljet/tooljet) -![GitHub release (latest by date)](https://img.shields.io/github/v/release/tooljet/tooljet) +![Number of GitHub contributors](https://img.shields.io/github/contributors/tooljet/tooljet) +[![Number of GitHub issues that are open](https://img.shields.io/github/issues/ToolJet/ToolJet)](https://github.com/ToolJet/ToolJet/issues) +[![Number of GitHub stars](https://img.shields.io/github/stars/ToolJet/ToolJet)](https://github.com/ToolJet/ToolJet/stargazers) +![Number of GitHub closed issues](https://img.shields.io/github/issues-closed/tooljet/tooljet) +![Number of GitHub pull requests that are open](https://img.shields.io/github/issues-pr-raw/tooljet/tooljet) +![GitHub release; latest by date](https://img.shields.io/github/v/release/tooljet/tooljet) ![GitHub commit activity](https://img.shields.io/github/commit-activity/m/tooljet/tooljet) -[![GitHub license](https://img.shields.io/github/license/ToolJet/ToolJet)](https://github.com/ToolJet/ToolJet) -[![Twitter Follow](https://img.shields.io/twitter/follow/ToolJet?style=social)](https://twitter.com/ToolJet) +[![GitHub license which is APGL license](https://img.shields.io/github/license/ToolJet/ToolJet)](https://github.com/ToolJet/ToolJet) +[![Follow us on X, formerly Twitter](https://img.shields.io/twitter/follow/ToolJet?style=social)](https://twitter.com/ToolJet)

- + Tooljet dashboard showing inventory and orders

@@ -23,26 +23,26 @@ ToolJet is an **open-source low-code framework** to build and deploy internal to

- + Tooljet visual front end builder

- +Tooljet database showing over 40 integrations

- +Tooljet showing ability to run in Python, import your React component, and build your own plugins using the dev kit

- +Deploy from anywhere, showing various cloud services

diff --git a/SECURITY.md b/SECURITY.md index cebe515c1b..427e5e3bd1 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -2,4 +2,4 @@ ## Reporting a Vulnerability -If you notice a security vulnerability, please let the team know by sending an email to `security@tooljet.com`. +If you notice a security vulnerability, please let the team know by [sending an email to security@tooljet.com](mailto:security@tooljet.com). From 01b9b99f1d92f696d6bff71b6366e2f335153018 Mon Sep 17 00:00:00 2001 From: Dilshad <98999149+a-rustacean@users.noreply.github.com> Date: Wed, 1 Nov 2023 16:45:43 +0530 Subject: [PATCH 13/63] Fix README.md (#8054) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe50a56d15..d32f6800da 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ ToolJet is an **open-source low-code framework** to build and deploy internal to - **Run JS & Python code:** Execute custom JavaScript and Python snippets. - **Granular access control:** Set permissions at both group and app levels. - **Low-code:** Use JS code almost anywhere within the builder, such as setting text color based on status with -`status === 'success' ? 'green' : 'red`. +`status === 'success' ? 'green' : 'red'`. - **No-code query editors:** Query Editors are available for all supported data sources. - **Join and transform data:** Transform query results using JavaScript or Python code. - **Secure:** All the credentials are securely encrypted using `aes-256-gcm`. From f026c5bc97894ddd8523f4d6f7e7da001fa8ef22 Mon Sep 17 00:00:00 2001 From: S A G A R <110724849+tmsagarofficial@users.noreply.github.com> Date: Wed, 1 Nov 2023 16:46:02 +0530 Subject: [PATCH 14/63] Documentation update of ClickHouse (#7980) --- docs/docs/data-sources/clickhouse.md | 4 ++-- docs/versioned_docs/version-2.18.0/data-sources/clickhouse.md | 4 ++-- docs/versioned_docs/version-2.19.0/data-sources/clickhouse.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/docs/data-sources/clickhouse.md b/docs/docs/data-sources/clickhouse.md index bb55b4a069..a9d60b9cd4 100644 --- a/docs/docs/data-sources/clickhouse.md +++ b/docs/docs/data-sources/clickhouse.md @@ -13,7 +13,7 @@ ToolJet uses this [NodeJS](https://github.com/TimonKK/clickhouse) client for Cli ## Connection -To add a new ClickHouse datasource, Go to the **Datasource Manager** on the left sidebar of the app editor and click on `Add datasource` button. Select **ClickHouse** from the modal that pops up. +To establish a connection with the Clickhouse data source, you can either click on the `+Add new data source` button located on the query panel or navigate to the **[Data Sources](/docs/data-sources/overview)** page through the ToolJet dashboard. ToolJet requires the following to connect to your ClickHouse Database: @@ -33,7 +33,7 @@ ToolJet requires the following to connect to your ClickHouse Database: ## Querying ClickHouse -After setting up the ClickHouse datasource, you can click on the `+` button of the query manager and select the ClickHouse datasource that you added in the previous step to create a new query. +After setting up the ClickHouse data source, you can click on the `+` button of the query manager and select the ClickHouse data source that you added in the previous step to create a new query. :::info For more details on clickhouse visit [Clickhouse docs](https://clickhouse.com/docs/en/quick-start). diff --git a/docs/versioned_docs/version-2.18.0/data-sources/clickhouse.md b/docs/versioned_docs/version-2.18.0/data-sources/clickhouse.md index bb55b4a069..a9d60b9cd4 100644 --- a/docs/versioned_docs/version-2.18.0/data-sources/clickhouse.md +++ b/docs/versioned_docs/version-2.18.0/data-sources/clickhouse.md @@ -13,7 +13,7 @@ ToolJet uses this [NodeJS](https://github.com/TimonKK/clickhouse) client for Cli ## Connection -To add a new ClickHouse datasource, Go to the **Datasource Manager** on the left sidebar of the app editor and click on `Add datasource` button. Select **ClickHouse** from the modal that pops up. +To establish a connection with the Clickhouse data source, you can either click on the `+Add new data source` button located on the query panel or navigate to the **[Data Sources](/docs/data-sources/overview)** page through the ToolJet dashboard. ToolJet requires the following to connect to your ClickHouse Database: @@ -33,7 +33,7 @@ ToolJet requires the following to connect to your ClickHouse Database: ## Querying ClickHouse -After setting up the ClickHouse datasource, you can click on the `+` button of the query manager and select the ClickHouse datasource that you added in the previous step to create a new query. +After setting up the ClickHouse data source, you can click on the `+` button of the query manager and select the ClickHouse data source that you added in the previous step to create a new query. :::info For more details on clickhouse visit [Clickhouse docs](https://clickhouse.com/docs/en/quick-start). diff --git a/docs/versioned_docs/version-2.19.0/data-sources/clickhouse.md b/docs/versioned_docs/version-2.19.0/data-sources/clickhouse.md index bb55b4a069..a9d60b9cd4 100644 --- a/docs/versioned_docs/version-2.19.0/data-sources/clickhouse.md +++ b/docs/versioned_docs/version-2.19.0/data-sources/clickhouse.md @@ -13,7 +13,7 @@ ToolJet uses this [NodeJS](https://github.com/TimonKK/clickhouse) client for Cli ## Connection -To add a new ClickHouse datasource, Go to the **Datasource Manager** on the left sidebar of the app editor and click on `Add datasource` button. Select **ClickHouse** from the modal that pops up. +To establish a connection with the Clickhouse data source, you can either click on the `+Add new data source` button located on the query panel or navigate to the **[Data Sources](/docs/data-sources/overview)** page through the ToolJet dashboard. ToolJet requires the following to connect to your ClickHouse Database: @@ -33,7 +33,7 @@ ToolJet requires the following to connect to your ClickHouse Database: ## Querying ClickHouse -After setting up the ClickHouse datasource, you can click on the `+` button of the query manager and select the ClickHouse datasource that you added in the previous step to create a new query. +After setting up the ClickHouse data source, you can click on the `+` button of the query manager and select the ClickHouse data source that you added in the previous step to create a new query. :::info For more details on clickhouse visit [Clickhouse docs](https://clickhouse.com/docs/en/quick-start). From 9485f8668f11e92cdda5b441dd6a34f530037eb2 Mon Sep 17 00:00:00 2001 From: HardikBandhiya Date: Wed, 1 Nov 2023 16:47:30 +0530 Subject: [PATCH 15/63] Update README.md (#8075) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In README.md in Community Support section it is Twitter and now it is known as 𝕏 so i changed it to 𝕏 (Twitter) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d32f6800da..c9f1933c86 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ For general help using ToolJet, please refer to the official [documentation](htt - [Slack](https://tooljet.com/slack) - Discussions with the community and the team. - [GitHub](https://github.com/ToolJet/ToolJet/issues) - For bug reports and feature requests. -- [Twitter](https://twitter.com/ToolJet) - Get the product updates quickly. +- [𝕏 (Twitter)](https://twitter.com/ToolJet) - Get the product updates quickly. ## Roadmap Check out our [roadmap](https://github.com/ToolJet/ToolJet/projects/2) to stay updated on recently released features and learn about what's coming next. From dec3f9c3d9b51e0819e35e20a98f6b72829f3285 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 1 Nov 2023 20:50:04 +0900 Subject: [PATCH 16/63] Fix typo in Container.jsx (#7583) mulitple -> multiple --- frontend/src/Editor/Container.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Editor/Container.jsx b/frontend/src/Editor/Container.jsx index f7f49a994c..104cb52d2e 100644 --- a/frontend/src/Editor/Container.jsx +++ b/frontend/src/Editor/Container.jsx @@ -328,7 +328,7 @@ export const Container = ({ return; } - const deltaWidth = Math.round(d.width / gridWidth) * gridWidth; //rounding of width of element to nearest mulitple of gridWidth + const deltaWidth = Math.round(d.width / gridWidth) * gridWidth; //rounding of width of element to nearest multiple of gridWidth const deltaHeight = d.height; if (deltaWidth === 0 && deltaHeight === 0) { From fea9c8e5d472322a680f5b5dda433accdb0022e9 Mon Sep 17 00:00:00 2001 From: Shubhendra Singh Chauhan Date: Thu, 2 Nov 2023 11:54:19 +0530 Subject: [PATCH 17/63] [doc]plugin-image-zoom (#8099) --- docs/docusaurus.config.js | 1 + docs/package-lock.json | 1188 +++-- docs/package.json | 1 + docs/yarn.lock | 10393 ++++++++++++++++++------------------ 4 files changed, 5850 insertions(+), 5733 deletions(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 227b87dccc..37dd81d50b 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -137,5 +137,6 @@ module.exports = { ], plugins: [ devServerPlugin, + 'plugin-image-zoom' ], }; diff --git a/docs/package-lock.json b/docs/package-lock.json index 528cf262b4..02f0d1291a 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -8,12 +8,13 @@ "name": "docs", "version": "0.0.0", "dependencies": { - "@docusaurus/core": "^2.4.0", - "@docusaurus/plugin-google-gtag": "^2.4.0", - "@docusaurus/plugin-sitemap": "^2.4.0", - "@docusaurus/preset-classic": "^2.4.0", + "@docusaurus/core": "^2.4.3", + "@docusaurus/plugin-google-gtag": "^2.4.3", + "@docusaurus/plugin-sitemap": "^2.4.3", + "@docusaurus/preset-classic": "^2.4.3", "@mdx-js/react": "^1.6.22", "clsx": "^1.2.1", + "plugin-image-zoom": "github:flexanalytics/plugin-image-zoom", "react": "^17.0.2", "react-dom": "^17.0.2" } @@ -60,74 +61,74 @@ } }, "node_modules/@algolia/cache-browser-local-storage": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.19.1.tgz", - "integrity": "sha512-FYAZWcGsFTTaSAwj9Std8UML3Bu8dyWDncM7Ls8g+58UOe4XYdlgzXWbrIgjaguP63pCCbMoExKr61B+ztK3tw==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.20.0.tgz", + "integrity": "sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==", "dependencies": { - "@algolia/cache-common": "4.19.1" + "@algolia/cache-common": "4.20.0" } }, "node_modules/@algolia/cache-common": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.19.1.tgz", - "integrity": "sha512-XGghi3l0qA38HiqdoUY+wvGyBsGvKZ6U3vTiMBT4hArhP3fOGLXpIINgMiiGjTe4FVlTa5a/7Zf2bwlIHfRqqg==" + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.20.0.tgz", + "integrity": "sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==" }, "node_modules/@algolia/cache-in-memory": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.19.1.tgz", - "integrity": "sha512-+PDWL+XALGvIginigzu8oU6eWw+o76Z8zHbBovWYcrtWOEtinbl7a7UTt3x3lthv+wNuFr/YD1Gf+B+A9V8n5w==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.20.0.tgz", + "integrity": "sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==", "dependencies": { - "@algolia/cache-common": "4.19.1" + "@algolia/cache-common": "4.20.0" } }, "node_modules/@algolia/client-account": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.19.1.tgz", - "integrity": "sha512-Oy0ritA2k7AMxQ2JwNpfaEcgXEDgeyKu0V7E7xt/ZJRdXfEpZcwp9TOg4TJHC7Ia62gIeT2Y/ynzsxccPw92GA==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.20.0.tgz", + "integrity": "sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==", "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/client-search": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.20.0", + "@algolia/client-search": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "node_modules/@algolia/client-analytics": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.19.1.tgz", - "integrity": "sha512-5QCq2zmgdZLIQhHqwl55ZvKVpLM3DNWjFI4T+bHr3rGu23ew2bLO4YtyxaZeChmDb85jUdPDouDlCumGfk6wOg==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.20.0.tgz", + "integrity": "sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==", "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/client-search": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.20.0", + "@algolia/client-search": "4.20.0", + "@algolia/requester-common": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "node_modules/@algolia/client-common": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.19.1.tgz", - "integrity": "sha512-3kAIVqTcPrjfS389KQvKzliC559x+BDRxtWamVJt8IVp7LGnjq+aVAXg4Xogkur1MUrScTZ59/AaUd5EdpyXgA==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.20.0.tgz", + "integrity": "sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==", "dependencies": { - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/requester-common": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "node_modules/@algolia/client-personalization": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.19.1.tgz", - "integrity": "sha512-8CWz4/H5FA+krm9HMw2HUQenizC/DxUtsI5oYC0Jxxyce1vsr8cb1aEiSJArQT6IzMynrERif1RVWLac1m36xw==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.20.0.tgz", + "integrity": "sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==", "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.20.0", + "@algolia/requester-common": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "node_modules/@algolia/client-search": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.19.1.tgz", - "integrity": "sha512-mBecfMFS4N+yK/p0ZbK53vrZbL6OtWMk8YmnOv1i0LXx4pelY8TFhqKoTit3NPVPwoSNN0vdSN9dTu1xr1XOVw==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.20.0.tgz", + "integrity": "sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==", "dependencies": { - "@algolia/client-common": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.20.0", + "@algolia/requester-common": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "node_modules/@algolia/events": { @@ -136,47 +137,47 @@ "integrity": "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==" }, "node_modules/@algolia/logger-common": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.19.1.tgz", - "integrity": "sha512-i6pLPZW/+/YXKis8gpmSiNk1lOmYCmRI6+x6d2Qk1OdfvX051nRVdalRbEcVTpSQX6FQAoyeaui0cUfLYW5Elw==" + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.20.0.tgz", + "integrity": "sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==" }, "node_modules/@algolia/logger-console": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.19.1.tgz", - "integrity": "sha512-jj72k9GKb9W0c7TyC3cuZtTr0CngLBLmc8trzZlXdfvQiigpUdvTi1KoWIb2ZMcRBG7Tl8hSb81zEY3zI2RlXg==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.20.0.tgz", + "integrity": "sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==", "dependencies": { - "@algolia/logger-common": "4.19.1" + "@algolia/logger-common": "4.20.0" } }, "node_modules/@algolia/requester-browser-xhr": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.19.1.tgz", - "integrity": "sha512-09K/+t7lptsweRTueHnSnmPqIxbHMowejAkn9XIcJMLdseS3zl8ObnS5GWea86mu3vy4+8H+ZBKkUN82Zsq/zg==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.20.0.tgz", + "integrity": "sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==", "dependencies": { - "@algolia/requester-common": "4.19.1" + "@algolia/requester-common": "4.20.0" } }, "node_modules/@algolia/requester-common": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.19.1.tgz", - "integrity": "sha512-BisRkcWVxrDzF1YPhAckmi2CFYK+jdMT60q10d7z3PX+w6fPPukxHRnZwooiTUrzFe50UBmLItGizWHP5bDzVQ==" + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.20.0.tgz", + "integrity": "sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==" }, "node_modules/@algolia/requester-node-http": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.19.1.tgz", - "integrity": "sha512-6DK52DHviBHTG2BK/Vv2GIlEw7i+vxm7ypZW0Z7vybGCNDeWzADx+/TmxjkES2h15+FZOqVf/Ja677gePsVItA==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.20.0.tgz", + "integrity": "sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==", "dependencies": { - "@algolia/requester-common": "4.19.1" + "@algolia/requester-common": "4.20.0" } }, "node_modules/@algolia/transporter": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.19.1.tgz", - "integrity": "sha512-nkpvPWbpuzxo1flEYqNIbGz7xhfhGOKGAZS7tzC+TELgEmi7z99qRyTfNSUlW7LZmB3ACdnqAo+9A9KFBENviQ==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.20.0.tgz", + "integrity": "sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==", "dependencies": { - "@algolia/cache-common": "4.19.1", - "@algolia/logger-common": "4.19.1", - "@algolia/requester-common": "4.19.1" + "@algolia/cache-common": "4.20.0", + "@algolia/logger-common": "4.20.0", + "@algolia/requester-common": "4.20.0" } }, "node_modules/@ampproject/remapping": { @@ -1922,24 +1923,25 @@ } }, "node_modules/@docsearch/css": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.5.1.tgz", - "integrity": "sha512-2Pu9HDg/uP/IT10rbQ+4OrTQuxIWdKVUEdcw9/w7kZJv9NeHS6skJx1xuRiFyoGKwAzcHXnLp7csE99sj+O1YA==" + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.5.2.tgz", + "integrity": "sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==" }, "node_modules/@docsearch/react": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.5.1.tgz", - "integrity": "sha512-t5mEODdLzZq4PTFAm/dvqcvZFdPDMdfPE5rJS5SC8OUq9mPzxEy6b+9THIqNM9P0ocCb4UC5jqBrxKclnuIbzQ==", + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.5.2.tgz", + "integrity": "sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==", "dependencies": { "@algolia/autocomplete-core": "1.9.3", "@algolia/autocomplete-preset-algolia": "1.9.3", - "@docsearch/css": "3.5.1", - "algoliasearch": "^4.0.0" + "@docsearch/css": "3.5.2", + "algoliasearch": "^4.19.1" }, "peerDependencies": { "@types/react": ">= 16.8.0 < 19.0.0", "react": ">= 16.8.0 < 19.0.0", - "react-dom": ">= 16.8.0 < 19.0.0" + "react-dom": ">= 16.8.0 < 19.0.0", + "search-insights": ">= 1 < 3" }, "peerDependenciesMeta": { "@types/react": { @@ -1950,13 +1952,16 @@ }, "react-dom": { "optional": true + }, + "search-insights": { + "optional": true } } }, "node_modules/@docusaurus/core": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-2.4.1.tgz", - "integrity": "sha512-SNsY7PshK3Ri7vtsLXVeAJGS50nJN3RgF836zkyUfAD01Fq+sAk5EwWgLw+nnm5KVNGDu7PRR2kRGDsWvqpo0g==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-2.4.3.tgz", + "integrity": "sha512-dWH5P7cgeNSIg9ufReX6gaCl/TmrGKD38Orbwuz05WPhAQtFXHd5B8Qym1TiXfvUNvwoYKkAJOJuGe8ou0Z7PA==", "dependencies": { "@babel/core": "^7.18.6", "@babel/generator": "^7.18.7", @@ -1968,13 +1973,13 @@ "@babel/runtime": "^7.18.6", "@babel/runtime-corejs3": "^7.18.6", "@babel/traverse": "^7.18.8", - "@docusaurus/cssnano-preset": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", + "@docusaurus/cssnano-preset": "2.4.3", + "@docusaurus/logger": "2.4.3", + "@docusaurus/mdx-loader": "2.4.3", "@docusaurus/react-loadable": "5.5.2", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-common": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "@slorber/static-site-generator-webpack-plugin": "^4.0.7", "@svgr/webpack": "^6.2.1", "autoprefixer": "^10.4.7", @@ -2056,9 +2061,9 @@ } }, "node_modules/@docusaurus/cssnano-preset": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-2.4.1.tgz", - "integrity": "sha512-ka+vqXwtcW1NbXxWsh6yA1Ckii1klY9E53cJ4O9J09nkMBgrNX3iEFED1fWdv8wf4mJjvGi5RLZ2p9hJNjsLyQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-2.4.3.tgz", + "integrity": "sha512-ZvGSRCi7z9wLnZrXNPG6DmVPHdKGd8dIn9pYbEOFiYihfv4uDR3UtxogmKf+rT8ZlKFf5Lqne8E8nt08zNM8CA==", "dependencies": { "cssnano-preset-advanced": "^5.3.8", "postcss": "^8.4.14", @@ -2070,9 +2075,9 @@ } }, "node_modules/@docusaurus/logger": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-2.4.1.tgz", - "integrity": "sha512-5h5ysIIWYIDHyTVd8BjheZmQZmEgWDR54aQ1BX9pjFfpyzFo5puKXKYrYJXbjEHGyVhEzmB9UXwbxGfaZhOjcg==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-2.4.3.tgz", + "integrity": "sha512-Zxws7r3yLufk9xM1zq9ged0YHs65mlRmtsobnFkdZTxWXdTYlWWLWdKyNKAsVC+D7zg+pv2fGbyabdOnyZOM3w==", "dependencies": { "chalk": "^4.1.2", "tslib": "^2.4.0" @@ -2082,14 +2087,14 @@ } }, "node_modules/@docusaurus/mdx-loader": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-2.4.1.tgz", - "integrity": "sha512-4KhUhEavteIAmbBj7LVFnrVYDiU51H5YWW1zY6SmBSte/YLhDutztLTBE0PQl1Grux1jzUJeaSvAzHpTn6JJDQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-2.4.3.tgz", + "integrity": "sha512-b1+fDnWtl3GiqkL0BRjYtc94FZrcDDBV1j8446+4tptB9BAOlePwG2p/pK6vGvfL53lkOsszXMghr2g67M0vCw==", "dependencies": { "@babel/parser": "^7.18.8", "@babel/traverse": "^7.18.8", - "@docusaurus/logger": "2.4.1", - "@docusaurus/utils": "2.4.1", + "@docusaurus/logger": "2.4.3", + "@docusaurus/utils": "2.4.3", "@mdx-js/mdx": "^1.6.22", "escape-html": "^1.0.3", "file-loader": "^6.2.0", @@ -2113,12 +2118,12 @@ } }, "node_modules/@docusaurus/module-type-aliases": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-2.4.1.tgz", - "integrity": "sha512-gLBuIFM8Dp2XOCWffUDSjtxY7jQgKvYujt7Mx5s4FCTfoL5dN1EVbnrn+O2Wvh8b0a77D57qoIDY7ghgmatR1A==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-2.4.3.tgz", + "integrity": "sha512-cwkBkt1UCiduuvEAo7XZY01dJfRn7UR/75mBgOdb1hKknhrabJZ8YH+7savd/y9kLExPyrhe0QwdS9GuzsRRIA==", "dependencies": { "@docusaurus/react-loadable": "5.5.2", - "@docusaurus/types": "2.4.1", + "@docusaurus/types": "2.4.3", "@types/history": "^4.7.11", "@types/react": "*", "@types/react-router-config": "*", @@ -2132,17 +2137,17 @@ } }, "node_modules/@docusaurus/plugin-content-blog": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.4.1.tgz", - "integrity": "sha512-E2i7Knz5YIbE1XELI6RlTnZnGgS52cUO4BlCiCUCvQHbR+s1xeIWz4C6BtaVnlug0Ccz7nFSksfwDpVlkujg5Q==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.4.3.tgz", + "integrity": "sha512-PVhypqaA0t98zVDpOeTqWUTvRqCEjJubtfFUQ7zJNYdbYTbS/E/ytq6zbLVsN/dImvemtO/5JQgjLxsh8XLo8Q==", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/logger": "2.4.3", + "@docusaurus/mdx-loader": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-common": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "cheerio": "^1.0.0-rc.12", "feed": "^4.2.2", "fs-extra": "^10.1.0", @@ -2162,17 +2167,17 @@ } }, "node_modules/@docusaurus/plugin-content-docs": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.4.1.tgz", - "integrity": "sha512-Lo7lSIcpswa2Kv4HEeUcGYqaasMUQNpjTXpV0N8G6jXgZaQurqp7E8NGYeGbDXnb48czmHWbzDL4S3+BbK0VzA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.4.3.tgz", + "integrity": "sha512-N7Po2LSH6UejQhzTCsvuX5NOzlC+HiXOVvofnEPj0WhMu1etpLEXE6a4aTxrtg95lQ5kf0xUIdjX9sh3d3G76A==", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/module-type-aliases": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/logger": "2.4.3", + "@docusaurus/mdx-loader": "2.4.3", + "@docusaurus/module-type-aliases": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "@types/react-router-config": "^5.0.6", "combine-promises": "^1.1.0", "fs-extra": "^10.1.0", @@ -2192,15 +2197,15 @@ } }, "node_modules/@docusaurus/plugin-content-pages": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.4.1.tgz", - "integrity": "sha512-/UjuH/76KLaUlL+o1OvyORynv6FURzjurSjvn2lbWTFc4tpYY2qLYTlKpTCBVPhlLUQsfyFnshEJDLmPneq2oA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.4.3.tgz", + "integrity": "sha512-txtDVz7y3zGk67q0HjG0gRttVPodkHqE0bpJ+7dOaTH40CQFLSh7+aBeGnPOTl+oCPG+hxkim4SndqPqXjQ8Bg==", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/mdx-loader": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "fs-extra": "^10.1.0", "tslib": "^2.4.0", "webpack": "^5.73.0" @@ -2214,13 +2219,13 @@ } }, "node_modules/@docusaurus/plugin-debug": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-2.4.1.tgz", - "integrity": "sha512-7Yu9UPzRShlrH/G8btOpR0e6INFZr0EegWplMjOqelIwAcx3PKyR8mgPTxGTxcqiYj6hxSCRN0D8R7YrzImwNA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-2.4.3.tgz", + "integrity": "sha512-LkUbuq3zCmINlFb+gAd4ZvYr+bPAzMC0hwND4F7V9bZ852dCX8YoWyovVUBKq4er1XsOwSQaHmNGtObtn8Av8Q==", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", "fs-extra": "^10.1.0", "react-json-view": "^1.21.3", "tslib": "^2.4.0" @@ -2234,13 +2239,13 @@ } }, "node_modules/@docusaurus/plugin-google-analytics": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.4.1.tgz", - "integrity": "sha512-dyZJdJiCoL+rcfnm0RPkLt/o732HvLiEwmtoNzOoz9MSZz117UH2J6U2vUDtzUzwtFLIf32KkeyzisbwUCgcaQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.4.3.tgz", + "integrity": "sha512-KzBV3k8lDkWOhg/oYGxlK5o9bOwX7KpPc/FTWoB+SfKhlHfhq7qcQdMi1elAaVEIop8tgK6gD1E58Q+XC6otSQ==", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "tslib": "^2.4.0" }, "engines": { @@ -2252,13 +2257,13 @@ } }, "node_modules/@docusaurus/plugin-google-gtag": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.4.1.tgz", - "integrity": "sha512-mKIefK+2kGTQBYvloNEKtDmnRD7bxHLsBcxgnbt4oZwzi2nxCGjPX6+9SQO2KCN5HZbNrYmGo5GJfMgoRvy6uA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.4.3.tgz", + "integrity": "sha512-5FMg0rT7sDy4i9AGsvJC71MQrqQZwgLNdDetLEGDHLfSHLvJhQbTCUGbGXknUgWXQJckcV/AILYeJy+HhxeIFA==", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "tslib": "^2.4.0" }, "engines": { @@ -2270,13 +2275,13 @@ } }, "node_modules/@docusaurus/plugin-google-tag-manager": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-2.4.1.tgz", - "integrity": "sha512-Zg4Ii9CMOLfpeV2nG74lVTWNtisFaH9QNtEw48R5QE1KIwDBdTVaiSA18G1EujZjrzJJzXN79VhINSbOJO/r3g==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-2.4.3.tgz", + "integrity": "sha512-1jTzp71yDGuQiX9Bi0pVp3alArV0LSnHXempvQTxwCGAEzUWWaBg4d8pocAlTpbP9aULQQqhgzrs8hgTRPOM0A==", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "tslib": "^2.4.0" }, "engines": { @@ -2288,16 +2293,16 @@ } }, "node_modules/@docusaurus/plugin-sitemap": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.4.1.tgz", - "integrity": "sha512-lZx+ijt/+atQ3FVE8FOHV/+X3kuok688OydDXrqKRJyXBJZKgGjA2Qa8RjQ4f27V2woaXhtnyrdPop/+OjVMRg==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.4.3.tgz", + "integrity": "sha512-LRQYrK1oH1rNfr4YvWBmRzTL0LN9UAPxBbghgeFRBm5yloF6P+zv1tm2pe2hQTX/QP5bSKdnajCvfnScgKXMZQ==", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/logger": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-common": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "fs-extra": "^10.1.0", "sitemap": "^7.1.1", "tslib": "^2.4.0" @@ -2311,23 +2316,23 @@ } }, "node_modules/@docusaurus/preset-classic": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-2.4.1.tgz", - "integrity": "sha512-P4//+I4zDqQJ+UDgoFrjIFaQ1MeS9UD1cvxVQaI6O7iBmiHQm0MGROP1TbE7HlxlDPXFJjZUK3x3cAoK63smGQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-2.4.3.tgz", + "integrity": "sha512-tRyMliepY11Ym6hB1rAFSNGwQDpmszvWYJvlK1E+md4SW8i6ylNHtpZjaYFff9Mdk3i/Pg8ItQq9P0daOJAvQw==", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/plugin-content-blog": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/plugin-content-pages": "2.4.1", - "@docusaurus/plugin-debug": "2.4.1", - "@docusaurus/plugin-google-analytics": "2.4.1", - "@docusaurus/plugin-google-gtag": "2.4.1", - "@docusaurus/plugin-google-tag-manager": "2.4.1", - "@docusaurus/plugin-sitemap": "2.4.1", - "@docusaurus/theme-classic": "2.4.1", - "@docusaurus/theme-common": "2.4.1", - "@docusaurus/theme-search-algolia": "2.4.1", - "@docusaurus/types": "2.4.1" + "@docusaurus/core": "2.4.3", + "@docusaurus/plugin-content-blog": "2.4.3", + "@docusaurus/plugin-content-docs": "2.4.3", + "@docusaurus/plugin-content-pages": "2.4.3", + "@docusaurus/plugin-debug": "2.4.3", + "@docusaurus/plugin-google-analytics": "2.4.3", + "@docusaurus/plugin-google-gtag": "2.4.3", + "@docusaurus/plugin-google-tag-manager": "2.4.3", + "@docusaurus/plugin-sitemap": "2.4.3", + "@docusaurus/theme-classic": "2.4.3", + "@docusaurus/theme-common": "2.4.3", + "@docusaurus/theme-search-algolia": "2.4.3", + "@docusaurus/types": "2.4.3" }, "engines": { "node": ">=16.14" @@ -2350,22 +2355,22 @@ } }, "node_modules/@docusaurus/theme-classic": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-2.4.1.tgz", - "integrity": "sha512-Rz0wKUa+LTW1PLXmwnf8mn85EBzaGSt6qamqtmnh9Hflkc+EqiYMhtUJeLdV+wsgYq4aG0ANc+bpUDpsUhdnwg==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-2.4.3.tgz", + "integrity": "sha512-QKRAJPSGPfDY2yCiPMIVyr+MqwZCIV2lxNzqbyUW0YkrlmdzzP3WuQJPMGLCjWgQp/5c9kpWMvMxjhpZx1R32Q==", "dependencies": { - "@docusaurus/core": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/module-type-aliases": "2.4.1", - "@docusaurus/plugin-content-blog": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/plugin-content-pages": "2.4.1", - "@docusaurus/theme-common": "2.4.1", - "@docusaurus/theme-translations": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/mdx-loader": "2.4.3", + "@docusaurus/module-type-aliases": "2.4.3", + "@docusaurus/plugin-content-blog": "2.4.3", + "@docusaurus/plugin-content-docs": "2.4.3", + "@docusaurus/plugin-content-pages": "2.4.3", + "@docusaurus/theme-common": "2.4.3", + "@docusaurus/theme-translations": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-common": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "@mdx-js/react": "^1.6.22", "clsx": "^1.2.1", "copy-text-to-clipboard": "^3.0.1", @@ -2389,17 +2394,17 @@ } }, "node_modules/@docusaurus/theme-common": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-2.4.1.tgz", - "integrity": "sha512-G7Zau1W5rQTaFFB3x3soQoZpkgMbl/SYNG8PfMFIjKa3M3q8n0m/GRf5/H/e5BqOvt8c+ZWIXGCiz+kUCSHovA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-2.4.3.tgz", + "integrity": "sha512-7KaDJBXKBVGXw5WOVt84FtN8czGWhM0lbyWEZXGp8AFfL6sZQfRTluFp4QriR97qwzSyOfQb+nzcDZZU4tezUw==", "dependencies": { - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/module-type-aliases": "2.4.1", - "@docusaurus/plugin-content-blog": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/plugin-content-pages": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", + "@docusaurus/mdx-loader": "2.4.3", + "@docusaurus/module-type-aliases": "2.4.3", + "@docusaurus/plugin-content-blog": "2.4.3", + "@docusaurus/plugin-content-docs": "2.4.3", + "@docusaurus/plugin-content-pages": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-common": "2.4.3", "@types/history": "^4.7.11", "@types/react": "*", "@types/react-router-config": "*", @@ -2419,18 +2424,18 @@ } }, "node_modules/@docusaurus/theme-search-algolia": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.4.1.tgz", - "integrity": "sha512-6BcqW2lnLhZCXuMAvPRezFs1DpmEKzXFKlYjruuas+Xy3AQeFzDJKTJFIm49N77WFCTyxff8d3E4Q9pi/+5McQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.4.3.tgz", + "integrity": "sha512-jziq4f6YVUB5hZOB85ELATwnxBz/RmSLD3ksGQOLDPKVzat4pmI8tddNWtriPpxR04BNT+ZfpPUMFkNFetSW1Q==", "dependencies": { "@docsearch/react": "^3.1.1", - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/theme-common": "2.4.1", - "@docusaurus/theme-translations": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/logger": "2.4.3", + "@docusaurus/plugin-content-docs": "2.4.3", + "@docusaurus/theme-common": "2.4.3", + "@docusaurus/theme-translations": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "algoliasearch": "^4.13.1", "algoliasearch-helper": "^3.10.0", "clsx": "^1.2.1", @@ -2449,9 +2454,9 @@ } }, "node_modules/@docusaurus/theme-translations": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-2.4.1.tgz", - "integrity": "sha512-T1RAGP+f86CA1kfE8ejZ3T3pUU3XcyvrGMfC/zxCtc2BsnoexuNI9Vk2CmuKCb+Tacvhxjv5unhxXce0+NKyvA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-2.4.3.tgz", + "integrity": "sha512-H4D+lbZbjbKNS/Zw1Lel64PioUAIT3cLYYJLUf3KkuO/oc9e0QCVhIYVtUI2SfBCF2NNdlyhBDQEEMygsCedIg==", "dependencies": { "fs-extra": "^10.1.0", "tslib": "^2.4.0" @@ -2461,9 +2466,9 @@ } }, "node_modules/@docusaurus/types": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-2.4.1.tgz", - "integrity": "sha512-0R+cbhpMkhbRXX138UOc/2XZFF8hiZa6ooZAEEJFp5scytzCw4tC1gChMFXrpa3d2tYE6AX8IrOEpSonLmfQuQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-2.4.3.tgz", + "integrity": "sha512-W6zNLGQqfrp/EoPD0bhb9n7OobP+RHpmvVzpA+Z/IuU3Q63njJM24hmT0GYboovWcDtFmnIJC9wcyx4RVPQscw==", "dependencies": { "@types/history": "^4.7.11", "@types/react": "*", @@ -2480,11 +2485,11 @@ } }, "node_modules/@docusaurus/utils": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-2.4.1.tgz", - "integrity": "sha512-1lvEZdAQhKNht9aPXPoh69eeKnV0/62ROhQeFKKxmzd0zkcuE/Oc5Gpnt00y/f5bIsmOsYMY7Pqfm/5rteT5GA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-2.4.3.tgz", + "integrity": "sha512-fKcXsjrD86Smxv8Pt0TBFqYieZZCPh4cbf9oszUq/AMhZn3ujwpKaVYZACPX8mmjtYx0JOgNx52CREBfiGQB4A==", "dependencies": { - "@docusaurus/logger": "2.4.1", + "@docusaurus/logger": "2.4.3", "@svgr/webpack": "^6.2.1", "escape-string-regexp": "^4.0.0", "file-loader": "^6.2.0", @@ -2514,9 +2519,9 @@ } }, "node_modules/@docusaurus/utils-common": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-2.4.1.tgz", - "integrity": "sha512-bCVGdZU+z/qVcIiEQdyx0K13OC5mYwxhSuDUR95oFbKVuXYRrTVrwZIqQljuo1fyJvFTKHiL9L9skQOPokuFNQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-2.4.3.tgz", + "integrity": "sha512-/jascp4GbLQCPVmcGkPzEQjNaAk3ADVfMtudk49Ggb+131B1WDD6HqlSmDf8MxGdy7Dja2gc+StHf01kiWoTDQ==", "dependencies": { "tslib": "^2.4.0" }, @@ -2533,12 +2538,12 @@ } }, "node_modules/@docusaurus/utils-validation": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-2.4.1.tgz", - "integrity": "sha512-unII3hlJlDwZ3w8U+pMO3Lx3RhI4YEbY3YNsQj4yzrkZzlpqZOLuAiZK2JyULnD+TKbceKU0WyWkQXtYbLNDFA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-2.4.3.tgz", + "integrity": "sha512-G2+Vt3WR5E/9drAobP+hhZQMaswRwDlp6qOMi7o7ZypB+VO7N//DZWhZEwhcRGepMDJGQEwtPv7UxtYwPL9PBw==", "dependencies": { - "@docusaurus/logger": "2.4.1", - "@docusaurus/utils": "2.4.1", + "@docusaurus/logger": "2.4.3", + "@docusaurus/utils": "2.4.3", "joi": "^17.6.0", "js-yaml": "^4.1.0", "tslib": "^2.4.0" @@ -3372,9 +3377,9 @@ } }, "node_modules/@types/hast": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.5.tgz", - "integrity": "sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.7.tgz", + "integrity": "sha512-EVLigw5zInURhzfXUM65eixfadfsHKomGKUakToXo84t8gGIJuTcD2xooM2See7GyQ7DRtYjhCHnSUQez8JaLw==", "dependencies": { "@types/unist": "^2" } @@ -3403,9 +3408,9 @@ "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" }, "node_modules/@types/mdast": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.12.tgz", - "integrity": "sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==", + "version": "3.0.14", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz", + "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==", "dependencies": { "@types/unist": "^2" } @@ -3465,9 +3470,9 @@ } }, "node_modules/@types/react-router-config": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.7.tgz", - "integrity": "sha512-pFFVXUIydHlcJP6wJm7sDii5mD/bCmmAY0wQzq+M+uX7bqS95AQqHZWP1iNMKrWVQSuHIzj5qi9BvrtLX2/T4w==", + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.9.tgz", + "integrity": "sha512-a7zOj9yVUtM3Ns5stoseQAAsmppNxZpXDv6tZiFV5qlRmV4W96u53on1vApBX1eRSc8mrFOiB54Hc0Pk1J8GFg==", "dependencies": { "@types/history": "^4.7.11", "@types/react": "*", @@ -3528,9 +3533,9 @@ } }, "node_modules/@types/unist": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.7.tgz", - "integrity": "sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==" + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz", + "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ==" }, "node_modules/@types/ws": { "version": "8.5.3", @@ -3792,30 +3797,30 @@ } }, "node_modules/algoliasearch": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.19.1.tgz", - "integrity": "sha512-IJF5b93b2MgAzcE/tuzW0yOPnuUyRgGAtaPv5UUywXM8kzqfdwZTO4sPJBzoGz1eOy6H9uEchsJsBFTELZSu+g==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.20.0.tgz", + "integrity": "sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==", "dependencies": { - "@algolia/cache-browser-local-storage": "4.19.1", - "@algolia/cache-common": "4.19.1", - "@algolia/cache-in-memory": "4.19.1", - "@algolia/client-account": "4.19.1", - "@algolia/client-analytics": "4.19.1", - "@algolia/client-common": "4.19.1", - "@algolia/client-personalization": "4.19.1", - "@algolia/client-search": "4.19.1", - "@algolia/logger-common": "4.19.1", - "@algolia/logger-console": "4.19.1", - "@algolia/requester-browser-xhr": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/requester-node-http": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/cache-browser-local-storage": "4.20.0", + "@algolia/cache-common": "4.20.0", + "@algolia/cache-in-memory": "4.20.0", + "@algolia/client-account": "4.20.0", + "@algolia/client-analytics": "4.20.0", + "@algolia/client-common": "4.20.0", + "@algolia/client-personalization": "4.20.0", + "@algolia/client-search": "4.20.0", + "@algolia/logger-common": "4.20.0", + "@algolia/logger-console": "4.20.0", + "@algolia/requester-browser-xhr": "4.20.0", + "@algolia/requester-common": "4.20.0", + "@algolia/requester-node-http": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "node_modules/algoliasearch-helper": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.14.0.tgz", - "integrity": "sha512-gXDXzsSS0YANn5dHr71CUXOo84cN4azhHKUbg71vAWnH+1JBiR4jf7to3t3JHXknXkbV0F7f055vUSBKrltHLQ==", + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.15.0.tgz", + "integrity": "sha512-DGUnK3TGtDQsaUE4ayF/LjSN0DGsuYThB8WBgnnDY0Wq04K6lNVruO3LfqJOgSfDiezp+Iyt8Tj4YKHi+/ivSA==", "dependencies": { "@algolia/events": "^4.0.1" }, @@ -3913,9 +3918,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.14", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", - "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", "funding": [ { "type": "opencollective", @@ -3924,12 +3929,16 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", - "fraction.js": "^4.2.0", + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" @@ -4470,9 +4479,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001517", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz", - "integrity": "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==", + "version": "1.0.30001559", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001559.tgz", + "integrity": "sha512-cPiMKZgqgkg5LY3/ntGeLFUpi6tzddBNS58A4tnTgQw1zON7u2sZMU7SzOeVH4tj20++9ggL+V6FDOFMTaFFYA==", "funding": [ { "type": "opencollective", @@ -6488,15 +6497,15 @@ } }, "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "engines": { "node": "*" }, "funding": { "type": "patreon", - "url": "https://www.patreon.com/infusion" + "url": "https://github.com/sponsors/rawify" } }, "node_modules/fresh": { @@ -8001,6 +8010,11 @@ "node": ">= 0.6" } }, + "node_modules/medium-zoom": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/medium-zoom/-/medium-zoom-1.0.8.tgz", + "integrity": "sha512-CjFVuFq/IfrdqesAXfg+hzlDKu6A2n80ZIq0Kl9kWjoHh9j1N9Uvk5X0/MmN0hOfm5F9YBswlClhcwnmtwz7gA==" + }, "node_modules/memfs": { "version": "3.4.7", "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", @@ -8213,9 +8227,9 @@ } }, "node_modules/node-fetch": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", - "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -8730,6 +8744,14 @@ "node": ">=4" } }, + "node_modules/plugin-image-zoom": { + "version": "1.1.0", + "resolved": "git+ssh://git@github.com/flexanalytics/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de", + "license": "MIT", + "dependencies": { + "medium-zoom": "^1.0.8" + } + }, "node_modules/postcss": { "version": "8.4.27", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz", @@ -9819,9 +9841,9 @@ } }, "node_modules/react-textarea-autosize": { - "version": "8.5.2", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.2.tgz", - "integrity": "sha512-uOkyjkEl0ByEK21eCJMHDGBAAd/BoFQBawYK5XItjAmCTeSbjxghd8qnt7nzsLYzidjnoObu6M26xts0YGKsGg==", + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz", + "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==", "dependencies": { "@babel/runtime": "^7.20.13", "use-composed-ref": "^1.3.0", @@ -10053,6 +10075,7 @@ "version": "7.12.1", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz", "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4", "@babel/plugin-syntax-object-rest-spread": "^7.8.0", @@ -10453,13 +10476,10 @@ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" }, "node_modules/search-insights": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.7.0.tgz", - "integrity": "sha512-GLbVaGgzYEKMvuJbHRhLi1qoBFnjXZGZ6l4LxOYPCp4lI2jDRB3jPU9/XNhMwv6kvnA9slTreq6pvK+b3o3aqg==", - "peer": true, - "engines": { - "node": ">=8.16.0" - } + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.9.0.tgz", + "integrity": "sha512-bkWW9nIHOFkLwjQ1xqVaMbjjO5vhP26ERsH9Y3pKr8imthofEFIxlnOabkmGcw6ksRj9jWidcI65vvjJH/nTGg==", + "peer": true }, "node_modules/section-matter": { "version": "1.0.0", @@ -11320,9 +11340,9 @@ } }, "node_modules/ua-parser-js": { - "version": "1.0.35", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.35.tgz", - "integrity": "sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==", + "version": "1.0.37", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz", + "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==", "funding": [ { "type": "opencollective", @@ -11331,6 +11351,10 @@ { "type": "paypal", "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" } ], "engines": { @@ -12308,74 +12332,74 @@ "requires": {} }, "@algolia/cache-browser-local-storage": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.19.1.tgz", - "integrity": "sha512-FYAZWcGsFTTaSAwj9Std8UML3Bu8dyWDncM7Ls8g+58UOe4XYdlgzXWbrIgjaguP63pCCbMoExKr61B+ztK3tw==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.20.0.tgz", + "integrity": "sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==", "requires": { - "@algolia/cache-common": "4.19.1" + "@algolia/cache-common": "4.20.0" } }, "@algolia/cache-common": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.19.1.tgz", - "integrity": "sha512-XGghi3l0qA38HiqdoUY+wvGyBsGvKZ6U3vTiMBT4hArhP3fOGLXpIINgMiiGjTe4FVlTa5a/7Zf2bwlIHfRqqg==" + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.20.0.tgz", + "integrity": "sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==" }, "@algolia/cache-in-memory": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.19.1.tgz", - "integrity": "sha512-+PDWL+XALGvIginigzu8oU6eWw+o76Z8zHbBovWYcrtWOEtinbl7a7UTt3x3lthv+wNuFr/YD1Gf+B+A9V8n5w==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.20.0.tgz", + "integrity": "sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==", "requires": { - "@algolia/cache-common": "4.19.1" + "@algolia/cache-common": "4.20.0" } }, "@algolia/client-account": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.19.1.tgz", - "integrity": "sha512-Oy0ritA2k7AMxQ2JwNpfaEcgXEDgeyKu0V7E7xt/ZJRdXfEpZcwp9TOg4TJHC7Ia62gIeT2Y/ynzsxccPw92GA==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.20.0.tgz", + "integrity": "sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==", "requires": { - "@algolia/client-common": "4.19.1", - "@algolia/client-search": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.20.0", + "@algolia/client-search": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "@algolia/client-analytics": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.19.1.tgz", - "integrity": "sha512-5QCq2zmgdZLIQhHqwl55ZvKVpLM3DNWjFI4T+bHr3rGu23ew2bLO4YtyxaZeChmDb85jUdPDouDlCumGfk6wOg==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.20.0.tgz", + "integrity": "sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==", "requires": { - "@algolia/client-common": "4.19.1", - "@algolia/client-search": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.20.0", + "@algolia/client-search": "4.20.0", + "@algolia/requester-common": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "@algolia/client-common": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.19.1.tgz", - "integrity": "sha512-3kAIVqTcPrjfS389KQvKzliC559x+BDRxtWamVJt8IVp7LGnjq+aVAXg4Xogkur1MUrScTZ59/AaUd5EdpyXgA==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.20.0.tgz", + "integrity": "sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==", "requires": { - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/requester-common": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "@algolia/client-personalization": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.19.1.tgz", - "integrity": "sha512-8CWz4/H5FA+krm9HMw2HUQenizC/DxUtsI5oYC0Jxxyce1vsr8cb1aEiSJArQT6IzMynrERif1RVWLac1m36xw==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.20.0.tgz", + "integrity": "sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==", "requires": { - "@algolia/client-common": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.20.0", + "@algolia/requester-common": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "@algolia/client-search": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.19.1.tgz", - "integrity": "sha512-mBecfMFS4N+yK/p0ZbK53vrZbL6OtWMk8YmnOv1i0LXx4pelY8TFhqKoTit3NPVPwoSNN0vdSN9dTu1xr1XOVw==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.20.0.tgz", + "integrity": "sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==", "requires": { - "@algolia/client-common": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/client-common": "4.20.0", + "@algolia/requester-common": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "@algolia/events": { @@ -12384,47 +12408,47 @@ "integrity": "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==" }, "@algolia/logger-common": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.19.1.tgz", - "integrity": "sha512-i6pLPZW/+/YXKis8gpmSiNk1lOmYCmRI6+x6d2Qk1OdfvX051nRVdalRbEcVTpSQX6FQAoyeaui0cUfLYW5Elw==" + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.20.0.tgz", + "integrity": "sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==" }, "@algolia/logger-console": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.19.1.tgz", - "integrity": "sha512-jj72k9GKb9W0c7TyC3cuZtTr0CngLBLmc8trzZlXdfvQiigpUdvTi1KoWIb2ZMcRBG7Tl8hSb81zEY3zI2RlXg==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.20.0.tgz", + "integrity": "sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==", "requires": { - "@algolia/logger-common": "4.19.1" + "@algolia/logger-common": "4.20.0" } }, "@algolia/requester-browser-xhr": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.19.1.tgz", - "integrity": "sha512-09K/+t7lptsweRTueHnSnmPqIxbHMowejAkn9XIcJMLdseS3zl8ObnS5GWea86mu3vy4+8H+ZBKkUN82Zsq/zg==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.20.0.tgz", + "integrity": "sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==", "requires": { - "@algolia/requester-common": "4.19.1" + "@algolia/requester-common": "4.20.0" } }, "@algolia/requester-common": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.19.1.tgz", - "integrity": "sha512-BisRkcWVxrDzF1YPhAckmi2CFYK+jdMT60q10d7z3PX+w6fPPukxHRnZwooiTUrzFe50UBmLItGizWHP5bDzVQ==" + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.20.0.tgz", + "integrity": "sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==" }, "@algolia/requester-node-http": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.19.1.tgz", - "integrity": "sha512-6DK52DHviBHTG2BK/Vv2GIlEw7i+vxm7ypZW0Z7vybGCNDeWzADx+/TmxjkES2h15+FZOqVf/Ja677gePsVItA==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.20.0.tgz", + "integrity": "sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==", "requires": { - "@algolia/requester-common": "4.19.1" + "@algolia/requester-common": "4.20.0" } }, "@algolia/transporter": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.19.1.tgz", - "integrity": "sha512-nkpvPWbpuzxo1flEYqNIbGz7xhfhGOKGAZS7tzC+TELgEmi7z99qRyTfNSUlW7LZmB3ACdnqAo+9A9KFBENviQ==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.20.0.tgz", + "integrity": "sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==", "requires": { - "@algolia/cache-common": "4.19.1", - "@algolia/logger-common": "4.19.1", - "@algolia/requester-common": "4.19.1" + "@algolia/cache-common": "4.20.0", + "@algolia/logger-common": "4.20.0", + "@algolia/requester-common": "4.20.0" } }, "@ampproject/remapping": { @@ -13597,25 +13621,25 @@ "optional": true }, "@docsearch/css": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.5.1.tgz", - "integrity": "sha512-2Pu9HDg/uP/IT10rbQ+4OrTQuxIWdKVUEdcw9/w7kZJv9NeHS6skJx1xuRiFyoGKwAzcHXnLp7csE99sj+O1YA==" + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.5.2.tgz", + "integrity": "sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==" }, "@docsearch/react": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.5.1.tgz", - "integrity": "sha512-t5mEODdLzZq4PTFAm/dvqcvZFdPDMdfPE5rJS5SC8OUq9mPzxEy6b+9THIqNM9P0ocCb4UC5jqBrxKclnuIbzQ==", + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.5.2.tgz", + "integrity": "sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==", "requires": { "@algolia/autocomplete-core": "1.9.3", "@algolia/autocomplete-preset-algolia": "1.9.3", - "@docsearch/css": "3.5.1", - "algoliasearch": "^4.0.0" + "@docsearch/css": "3.5.2", + "algoliasearch": "^4.19.1" } }, "@docusaurus/core": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-2.4.1.tgz", - "integrity": "sha512-SNsY7PshK3Ri7vtsLXVeAJGS50nJN3RgF836zkyUfAD01Fq+sAk5EwWgLw+nnm5KVNGDu7PRR2kRGDsWvqpo0g==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-2.4.3.tgz", + "integrity": "sha512-dWH5P7cgeNSIg9ufReX6gaCl/TmrGKD38Orbwuz05WPhAQtFXHd5B8Qym1TiXfvUNvwoYKkAJOJuGe8ou0Z7PA==", "requires": { "@babel/core": "^7.18.6", "@babel/generator": "^7.18.7", @@ -13627,13 +13651,13 @@ "@babel/runtime": "^7.18.6", "@babel/runtime-corejs3": "^7.18.6", "@babel/traverse": "^7.18.8", - "@docusaurus/cssnano-preset": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", + "@docusaurus/cssnano-preset": "2.4.3", + "@docusaurus/logger": "2.4.3", + "@docusaurus/mdx-loader": "2.4.3", "@docusaurus/react-loadable": "5.5.2", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-common": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "@slorber/static-site-generator-webpack-plugin": "^4.0.7", "@svgr/webpack": "^6.2.1", "autoprefixer": "^10.4.7", @@ -13701,9 +13725,9 @@ } }, "@docusaurus/cssnano-preset": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-2.4.1.tgz", - "integrity": "sha512-ka+vqXwtcW1NbXxWsh6yA1Ckii1klY9E53cJ4O9J09nkMBgrNX3iEFED1fWdv8wf4mJjvGi5RLZ2p9hJNjsLyQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-2.4.3.tgz", + "integrity": "sha512-ZvGSRCi7z9wLnZrXNPG6DmVPHdKGd8dIn9pYbEOFiYihfv4uDR3UtxogmKf+rT8ZlKFf5Lqne8E8nt08zNM8CA==", "requires": { "cssnano-preset-advanced": "^5.3.8", "postcss": "^8.4.14", @@ -13712,23 +13736,23 @@ } }, "@docusaurus/logger": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-2.4.1.tgz", - "integrity": "sha512-5h5ysIIWYIDHyTVd8BjheZmQZmEgWDR54aQ1BX9pjFfpyzFo5puKXKYrYJXbjEHGyVhEzmB9UXwbxGfaZhOjcg==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-2.4.3.tgz", + "integrity": "sha512-Zxws7r3yLufk9xM1zq9ged0YHs65mlRmtsobnFkdZTxWXdTYlWWLWdKyNKAsVC+D7zg+pv2fGbyabdOnyZOM3w==", "requires": { "chalk": "^4.1.2", "tslib": "^2.4.0" } }, "@docusaurus/mdx-loader": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-2.4.1.tgz", - "integrity": "sha512-4KhUhEavteIAmbBj7LVFnrVYDiU51H5YWW1zY6SmBSte/YLhDutztLTBE0PQl1Grux1jzUJeaSvAzHpTn6JJDQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-2.4.3.tgz", + "integrity": "sha512-b1+fDnWtl3GiqkL0BRjYtc94FZrcDDBV1j8446+4tptB9BAOlePwG2p/pK6vGvfL53lkOsszXMghr2g67M0vCw==", "requires": { "@babel/parser": "^7.18.8", "@babel/traverse": "^7.18.8", - "@docusaurus/logger": "2.4.1", - "@docusaurus/utils": "2.4.1", + "@docusaurus/logger": "2.4.3", + "@docusaurus/utils": "2.4.3", "@mdx-js/mdx": "^1.6.22", "escape-html": "^1.0.3", "file-loader": "^6.2.0", @@ -13745,12 +13769,12 @@ } }, "@docusaurus/module-type-aliases": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-2.4.1.tgz", - "integrity": "sha512-gLBuIFM8Dp2XOCWffUDSjtxY7jQgKvYujt7Mx5s4FCTfoL5dN1EVbnrn+O2Wvh8b0a77D57qoIDY7ghgmatR1A==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-2.4.3.tgz", + "integrity": "sha512-cwkBkt1UCiduuvEAo7XZY01dJfRn7UR/75mBgOdb1hKknhrabJZ8YH+7savd/y9kLExPyrhe0QwdS9GuzsRRIA==", "requires": { "@docusaurus/react-loadable": "5.5.2", - "@docusaurus/types": "2.4.1", + "@docusaurus/types": "2.4.3", "@types/history": "^4.7.11", "@types/react": "*", "@types/react-router-config": "*", @@ -13760,17 +13784,17 @@ } }, "@docusaurus/plugin-content-blog": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.4.1.tgz", - "integrity": "sha512-E2i7Knz5YIbE1XELI6RlTnZnGgS52cUO4BlCiCUCvQHbR+s1xeIWz4C6BtaVnlug0Ccz7nFSksfwDpVlkujg5Q==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.4.3.tgz", + "integrity": "sha512-PVhypqaA0t98zVDpOeTqWUTvRqCEjJubtfFUQ7zJNYdbYTbS/E/ytq6zbLVsN/dImvemtO/5JQgjLxsh8XLo8Q==", "requires": { - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/logger": "2.4.3", + "@docusaurus/mdx-loader": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-common": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "cheerio": "^1.0.0-rc.12", "feed": "^4.2.2", "fs-extra": "^10.1.0", @@ -13783,17 +13807,17 @@ } }, "@docusaurus/plugin-content-docs": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.4.1.tgz", - "integrity": "sha512-Lo7lSIcpswa2Kv4HEeUcGYqaasMUQNpjTXpV0N8G6jXgZaQurqp7E8NGYeGbDXnb48czmHWbzDL4S3+BbK0VzA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.4.3.tgz", + "integrity": "sha512-N7Po2LSH6UejQhzTCsvuX5NOzlC+HiXOVvofnEPj0WhMu1etpLEXE6a4aTxrtg95lQ5kf0xUIdjX9sh3d3G76A==", "requires": { - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/module-type-aliases": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/logger": "2.4.3", + "@docusaurus/mdx-loader": "2.4.3", + "@docusaurus/module-type-aliases": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "@types/react-router-config": "^5.0.6", "combine-promises": "^1.1.0", "fs-extra": "^10.1.0", @@ -13806,100 +13830,100 @@ } }, "@docusaurus/plugin-content-pages": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.4.1.tgz", - "integrity": "sha512-/UjuH/76KLaUlL+o1OvyORynv6FURzjurSjvn2lbWTFc4tpYY2qLYTlKpTCBVPhlLUQsfyFnshEJDLmPneq2oA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.4.3.tgz", + "integrity": "sha512-txtDVz7y3zGk67q0HjG0gRttVPodkHqE0bpJ+7dOaTH40CQFLSh7+aBeGnPOTl+oCPG+hxkim4SndqPqXjQ8Bg==", "requires": { - "@docusaurus/core": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/mdx-loader": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "fs-extra": "^10.1.0", "tslib": "^2.4.0", "webpack": "^5.73.0" } }, "@docusaurus/plugin-debug": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-2.4.1.tgz", - "integrity": "sha512-7Yu9UPzRShlrH/G8btOpR0e6INFZr0EegWplMjOqelIwAcx3PKyR8mgPTxGTxcqiYj6hxSCRN0D8R7YrzImwNA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-2.4.3.tgz", + "integrity": "sha512-LkUbuq3zCmINlFb+gAd4ZvYr+bPAzMC0hwND4F7V9bZ852dCX8YoWyovVUBKq4er1XsOwSQaHmNGtObtn8Av8Q==", "requires": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", "fs-extra": "^10.1.0", "react-json-view": "^1.21.3", "tslib": "^2.4.0" } }, "@docusaurus/plugin-google-analytics": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.4.1.tgz", - "integrity": "sha512-dyZJdJiCoL+rcfnm0RPkLt/o732HvLiEwmtoNzOoz9MSZz117UH2J6U2vUDtzUzwtFLIf32KkeyzisbwUCgcaQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.4.3.tgz", + "integrity": "sha512-KzBV3k8lDkWOhg/oYGxlK5o9bOwX7KpPc/FTWoB+SfKhlHfhq7qcQdMi1elAaVEIop8tgK6gD1E58Q+XC6otSQ==", "requires": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "tslib": "^2.4.0" } }, "@docusaurus/plugin-google-gtag": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.4.1.tgz", - "integrity": "sha512-mKIefK+2kGTQBYvloNEKtDmnRD7bxHLsBcxgnbt4oZwzi2nxCGjPX6+9SQO2KCN5HZbNrYmGo5GJfMgoRvy6uA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.4.3.tgz", + "integrity": "sha512-5FMg0rT7sDy4i9AGsvJC71MQrqQZwgLNdDetLEGDHLfSHLvJhQbTCUGbGXknUgWXQJckcV/AILYeJy+HhxeIFA==", "requires": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "tslib": "^2.4.0" } }, "@docusaurus/plugin-google-tag-manager": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-2.4.1.tgz", - "integrity": "sha512-Zg4Ii9CMOLfpeV2nG74lVTWNtisFaH9QNtEw48R5QE1KIwDBdTVaiSA18G1EujZjrzJJzXN79VhINSbOJO/r3g==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-2.4.3.tgz", + "integrity": "sha512-1jTzp71yDGuQiX9Bi0pVp3alArV0LSnHXempvQTxwCGAEzUWWaBg4d8pocAlTpbP9aULQQqhgzrs8hgTRPOM0A==", "requires": { - "@docusaurus/core": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "tslib": "^2.4.0" } }, "@docusaurus/plugin-sitemap": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.4.1.tgz", - "integrity": "sha512-lZx+ijt/+atQ3FVE8FOHV/+X3kuok688OydDXrqKRJyXBJZKgGjA2Qa8RjQ4f27V2woaXhtnyrdPop/+OjVMRg==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.4.3.tgz", + "integrity": "sha512-LRQYrK1oH1rNfr4YvWBmRzTL0LN9UAPxBbghgeFRBm5yloF6P+zv1tm2pe2hQTX/QP5bSKdnajCvfnScgKXMZQ==", "requires": { - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/logger": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-common": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "fs-extra": "^10.1.0", "sitemap": "^7.1.1", "tslib": "^2.4.0" } }, "@docusaurus/preset-classic": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-2.4.1.tgz", - "integrity": "sha512-P4//+I4zDqQJ+UDgoFrjIFaQ1MeS9UD1cvxVQaI6O7iBmiHQm0MGROP1TbE7HlxlDPXFJjZUK3x3cAoK63smGQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-2.4.3.tgz", + "integrity": "sha512-tRyMliepY11Ym6hB1rAFSNGwQDpmszvWYJvlK1E+md4SW8i6ylNHtpZjaYFff9Mdk3i/Pg8ItQq9P0daOJAvQw==", "requires": { - "@docusaurus/core": "2.4.1", - "@docusaurus/plugin-content-blog": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/plugin-content-pages": "2.4.1", - "@docusaurus/plugin-debug": "2.4.1", - "@docusaurus/plugin-google-analytics": "2.4.1", - "@docusaurus/plugin-google-gtag": "2.4.1", - "@docusaurus/plugin-google-tag-manager": "2.4.1", - "@docusaurus/plugin-sitemap": "2.4.1", - "@docusaurus/theme-classic": "2.4.1", - "@docusaurus/theme-common": "2.4.1", - "@docusaurus/theme-search-algolia": "2.4.1", - "@docusaurus/types": "2.4.1" + "@docusaurus/core": "2.4.3", + "@docusaurus/plugin-content-blog": "2.4.3", + "@docusaurus/plugin-content-docs": "2.4.3", + "@docusaurus/plugin-content-pages": "2.4.3", + "@docusaurus/plugin-debug": "2.4.3", + "@docusaurus/plugin-google-analytics": "2.4.3", + "@docusaurus/plugin-google-gtag": "2.4.3", + "@docusaurus/plugin-google-tag-manager": "2.4.3", + "@docusaurus/plugin-sitemap": "2.4.3", + "@docusaurus/theme-classic": "2.4.3", + "@docusaurus/theme-common": "2.4.3", + "@docusaurus/theme-search-algolia": "2.4.3", + "@docusaurus/types": "2.4.3" } }, "@docusaurus/react-loadable": { @@ -13912,22 +13936,22 @@ } }, "@docusaurus/theme-classic": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-2.4.1.tgz", - "integrity": "sha512-Rz0wKUa+LTW1PLXmwnf8mn85EBzaGSt6qamqtmnh9Hflkc+EqiYMhtUJeLdV+wsgYq4aG0ANc+bpUDpsUhdnwg==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-2.4.3.tgz", + "integrity": "sha512-QKRAJPSGPfDY2yCiPMIVyr+MqwZCIV2lxNzqbyUW0YkrlmdzzP3WuQJPMGLCjWgQp/5c9kpWMvMxjhpZx1R32Q==", "requires": { - "@docusaurus/core": "2.4.1", - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/module-type-aliases": "2.4.1", - "@docusaurus/plugin-content-blog": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/plugin-content-pages": "2.4.1", - "@docusaurus/theme-common": "2.4.1", - "@docusaurus/theme-translations": "2.4.1", - "@docusaurus/types": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/mdx-loader": "2.4.3", + "@docusaurus/module-type-aliases": "2.4.3", + "@docusaurus/plugin-content-blog": "2.4.3", + "@docusaurus/plugin-content-docs": "2.4.3", + "@docusaurus/plugin-content-pages": "2.4.3", + "@docusaurus/theme-common": "2.4.3", + "@docusaurus/theme-translations": "2.4.3", + "@docusaurus/types": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-common": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "@mdx-js/react": "^1.6.22", "clsx": "^1.2.1", "copy-text-to-clipboard": "^3.0.1", @@ -13944,17 +13968,17 @@ } }, "@docusaurus/theme-common": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-2.4.1.tgz", - "integrity": "sha512-G7Zau1W5rQTaFFB3x3soQoZpkgMbl/SYNG8PfMFIjKa3M3q8n0m/GRf5/H/e5BqOvt8c+ZWIXGCiz+kUCSHovA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-2.4.3.tgz", + "integrity": "sha512-7KaDJBXKBVGXw5WOVt84FtN8czGWhM0lbyWEZXGp8AFfL6sZQfRTluFp4QriR97qwzSyOfQb+nzcDZZU4tezUw==", "requires": { - "@docusaurus/mdx-loader": "2.4.1", - "@docusaurus/module-type-aliases": "2.4.1", - "@docusaurus/plugin-content-blog": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/plugin-content-pages": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-common": "2.4.1", + "@docusaurus/mdx-loader": "2.4.3", + "@docusaurus/module-type-aliases": "2.4.3", + "@docusaurus/plugin-content-blog": "2.4.3", + "@docusaurus/plugin-content-docs": "2.4.3", + "@docusaurus/plugin-content-pages": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-common": "2.4.3", "@types/history": "^4.7.11", "@types/react": "*", "@types/react-router-config": "*", @@ -13967,18 +13991,18 @@ } }, "@docusaurus/theme-search-algolia": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.4.1.tgz", - "integrity": "sha512-6BcqW2lnLhZCXuMAvPRezFs1DpmEKzXFKlYjruuas+Xy3AQeFzDJKTJFIm49N77WFCTyxff8d3E4Q9pi/+5McQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.4.3.tgz", + "integrity": "sha512-jziq4f6YVUB5hZOB85ELATwnxBz/RmSLD3ksGQOLDPKVzat4pmI8tddNWtriPpxR04BNT+ZfpPUMFkNFetSW1Q==", "requires": { "@docsearch/react": "^3.1.1", - "@docusaurus/core": "2.4.1", - "@docusaurus/logger": "2.4.1", - "@docusaurus/plugin-content-docs": "2.4.1", - "@docusaurus/theme-common": "2.4.1", - "@docusaurus/theme-translations": "2.4.1", - "@docusaurus/utils": "2.4.1", - "@docusaurus/utils-validation": "2.4.1", + "@docusaurus/core": "2.4.3", + "@docusaurus/logger": "2.4.3", + "@docusaurus/plugin-content-docs": "2.4.3", + "@docusaurus/theme-common": "2.4.3", + "@docusaurus/theme-translations": "2.4.3", + "@docusaurus/utils": "2.4.3", + "@docusaurus/utils-validation": "2.4.3", "algoliasearch": "^4.13.1", "algoliasearch-helper": "^3.10.0", "clsx": "^1.2.1", @@ -13990,18 +14014,18 @@ } }, "@docusaurus/theme-translations": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-2.4.1.tgz", - "integrity": "sha512-T1RAGP+f86CA1kfE8ejZ3T3pUU3XcyvrGMfC/zxCtc2BsnoexuNI9Vk2CmuKCb+Tacvhxjv5unhxXce0+NKyvA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-2.4.3.tgz", + "integrity": "sha512-H4D+lbZbjbKNS/Zw1Lel64PioUAIT3cLYYJLUf3KkuO/oc9e0QCVhIYVtUI2SfBCF2NNdlyhBDQEEMygsCedIg==", "requires": { "fs-extra": "^10.1.0", "tslib": "^2.4.0" } }, "@docusaurus/types": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-2.4.1.tgz", - "integrity": "sha512-0R+cbhpMkhbRXX138UOc/2XZFF8hiZa6ooZAEEJFp5scytzCw4tC1gChMFXrpa3d2tYE6AX8IrOEpSonLmfQuQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-2.4.3.tgz", + "integrity": "sha512-W6zNLGQqfrp/EoPD0bhb9n7OobP+RHpmvVzpA+Z/IuU3Q63njJM24hmT0GYboovWcDtFmnIJC9wcyx4RVPQscw==", "requires": { "@types/history": "^4.7.11", "@types/react": "*", @@ -14014,11 +14038,11 @@ } }, "@docusaurus/utils": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-2.4.1.tgz", - "integrity": "sha512-1lvEZdAQhKNht9aPXPoh69eeKnV0/62ROhQeFKKxmzd0zkcuE/Oc5Gpnt00y/f5bIsmOsYMY7Pqfm/5rteT5GA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-2.4.3.tgz", + "integrity": "sha512-fKcXsjrD86Smxv8Pt0TBFqYieZZCPh4cbf9oszUq/AMhZn3ujwpKaVYZACPX8mmjtYx0JOgNx52CREBfiGQB4A==", "requires": { - "@docusaurus/logger": "2.4.1", + "@docusaurus/logger": "2.4.3", "@svgr/webpack": "^6.2.1", "escape-string-regexp": "^4.0.0", "file-loader": "^6.2.0", @@ -14044,20 +14068,20 @@ } }, "@docusaurus/utils-common": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-2.4.1.tgz", - "integrity": "sha512-bCVGdZU+z/qVcIiEQdyx0K13OC5mYwxhSuDUR95oFbKVuXYRrTVrwZIqQljuo1fyJvFTKHiL9L9skQOPokuFNQ==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-2.4.3.tgz", + "integrity": "sha512-/jascp4GbLQCPVmcGkPzEQjNaAk3ADVfMtudk49Ggb+131B1WDD6HqlSmDf8MxGdy7Dja2gc+StHf01kiWoTDQ==", "requires": { "tslib": "^2.4.0" } }, "@docusaurus/utils-validation": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-2.4.1.tgz", - "integrity": "sha512-unII3hlJlDwZ3w8U+pMO3Lx3RhI4YEbY3YNsQj4yzrkZzlpqZOLuAiZK2JyULnD+TKbceKU0WyWkQXtYbLNDFA==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-2.4.3.tgz", + "integrity": "sha512-G2+Vt3WR5E/9drAobP+hhZQMaswRwDlp6qOMi7o7ZypB+VO7N//DZWhZEwhcRGepMDJGQEwtPv7UxtYwPL9PBw==", "requires": { - "@docusaurus/logger": "2.4.1", - "@docusaurus/utils": "2.4.1", + "@docusaurus/logger": "2.4.3", + "@docusaurus/utils": "2.4.3", "joi": "^17.6.0", "js-yaml": "^4.1.0", "tslib": "^2.4.0" @@ -14585,9 +14609,9 @@ } }, "@types/hast": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.5.tgz", - "integrity": "sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.7.tgz", + "integrity": "sha512-EVLigw5zInURhzfXUM65eixfadfsHKomGKUakToXo84t8gGIJuTcD2xooM2See7GyQ7DRtYjhCHnSUQez8JaLw==", "requires": { "@types/unist": "^2" } @@ -14616,9 +14640,9 @@ "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" }, "@types/mdast": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.12.tgz", - "integrity": "sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==", + "version": "3.0.14", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz", + "integrity": "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==", "requires": { "@types/unist": "^2" } @@ -14678,9 +14702,9 @@ } }, "@types/react-router-config": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.7.tgz", - "integrity": "sha512-pFFVXUIydHlcJP6wJm7sDii5mD/bCmmAY0wQzq+M+uX7bqS95AQqHZWP1iNMKrWVQSuHIzj5qi9BvrtLX2/T4w==", + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.9.tgz", + "integrity": "sha512-a7zOj9yVUtM3Ns5stoseQAAsmppNxZpXDv6tZiFV5qlRmV4W96u53on1vApBX1eRSc8mrFOiB54Hc0Pk1J8GFg==", "requires": { "@types/history": "^4.7.11", "@types/react": "*", @@ -14741,9 +14765,9 @@ } }, "@types/unist": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.7.tgz", - "integrity": "sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==" + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz", + "integrity": "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ==" }, "@types/ws": { "version": "8.5.3", @@ -14971,30 +14995,30 @@ "requires": {} }, "algoliasearch": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.19.1.tgz", - "integrity": "sha512-IJF5b93b2MgAzcE/tuzW0yOPnuUyRgGAtaPv5UUywXM8kzqfdwZTO4sPJBzoGz1eOy6H9uEchsJsBFTELZSu+g==", + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.20.0.tgz", + "integrity": "sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==", "requires": { - "@algolia/cache-browser-local-storage": "4.19.1", - "@algolia/cache-common": "4.19.1", - "@algolia/cache-in-memory": "4.19.1", - "@algolia/client-account": "4.19.1", - "@algolia/client-analytics": "4.19.1", - "@algolia/client-common": "4.19.1", - "@algolia/client-personalization": "4.19.1", - "@algolia/client-search": "4.19.1", - "@algolia/logger-common": "4.19.1", - "@algolia/logger-console": "4.19.1", - "@algolia/requester-browser-xhr": "4.19.1", - "@algolia/requester-common": "4.19.1", - "@algolia/requester-node-http": "4.19.1", - "@algolia/transporter": "4.19.1" + "@algolia/cache-browser-local-storage": "4.20.0", + "@algolia/cache-common": "4.20.0", + "@algolia/cache-in-memory": "4.20.0", + "@algolia/client-account": "4.20.0", + "@algolia/client-analytics": "4.20.0", + "@algolia/client-common": "4.20.0", + "@algolia/client-personalization": "4.20.0", + "@algolia/client-search": "4.20.0", + "@algolia/logger-common": "4.20.0", + "@algolia/logger-console": "4.20.0", + "@algolia/requester-browser-xhr": "4.20.0", + "@algolia/requester-common": "4.20.0", + "@algolia/requester-node-http": "4.20.0", + "@algolia/transporter": "4.20.0" } }, "algoliasearch-helper": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.14.0.tgz", - "integrity": "sha512-gXDXzsSS0YANn5dHr71CUXOo84cN4azhHKUbg71vAWnH+1JBiR4jf7to3t3JHXknXkbV0F7f055vUSBKrltHLQ==", + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.15.0.tgz", + "integrity": "sha512-DGUnK3TGtDQsaUE4ayF/LjSN0DGsuYThB8WBgnnDY0Wq04K6lNVruO3LfqJOgSfDiezp+Iyt8Tj4YKHi+/ivSA==", "requires": { "@algolia/events": "^4.0.1" } @@ -15065,13 +15089,13 @@ "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" }, "autoprefixer": { - "version": "10.4.14", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", - "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", "requires": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", - "fraction.js": "^4.2.0", + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" @@ -15454,9 +15478,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001517", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz", - "integrity": "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==" + "version": "1.0.30001559", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001559.tgz", + "integrity": "sha512-cPiMKZgqgkg5LY3/ntGeLFUpi6tzddBNS58A4tnTgQw1zON7u2sZMU7SzOeVH4tj20++9ggL+V6FDOFMTaFFYA==" }, "ccount": { "version": "1.1.0", @@ -16877,9 +16901,9 @@ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" }, "fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" }, "fresh": { "version": "0.5.2", @@ -17972,6 +17996,11 @@ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" }, + "medium-zoom": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/medium-zoom/-/medium-zoom-1.0.8.tgz", + "integrity": "sha512-CjFVuFq/IfrdqesAXfg+hzlDKu6A2n80ZIq0Kl9kWjoHh9j1N9Uvk5X0/MmN0hOfm5F9YBswlClhcwnmtwz7gA==" + }, "memfs": { "version": "3.4.7", "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", @@ -18119,9 +18148,9 @@ } }, "node-fetch": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz", - "integrity": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "requires": { "whatwg-url": "^5.0.0" } @@ -18481,6 +18510,13 @@ } } }, + "plugin-image-zoom": { + "version": "git+ssh://git@github.com/flexanalytics/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de", + "from": "plugin-image-zoom@flexanalytics/plugin-image-zoom", + "requires": { + "medium-zoom": "^1.0.8" + } + }, "postcss": { "version": "8.4.27", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz", @@ -19207,9 +19243,9 @@ } }, "react-textarea-autosize": { - "version": "8.5.2", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.2.tgz", - "integrity": "sha512-uOkyjkEl0ByEK21eCJMHDGBAAd/BoFQBawYK5XItjAmCTeSbjxghd8qnt7nzsLYzidjnoObu6M26xts0YGKsGg==", + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz", + "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==", "requires": { "@babel/runtime": "^7.20.13", "use-composed-ref": "^1.3.0", @@ -19682,9 +19718,9 @@ } }, "search-insights": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.7.0.tgz", - "integrity": "sha512-GLbVaGgzYEKMvuJbHRhLi1qoBFnjXZGZ6l4LxOYPCp4lI2jDRB3jPU9/XNhMwv6kvnA9slTreq6pvK+b3o3aqg==", + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.9.0.tgz", + "integrity": "sha512-bkWW9nIHOFkLwjQ1xqVaMbjjO5vhP26ERsH9Y3pKr8imthofEFIxlnOabkmGcw6ksRj9jWidcI65vvjJH/nTGg==", "peer": true }, "section-matter": { @@ -20327,9 +20363,9 @@ "peer": true }, "ua-parser-js": { - "version": "1.0.35", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.35.tgz", - "integrity": "sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==" + "version": "1.0.37", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz", + "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" }, "unherit": { "version": "1.1.3", diff --git a/docs/package.json b/docs/package.json index c8d0df2c29..b0e7eefe18 100644 --- a/docs/package.json +++ b/docs/package.json @@ -20,6 +20,7 @@ "@docusaurus/preset-classic": "^2.4.3", "@mdx-js/react": "^1.6.22", "clsx": "^1.2.1", + "plugin-image-zoom": "github:flexanalytics/plugin-image-zoom", "react": "^17.0.2", "react-dom": "^17.0.2" }, diff --git a/docs/yarn.lock b/docs/yarn.lock index 2f71437619..383ab2d6ee 100644 --- a/docs/yarn.lock +++ b/docs/yarn.lock @@ -3,186 +3,164 @@ "@algolia/autocomplete-core@1.9.3": - version "1.9.3" - resolved "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz" - integrity sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw== + "integrity" "sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==" + "resolved" "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz" + "version" "1.9.3" dependencies: "@algolia/autocomplete-plugin-algolia-insights" "1.9.3" "@algolia/autocomplete-shared" "1.9.3" "@algolia/autocomplete-plugin-algolia-insights@1.9.3": - version "1.9.3" - resolved "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz" - integrity sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg== + "integrity" "sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==" + "resolved" "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz" + "version" "1.9.3" dependencies: "@algolia/autocomplete-shared" "1.9.3" "@algolia/autocomplete-preset-algolia@1.9.3": - version "1.9.3" - resolved "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz" - integrity sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA== + "integrity" "sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==" + "resolved" "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz" + "version" "1.9.3" dependencies: "@algolia/autocomplete-shared" "1.9.3" "@algolia/autocomplete-shared@1.9.3": - version "1.9.3" - resolved "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz" - integrity sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ== + "integrity" "sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==" + "resolved" "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz" + "version" "1.9.3" -"@algolia/cache-browser-local-storage@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.19.1.tgz" - integrity sha512-FYAZWcGsFTTaSAwj9Std8UML3Bu8dyWDncM7Ls8g+58UOe4XYdlgzXWbrIgjaguP63pCCbMoExKr61B+ztK3tw== +"@algolia/cache-browser-local-storage@4.20.0": + "integrity" "sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==" + "resolved" "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/cache-common" "4.19.1" + "@algolia/cache-common" "4.20.0" -"@algolia/cache-common@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.19.1.tgz" - integrity sha512-XGghi3l0qA38HiqdoUY+wvGyBsGvKZ6U3vTiMBT4hArhP3fOGLXpIINgMiiGjTe4FVlTa5a/7Zf2bwlIHfRqqg== +"@algolia/cache-common@4.20.0": + "integrity" "sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==" + "resolved" "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.20.0.tgz" + "version" "4.20.0" -"@algolia/cache-in-memory@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.19.1.tgz" - integrity sha512-+PDWL+XALGvIginigzu8oU6eWw+o76Z8zHbBovWYcrtWOEtinbl7a7UTt3x3lthv+wNuFr/YD1Gf+B+A9V8n5w== +"@algolia/cache-in-memory@4.20.0": + "integrity" "sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==" + "resolved" "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/cache-common" "4.19.1" + "@algolia/cache-common" "4.20.0" -"@algolia/client-account@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.19.1.tgz" - integrity sha512-Oy0ritA2k7AMxQ2JwNpfaEcgXEDgeyKu0V7E7xt/ZJRdXfEpZcwp9TOg4TJHC7Ia62gIeT2Y/ynzsxccPw92GA== +"@algolia/client-account@4.20.0": + "integrity" "sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==" + "resolved" "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/client-common" "4.19.1" - "@algolia/client-search" "4.19.1" - "@algolia/transporter" "4.19.1" + "@algolia/client-common" "4.20.0" + "@algolia/client-search" "4.20.0" + "@algolia/transporter" "4.20.0" -"@algolia/client-analytics@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.19.1.tgz" - integrity sha512-5QCq2zmgdZLIQhHqwl55ZvKVpLM3DNWjFI4T+bHr3rGu23ew2bLO4YtyxaZeChmDb85jUdPDouDlCumGfk6wOg== +"@algolia/client-analytics@4.20.0": + "integrity" "sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==" + "resolved" "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/client-common" "4.19.1" - "@algolia/client-search" "4.19.1" - "@algolia/requester-common" "4.19.1" - "@algolia/transporter" "4.19.1" + "@algolia/client-common" "4.20.0" + "@algolia/client-search" "4.20.0" + "@algolia/requester-common" "4.20.0" + "@algolia/transporter" "4.20.0" -"@algolia/client-common@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.19.1.tgz" - integrity sha512-3kAIVqTcPrjfS389KQvKzliC559x+BDRxtWamVJt8IVp7LGnjq+aVAXg4Xogkur1MUrScTZ59/AaUd5EdpyXgA== +"@algolia/client-common@4.20.0": + "integrity" "sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==" + "resolved" "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/requester-common" "4.19.1" - "@algolia/transporter" "4.19.1" + "@algolia/requester-common" "4.20.0" + "@algolia/transporter" "4.20.0" -"@algolia/client-personalization@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.19.1.tgz" - integrity sha512-8CWz4/H5FA+krm9HMw2HUQenizC/DxUtsI5oYC0Jxxyce1vsr8cb1aEiSJArQT6IzMynrERif1RVWLac1m36xw== +"@algolia/client-personalization@4.20.0": + "integrity" "sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==" + "resolved" "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/client-common" "4.19.1" - "@algolia/requester-common" "4.19.1" - "@algolia/transporter" "4.19.1" + "@algolia/client-common" "4.20.0" + "@algolia/requester-common" "4.20.0" + "@algolia/transporter" "4.20.0" -"@algolia/client-search@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.19.1.tgz" - integrity sha512-mBecfMFS4N+yK/p0ZbK53vrZbL6OtWMk8YmnOv1i0LXx4pelY8TFhqKoTit3NPVPwoSNN0vdSN9dTu1xr1XOVw== +"@algolia/client-search@>= 4.9.1 < 6", "@algolia/client-search@4.20.0": + "integrity" "sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==" + "resolved" "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/client-common" "4.19.1" - "@algolia/requester-common" "4.19.1" - "@algolia/transporter" "4.19.1" + "@algolia/client-common" "4.20.0" + "@algolia/requester-common" "4.20.0" + "@algolia/transporter" "4.20.0" "@algolia/events@^4.0.1": - version "4.0.1" - resolved "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz" - integrity sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ== + "integrity" "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==" + "resolved" "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz" + "version" "4.0.1" -"@algolia/logger-common@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.19.1.tgz" - integrity sha512-i6pLPZW/+/YXKis8gpmSiNk1lOmYCmRI6+x6d2Qk1OdfvX051nRVdalRbEcVTpSQX6FQAoyeaui0cUfLYW5Elw== +"@algolia/logger-common@4.20.0": + "integrity" "sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==" + "resolved" "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.20.0.tgz" + "version" "4.20.0" -"@algolia/logger-console@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.19.1.tgz" - integrity sha512-jj72k9GKb9W0c7TyC3cuZtTr0CngLBLmc8trzZlXdfvQiigpUdvTi1KoWIb2ZMcRBG7Tl8hSb81zEY3zI2RlXg== +"@algolia/logger-console@4.20.0": + "integrity" "sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==" + "resolved" "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/logger-common" "4.19.1" + "@algolia/logger-common" "4.20.0" -"@algolia/requester-browser-xhr@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.19.1.tgz" - integrity sha512-09K/+t7lptsweRTueHnSnmPqIxbHMowejAkn9XIcJMLdseS3zl8ObnS5GWea86mu3vy4+8H+ZBKkUN82Zsq/zg== +"@algolia/requester-browser-xhr@4.20.0": + "integrity" "sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==" + "resolved" "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/requester-common" "4.19.1" + "@algolia/requester-common" "4.20.0" -"@algolia/requester-common@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.19.1.tgz" - integrity sha512-BisRkcWVxrDzF1YPhAckmi2CFYK+jdMT60q10d7z3PX+w6fPPukxHRnZwooiTUrzFe50UBmLItGizWHP5bDzVQ== +"@algolia/requester-common@4.20.0": + "integrity" "sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==" + "resolved" "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.20.0.tgz" + "version" "4.20.0" -"@algolia/requester-node-http@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.19.1.tgz" - integrity sha512-6DK52DHviBHTG2BK/Vv2GIlEw7i+vxm7ypZW0Z7vybGCNDeWzADx+/TmxjkES2h15+FZOqVf/Ja677gePsVItA== +"@algolia/requester-node-http@4.20.0": + "integrity" "sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==" + "resolved" "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/requester-common" "4.19.1" + "@algolia/requester-common" "4.20.0" -"@algolia/transporter@4.19.1": - version "4.19.1" - resolved "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.19.1.tgz" - integrity sha512-nkpvPWbpuzxo1flEYqNIbGz7xhfhGOKGAZS7tzC+TELgEmi7z99qRyTfNSUlW7LZmB3ACdnqAo+9A9KFBENviQ== +"@algolia/transporter@4.20.0": + "integrity" "sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==" + "resolved" "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/cache-common" "4.19.1" - "@algolia/logger-common" "4.19.1" - "@algolia/requester-common" "4.19.1" + "@algolia/cache-common" "4.20.0" + "@algolia/logger-common" "4.20.0" + "@algolia/requester-common" "4.20.0" "@ampproject/remapping@^2.1.0": - version "2.1.2" - resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz" - integrity sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg== + "integrity" "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==" + "resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz" + "version" "2.1.2" dependencies: "@jridgewell/trace-mapping" "^0.3.0" "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.8.3": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz" - integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== + "integrity" "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==" + "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/highlight" "^7.18.6" "@babel/compat-data@^7.17.7", "@babel/compat-data@^7.18.8": - version "7.18.13" - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.13.tgz" - integrity sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw== + "integrity" "sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw==" + "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.13.tgz" + "version" "7.18.13" -"@babel/core@7.12.9": - version "7.12.9" - resolved "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz" - integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ== - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.5" - "@babel/helper-module-transforms" "^7.12.1" - "@babel/helpers" "^7.12.5" - "@babel/parser" "^7.12.7" - "@babel/template" "^7.12.7" - "@babel/traverse" "^7.12.9" - "@babel/types" "^7.12.7" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.1" - json5 "^2.1.2" - lodash "^4.17.19" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/core@^7.15.5", "@babel/core@^7.18.6": - version "7.18.13" - resolved "https://registry.npmjs.org/@babel/core/-/core-7.18.13.tgz" - integrity sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A== +"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.11.6", "@babel/core@^7.12.0", "@babel/core@^7.13.0", "@babel/core@^7.15.5", "@babel/core@^7.18.6", "@babel/core@^7.4.0-0": + "integrity" "sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==" + "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.18.13.tgz" + "version" "7.18.13" dependencies: "@ampproject/remapping" "^2.1.0" "@babel/code-frame" "^7.18.6" @@ -194,50 +172,72 @@ "@babel/template" "^7.18.10" "@babel/traverse" "^7.18.13" "@babel/types" "^7.18.13" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.1" - semver "^6.3.0" + "convert-source-map" "^1.7.0" + "debug" "^4.1.0" + "gensync" "^1.0.0-beta.2" + "json5" "^2.2.1" + "semver" "^6.3.0" + +"@babel/core@7.12.9": + "integrity" "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==" + "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz" + "version" "7.12.9" + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/generator" "^7.12.5" + "@babel/helper-module-transforms" "^7.12.1" + "@babel/helpers" "^7.12.5" + "@babel/parser" "^7.12.7" + "@babel/template" "^7.12.7" + "@babel/traverse" "^7.12.9" + "@babel/types" "^7.12.7" + "convert-source-map" "^1.7.0" + "debug" "^4.1.0" + "gensync" "^1.0.0-beta.1" + "json5" "^2.1.2" + "lodash" "^4.17.19" + "resolve" "^1.3.2" + "semver" "^5.4.1" + "source-map" "^0.5.0" "@babel/generator@^7.12.5", "@babel/generator@^7.18.13", "@babel/generator@^7.18.7": - version "7.18.13" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.18.13.tgz" - integrity sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ== + "integrity" "sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==" + "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.18.13.tgz" + "version" "7.18.13" dependencies: "@babel/types" "^7.18.13" "@jridgewell/gen-mapping" "^0.3.2" - jsesc "^2.5.1" + "jsesc" "^2.5.1" "@babel/helper-annotate-as-pure@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz" - integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== + "integrity" "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==" + "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/types" "^7.18.6" "@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz" - integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw== + "integrity" "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==" + "resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-explode-assignable-expression" "^7.18.6" "@babel/types" "^7.18.9" "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz" - integrity sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg== + "integrity" "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==" + "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/compat-data" "^7.18.8" "@babel/helper-validator-option" "^7.18.6" - browserslist "^4.20.2" - semver "^6.3.0" + "browserslist" "^4.20.2" + "semver" "^6.3.0" "@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.18.9": - version "7.18.13" - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.13.tgz" - integrity sha512-hDvXp+QYxSRL+23mpAlSGxHMDyIGChm0/AwTfTAAK5Ufe40nCsyNdaYCGuK91phn/fVu9kqayImRDkvNAgdrsA== + "integrity" "sha512-hDvXp+QYxSRL+23mpAlSGxHMDyIGChm0/AwTfTAAK5Ufe40nCsyNdaYCGuK91phn/fVu9kqayImRDkvNAgdrsA==" + "resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.13.tgz" + "version" "7.18.13" dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-environment-visitor" "^7.18.9" @@ -248,70 +248,70 @@ "@babel/helper-split-export-declaration" "^7.18.6" "@babel/helper-create-regexp-features-plugin@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz" - integrity sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A== + "integrity" "sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==" + "resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" - regexpu-core "^5.1.0" + "regexpu-core" "^5.1.0" "@babel/helper-define-polyfill-provider@^0.3.2": - version "0.3.2" - resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz" - integrity sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg== + "integrity" "sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==" + "resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz" + "version" "0.3.2" dependencies: "@babel/helper-compilation-targets" "^7.17.7" "@babel/helper-plugin-utils" "^7.16.7" - debug "^4.1.1" - lodash.debounce "^4.0.8" - resolve "^1.14.2" - semver "^6.1.2" + "debug" "^4.1.1" + "lodash.debounce" "^4.0.8" + "resolve" "^1.14.2" + "semver" "^6.1.2" "@babel/helper-environment-visitor@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz" - integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== + "integrity" "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" + "resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz" + "version" "7.18.9" "@babel/helper-explode-assignable-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz" - integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg== + "integrity" "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==" + "resolved" "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/types" "^7.18.6" "@babel/helper-function-name@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz" - integrity sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A== + "integrity" "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==" + "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/template" "^7.18.6" "@babel/types" "^7.18.9" "@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== + "integrity" "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==" + "resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/types" "^7.18.6" "@babel/helper-member-expression-to-functions@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz" - integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg== + "integrity" "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==" + "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/types" "^7.18.9" "@babel/helper-module-imports@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz" - integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== + "integrity" "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==" + "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/types" "^7.18.6" "@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz" - integrity sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g== + "integrity" "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==" + "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-module-imports" "^7.18.6" @@ -323,26 +323,26 @@ "@babel/types" "^7.18.9" "@babel/helper-optimise-call-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz" - integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== + "integrity" "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==" + "resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/types" "^7.18.6" -"@babel/helper-plugin-utils@7.10.4": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz" - integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== - "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz" - integrity sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w== + "integrity" "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" + "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz" + "version" "7.18.9" + +"@babel/helper-plugin-utils@7.10.4": + "integrity" "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz" + "version" "7.10.4" "@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz" - integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== + "integrity" "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==" + "resolved" "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-environment-visitor" "^7.18.9" @@ -350,9 +350,9 @@ "@babel/types" "^7.18.9" "@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz" - integrity sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ== + "integrity" "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-member-expression-to-functions" "^7.18.9" @@ -361,45 +361,45 @@ "@babel/types" "^7.18.9" "@babel/helper-simple-access@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz" - integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g== + "integrity" "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==" + "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/types" "^7.18.6" "@babel/helper-skip-transparent-expression-wrappers@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz" - integrity sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw== + "integrity" "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==" + "resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/types" "^7.18.9" "@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== + "integrity" "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==" + "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/types" "^7.18.6" "@babel/helper-string-parser@^7.18.10": - version "7.18.10" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz" - integrity sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw== + "integrity" "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==" + "resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz" + "version" "7.18.10" "@babel/helper-validator-identifier@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz" - integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g== + "integrity" "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" + "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz" + "version" "7.18.6" "@babel/helper-validator-option@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz" - integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== + "integrity" "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" + "resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz" + "version" "7.18.6" "@babel/helper-wrap-function@^7.18.9": - version "7.18.11" - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.11.tgz" - integrity sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w== + "integrity" "sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==" + "resolved" "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.11.tgz" + "version" "7.18.11" dependencies: "@babel/helper-function-name" "^7.18.9" "@babel/template" "^7.18.10" @@ -407,48 +407,48 @@ "@babel/types" "^7.18.10" "@babel/helpers@^7.12.5", "@babel/helpers@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz" - integrity sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ== + "integrity" "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==" + "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/template" "^7.18.6" "@babel/traverse" "^7.18.9" "@babel/types" "^7.18.9" "@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + "integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==" + "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" + "chalk" "^2.0.0" + "js-tokens" "^4.0.0" "@babel/parser@^7.12.7", "@babel/parser@^7.18.10", "@babel/parser@^7.18.13", "@babel/parser@^7.18.8": - version "7.18.13" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz" - integrity sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg== + "integrity" "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==" + "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz" + "version" "7.18.13" "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz" - integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== + "integrity" "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz" - integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg== + "integrity" "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" "@babel/plugin-proposal-optional-chaining" "^7.18.9" "@babel/plugin-proposal-async-generator-functions@^7.18.10": - version "7.18.10" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.10.tgz" - integrity sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew== + "integrity" "sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.10.tgz" + "version" "7.18.10" dependencies: "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-plugin-utils" "^7.18.9" @@ -456,83 +456,74 @@ "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-proposal-class-properties@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz" - integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== + "integrity" "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-proposal-class-static-block@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz" - integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw== + "integrity" "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-proposal-dynamic-import@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz" - integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== + "integrity" "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-proposal-export-namespace-from@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz" - integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== + "integrity" "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" "@babel/plugin-proposal-json-strings@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz" - integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== + "integrity" "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-proposal-logical-assignment-operators@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz" - integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q== + "integrity" "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz" - integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== + "integrity" "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" "@babel/plugin-proposal-numeric-separator@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz" - integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== + "integrity" "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-proposal-object-rest-spread@7.12.1": - version "7.12.1" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz" - integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-transform-parameters" "^7.12.1" - "@babel/plugin-proposal-object-rest-spread@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz" - integrity sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q== + "integrity" "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/compat-data" "^7.18.8" "@babel/helper-compilation-targets" "^7.18.9" @@ -540,35 +531,44 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.18.8" +"@babel/plugin-proposal-object-rest-spread@7.12.1": + "integrity" "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-transform-parameters" "^7.12.1" + "@babel/plugin-proposal-optional-catch-binding@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz" - integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== + "integrity" "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" "@babel/plugin-proposal-optional-chaining@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz" - integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w== + "integrity" "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-proposal-private-methods@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz" - integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== + "integrity" "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-proposal-private-property-in-object@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz" - integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== + "integrity" "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-create-class-features-plugin" "^7.18.6" @@ -576,173 +576,173 @@ "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz" - integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== + "integrity" "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" + "version" "7.8.4" dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-class-properties@^7.12.13": - version "7.12.13" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" + "version" "7.12.13" dependencies: "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-syntax-class-static-block@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" - integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + "integrity" "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" + "version" "7.14.5" dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + "integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" + "version" "7.8.3" dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + "integrity" "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" + "version" "7.8.3" dependencies: "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-import-assertions@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz" - integrity sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ== + "integrity" "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + "integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" + "version" "7.8.3" dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@7.12.1": - version "7.12.1" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz" - integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz" - integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== + "integrity" "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-syntax-jsx@7.12.1": + "integrity" "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" + "version" "7.10.4" dependencies: "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" + "version" "7.8.3" dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-numeric-separator@^7.10.4": - version "7.10.4" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" + "version" "7.10.4" dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-object-rest-spread@7.8.3", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== +"@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3", "@babel/plugin-syntax-object-rest-spread@7.8.3": + "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" + "version" "7.8.3" dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" + "version" "7.8.3" dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" + "version" "7.8.3" dependencies: "@babel/helper-plugin-utils" "^7.8.0" "@babel/plugin-syntax-private-property-in-object@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" - integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + "integrity" "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" + "version" "7.14.5" dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-top-level-await@^7.14.5": - version "7.14.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" + "version" "7.14.5" dependencies: "@babel/helper-plugin-utils" "^7.14.5" "@babel/plugin-syntax-typescript@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz" - integrity sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA== + "integrity" "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-arrow-functions@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz" - integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ== + "integrity" "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-async-to-generator@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz" - integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag== + "integrity" "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-module-imports" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-remap-async-to-generator" "^7.18.6" "@babel/plugin-transform-block-scoped-functions@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz" - integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== + "integrity" "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-block-scoping@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz" - integrity sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw== + "integrity" "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-transform-classes@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz" - integrity sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g== + "integrity" "sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-environment-visitor" "^7.18.9" @@ -751,175 +751,175 @@ "@babel/helper-plugin-utils" "^7.18.9" "@babel/helper-replace-supers" "^7.18.9" "@babel/helper-split-export-declaration" "^7.18.6" - globals "^11.1.0" + "globals" "^11.1.0" "@babel/plugin-transform-computed-properties@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz" - integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw== + "integrity" "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-transform-destructuring@^7.18.9": - version "7.18.13" - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz" - integrity sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow== + "integrity" "sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz" + "version" "7.18.13" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz" - integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== + "integrity" "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-duplicate-keys@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz" - integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== + "integrity" "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-transform-exponentiation-operator@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz" - integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== + "integrity" "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-for-of@^7.18.8": - version "7.18.8" - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz" - integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== + "integrity" "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz" + "version" "7.18.8" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-function-name@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz" - integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== + "integrity" "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-compilation-targets" "^7.18.9" "@babel/helper-function-name" "^7.18.9" "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-transform-literals@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz" - integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== + "integrity" "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-transform-member-expression-literals@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz" - integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== + "integrity" "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-modules-amd@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz" - integrity sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg== + "integrity" "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-module-transforms" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" - babel-plugin-dynamic-import-node "^2.3.3" + "babel-plugin-dynamic-import-node" "^2.3.3" "@babel/plugin-transform-modules-commonjs@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz" - integrity sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q== + "integrity" "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-module-transforms" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-simple-access" "^7.18.6" - babel-plugin-dynamic-import-node "^2.3.3" + "babel-plugin-dynamic-import-node" "^2.3.3" "@babel/plugin-transform-modules-systemjs@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz" - integrity sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A== + "integrity" "sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-hoist-variables" "^7.18.6" "@babel/helper-module-transforms" "^7.18.9" "@babel/helper-plugin-utils" "^7.18.9" "@babel/helper-validator-identifier" "^7.18.6" - babel-plugin-dynamic-import-node "^2.3.3" + "babel-plugin-dynamic-import-node" "^2.3.3" "@babel/plugin-transform-modules-umd@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz" - integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== + "integrity" "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-module-transforms" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-named-capturing-groups-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz" - integrity sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg== + "integrity" "sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-new-target@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz" - integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== + "integrity" "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-object-super@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz" - integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== + "integrity" "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-replace-supers" "^7.18.6" "@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.18.8": - version "7.18.8" - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz" - integrity sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg== + "integrity" "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz" + "version" "7.18.8" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-property-literals@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz" - integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== + "integrity" "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-react-constant-elements@^7.14.5": - version "7.17.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.17.6.tgz" - integrity sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw== + "integrity" "sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.17.6.tgz" + "version" "7.17.6" dependencies: "@babel/helper-plugin-utils" "^7.16.7" "@babel/plugin-transform-react-display-name@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz" - integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA== + "integrity" "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-react-jsx-development@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz" - integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA== + "integrity" "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/plugin-transform-react-jsx" "^7.18.6" "@babel/plugin-transform-react-jsx@^7.18.6": - version "7.18.10" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.10.tgz" - integrity sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A== + "integrity" "sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.10.tgz" + "version" "7.18.10" dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-module-imports" "^7.18.6" @@ -928,104 +928,104 @@ "@babel/types" "^7.18.10" "@babel/plugin-transform-react-pure-annotations@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz" - integrity sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ== + "integrity" "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-regenerator@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz" - integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== + "integrity" "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" - regenerator-transform "^0.15.0" + "regenerator-transform" "^0.15.0" "@babel/plugin-transform-reserved-words@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz" - integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== + "integrity" "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-runtime@^7.18.6": - version "7.18.10" - resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.10.tgz" - integrity sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ== + "integrity" "sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.10.tgz" + "version" "7.18.10" dependencies: "@babel/helper-module-imports" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.9" - babel-plugin-polyfill-corejs2 "^0.3.2" - babel-plugin-polyfill-corejs3 "^0.5.3" - babel-plugin-polyfill-regenerator "^0.4.0" - semver "^6.3.0" + "babel-plugin-polyfill-corejs2" "^0.3.2" + "babel-plugin-polyfill-corejs3" "^0.5.3" + "babel-plugin-polyfill-regenerator" "^0.4.0" + "semver" "^6.3.0" "@babel/plugin-transform-shorthand-properties@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz" - integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== + "integrity" "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-spread@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz" - integrity sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA== + "integrity" "sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" "@babel/plugin-transform-sticky-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz" - integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== + "integrity" "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-template-literals@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz" - integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== + "integrity" "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-transform-typeof-symbol@^7.18.9": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz" - integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== + "integrity" "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz" + "version" "7.18.9" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-transform-typescript@^7.18.6": - version "7.18.12" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.12.tgz" - integrity sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w== + "integrity" "sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.12.tgz" + "version" "7.18.12" dependencies: "@babel/helper-create-class-features-plugin" "^7.18.9" "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-syntax-typescript" "^7.18.6" "@babel/plugin-transform-unicode-escapes@^7.18.10": - version "7.18.10" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz" - integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ== + "integrity" "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz" + "version" "7.18.10" dependencies: "@babel/helper-plugin-utils" "^7.18.9" "@babel/plugin-transform-unicode-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz" - integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== + "integrity" "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" "@babel/preset-env@^7.15.6", "@babel/preset-env@^7.18.6": - version "7.18.10" - resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.10.tgz" - integrity sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA== + "integrity" "sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==" + "resolved" "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.10.tgz" + "version" "7.18.10" dependencies: "@babel/compat-data" "^7.18.8" "@babel/helper-compilation-targets" "^7.18.9" @@ -1097,27 +1097,27 @@ "@babel/plugin-transform-unicode-regex" "^7.18.6" "@babel/preset-modules" "^0.1.5" "@babel/types" "^7.18.10" - babel-plugin-polyfill-corejs2 "^0.3.2" - babel-plugin-polyfill-corejs3 "^0.5.3" - babel-plugin-polyfill-regenerator "^0.4.0" - core-js-compat "^3.22.1" - semver "^6.3.0" + "babel-plugin-polyfill-corejs2" "^0.3.2" + "babel-plugin-polyfill-corejs3" "^0.5.3" + "babel-plugin-polyfill-regenerator" "^0.4.0" + "core-js-compat" "^3.22.1" + "semver" "^6.3.0" "@babel/preset-modules@^0.1.5": - version "0.1.5" - resolved "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz" - integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== + "integrity" "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==" + "resolved" "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz" + "version" "0.1.5" dependencies: "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" "@babel/plugin-transform-dotall-regex" "^7.4.4" "@babel/types" "^7.4.4" - esutils "^2.0.2" + "esutils" "^2.0.2" "@babel/preset-react@^7.14.5", "@babel/preset-react@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz" - integrity sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg== + "integrity" "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==" + "resolved" "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-validator-option" "^7.18.6" @@ -1127,42 +1127,42 @@ "@babel/plugin-transform-react-pure-annotations" "^7.18.6" "@babel/preset-typescript@^7.15.0", "@babel/preset-typescript@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz" - integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ== + "integrity" "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==" + "resolved" "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz" + "version" "7.18.6" dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-validator-option" "^7.18.6" "@babel/plugin-transform-typescript" "^7.18.6" "@babel/runtime-corejs3@^7.18.6": - version "7.18.9" - resolved "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz" - integrity sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A== + "integrity" "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==" + "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz" + "version" "7.18.9" dependencies: - core-js-pure "^3.20.2" - regenerator-runtime "^0.13.4" + "core-js-pure" "^3.20.2" + "regenerator-runtime" "^0.13.4" "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.6", "@babel/runtime@^7.20.13", "@babel/runtime@^7.8.4": - version "7.22.6" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz" - integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ== + "integrity" "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz" + "version" "7.22.6" dependencies: - regenerator-runtime "^0.13.11" + "regenerator-runtime" "^0.13.11" "@babel/template@^7.12.7", "@babel/template@^7.18.10", "@babel/template@^7.18.6": - version "7.18.10" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz" - integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== + "integrity" "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==" + "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz" + "version" "7.18.10" dependencies: "@babel/code-frame" "^7.18.6" "@babel/parser" "^7.18.10" "@babel/types" "^7.18.10" "@babel/traverse@^7.12.9", "@babel/traverse@^7.18.11", "@babel/traverse@^7.18.13", "@babel/traverse@^7.18.8", "@babel/traverse@^7.18.9": - version "7.18.13" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.13.tgz" - integrity sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA== + "integrity" "sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA==" + "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.13.tgz" + "version" "7.18.13" dependencies: "@babel/code-frame" "^7.18.6" "@babel/generator" "^7.18.13" @@ -1172,42 +1172,42 @@ "@babel/helper-split-export-declaration" "^7.18.6" "@babel/parser" "^7.18.13" "@babel/types" "^7.18.13" - debug "^4.1.0" - globals "^11.1.0" + "debug" "^4.1.0" + "globals" "^11.1.0" "@babel/types@^7.12.7", "@babel/types@^7.15.6", "@babel/types@^7.18.10", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.4.4": - version "7.18.13" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.18.13.tgz" - integrity sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ== + "integrity" "sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ==" + "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.18.13.tgz" + "version" "7.18.13" dependencies: "@babel/helper-string-parser" "^7.18.10" "@babel/helper-validator-identifier" "^7.18.6" - to-fast-properties "^2.0.0" + "to-fast-properties" "^2.0.0" "@colors/colors@1.5.0": - version "1.5.0" - resolved "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz" - integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== + "integrity" "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" + "resolved" "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz" + "version" "1.5.0" -"@docsearch/css@3.5.1": - version "3.5.1" - resolved "https://registry.npmjs.org/@docsearch/css/-/css-3.5.1.tgz" - integrity sha512-2Pu9HDg/uP/IT10rbQ+4OrTQuxIWdKVUEdcw9/w7kZJv9NeHS6skJx1xuRiFyoGKwAzcHXnLp7csE99sj+O1YA== +"@docsearch/css@3.5.2": + "integrity" "sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==" + "resolved" "https://registry.npmjs.org/@docsearch/css/-/css-3.5.2.tgz" + "version" "3.5.2" "@docsearch/react@^3.1.1": - version "3.5.1" - resolved "https://registry.npmjs.org/@docsearch/react/-/react-3.5.1.tgz" - integrity sha512-t5mEODdLzZq4PTFAm/dvqcvZFdPDMdfPE5rJS5SC8OUq9mPzxEy6b+9THIqNM9P0ocCb4UC5jqBrxKclnuIbzQ== + "integrity" "sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==" + "resolved" "https://registry.npmjs.org/@docsearch/react/-/react-3.5.2.tgz" + "version" "3.5.2" dependencies: "@algolia/autocomplete-core" "1.9.3" "@algolia/autocomplete-preset-algolia" "1.9.3" - "@docsearch/css" "3.5.1" - algoliasearch "^4.0.0" + "@docsearch/css" "3.5.2" + "algoliasearch" "^4.19.1" -"@docusaurus/core@2.4.3", "@docusaurus/core@^2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-2.4.3.tgz#d86624901386fd8164ce4bff9cc7f16fde57f523" - integrity sha512-dWH5P7cgeNSIg9ufReX6gaCl/TmrGKD38Orbwuz05WPhAQtFXHd5B8Qym1TiXfvUNvwoYKkAJOJuGe8ou0Z7PA== +"@docusaurus/core@^2.4.3", "@docusaurus/core@2.4.3": + "integrity" "sha512-dWH5P7cgeNSIg9ufReX6gaCl/TmrGKD38Orbwuz05WPhAQtFXHd5B8Qym1TiXfvUNvwoYKkAJOJuGe8ou0Z7PA==" + "resolved" "https://registry.npmjs.org/@docusaurus/core/-/core-2.4.3.tgz" + "version" "2.4.3" dependencies: "@babel/core" "^7.18.6" "@babel/generator" "^7.18.7" @@ -1228,104 +1228,104 @@ "@docusaurus/utils-validation" "2.4.3" "@slorber/static-site-generator-webpack-plugin" "^4.0.7" "@svgr/webpack" "^6.2.1" - autoprefixer "^10.4.7" - babel-loader "^8.2.5" - babel-plugin-dynamic-import-node "^2.3.3" - boxen "^6.2.1" - chalk "^4.1.2" - chokidar "^3.5.3" - clean-css "^5.3.0" - cli-table3 "^0.6.2" - combine-promises "^1.1.0" - commander "^5.1.0" - copy-webpack-plugin "^11.0.0" - core-js "^3.23.3" - css-loader "^6.7.1" - css-minimizer-webpack-plugin "^4.0.0" - cssnano "^5.1.12" - del "^6.1.1" - detect-port "^1.3.0" - escape-html "^1.0.3" - eta "^2.0.0" - file-loader "^6.2.0" - fs-extra "^10.1.0" - html-minifier-terser "^6.1.0" - html-tags "^3.2.0" - html-webpack-plugin "^5.5.0" - import-fresh "^3.3.0" - leven "^3.1.0" - lodash "^4.17.21" - mini-css-extract-plugin "^2.6.1" - postcss "^8.4.14" - postcss-loader "^7.0.0" - prompts "^2.4.2" - react-dev-utils "^12.0.1" - react-helmet-async "^1.3.0" - react-loadable "npm:@docusaurus/react-loadable@5.5.2" - react-loadable-ssr-addon-v5-slorber "^1.0.1" - react-router "^5.3.3" - react-router-config "^5.1.1" - react-router-dom "^5.3.3" - rtl-detect "^1.0.4" - semver "^7.3.7" - serve-handler "^6.1.3" - shelljs "^0.8.5" - terser-webpack-plugin "^5.3.3" - tslib "^2.4.0" - update-notifier "^5.1.0" - url-loader "^4.1.1" - wait-on "^6.0.1" - webpack "^5.73.0" - webpack-bundle-analyzer "^4.5.0" - webpack-dev-server "^4.9.3" - webpack-merge "^5.8.0" - webpackbar "^5.0.2" + "autoprefixer" "^10.4.7" + "babel-loader" "^8.2.5" + "babel-plugin-dynamic-import-node" "^2.3.3" + "boxen" "^6.2.1" + "chalk" "^4.1.2" + "chokidar" "^3.5.3" + "clean-css" "^5.3.0" + "cli-table3" "^0.6.2" + "combine-promises" "^1.1.0" + "commander" "^5.1.0" + "copy-webpack-plugin" "^11.0.0" + "core-js" "^3.23.3" + "css-loader" "^6.7.1" + "css-minimizer-webpack-plugin" "^4.0.0" + "cssnano" "^5.1.12" + "del" "^6.1.1" + "detect-port" "^1.3.0" + "escape-html" "^1.0.3" + "eta" "^2.0.0" + "file-loader" "^6.2.0" + "fs-extra" "^10.1.0" + "html-minifier-terser" "^6.1.0" + "html-tags" "^3.2.0" + "html-webpack-plugin" "^5.5.0" + "import-fresh" "^3.3.0" + "leven" "^3.1.0" + "lodash" "^4.17.21" + "mini-css-extract-plugin" "^2.6.1" + "postcss" "^8.4.14" + "postcss-loader" "^7.0.0" + "prompts" "^2.4.2" + "react-dev-utils" "^12.0.1" + "react-helmet-async" "^1.3.0" + "react-loadable" "npm:@docusaurus/react-loadable@5.5.2" + "react-loadable-ssr-addon-v5-slorber" "^1.0.1" + "react-router" "^5.3.3" + "react-router-config" "^5.1.1" + "react-router-dom" "^5.3.3" + "rtl-detect" "^1.0.4" + "semver" "^7.3.7" + "serve-handler" "^6.1.3" + "shelljs" "^0.8.5" + "terser-webpack-plugin" "^5.3.3" + "tslib" "^2.4.0" + "update-notifier" "^5.1.0" + "url-loader" "^4.1.1" + "wait-on" "^6.0.1" + "webpack" "^5.73.0" + "webpack-bundle-analyzer" "^4.5.0" + "webpack-dev-server" "^4.9.3" + "webpack-merge" "^5.8.0" + "webpackbar" "^5.0.2" "@docusaurus/cssnano-preset@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/cssnano-preset/-/cssnano-preset-2.4.3.tgz#1d7e833c41ce240fcc2812a2ac27f7b862f32de0" - integrity sha512-ZvGSRCi7z9wLnZrXNPG6DmVPHdKGd8dIn9pYbEOFiYihfv4uDR3UtxogmKf+rT8ZlKFf5Lqne8E8nt08zNM8CA== + "integrity" "sha512-ZvGSRCi7z9wLnZrXNPG6DmVPHdKGd8dIn9pYbEOFiYihfv4uDR3UtxogmKf+rT8ZlKFf5Lqne8E8nt08zNM8CA==" + "resolved" "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-2.4.3.tgz" + "version" "2.4.3" dependencies: - cssnano-preset-advanced "^5.3.8" - postcss "^8.4.14" - postcss-sort-media-queries "^4.2.1" - tslib "^2.4.0" + "cssnano-preset-advanced" "^5.3.8" + "postcss" "^8.4.14" + "postcss-sort-media-queries" "^4.2.1" + "tslib" "^2.4.0" "@docusaurus/logger@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/logger/-/logger-2.4.3.tgz#518bbc965fb4ebe8f1d0b14e5f4161607552d34c" - integrity sha512-Zxws7r3yLufk9xM1zq9ged0YHs65mlRmtsobnFkdZTxWXdTYlWWLWdKyNKAsVC+D7zg+pv2fGbyabdOnyZOM3w== + "integrity" "sha512-Zxws7r3yLufk9xM1zq9ged0YHs65mlRmtsobnFkdZTxWXdTYlWWLWdKyNKAsVC+D7zg+pv2fGbyabdOnyZOM3w==" + "resolved" "https://registry.npmjs.org/@docusaurus/logger/-/logger-2.4.3.tgz" + "version" "2.4.3" dependencies: - chalk "^4.1.2" - tslib "^2.4.0" + "chalk" "^4.1.2" + "tslib" "^2.4.0" "@docusaurus/mdx-loader@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/mdx-loader/-/mdx-loader-2.4.3.tgz#e8ff37f30a060eaa97b8121c135f74cb531a4a3e" - integrity sha512-b1+fDnWtl3GiqkL0BRjYtc94FZrcDDBV1j8446+4tptB9BAOlePwG2p/pK6vGvfL53lkOsszXMghr2g67M0vCw== + "integrity" "sha512-b1+fDnWtl3GiqkL0BRjYtc94FZrcDDBV1j8446+4tptB9BAOlePwG2p/pK6vGvfL53lkOsszXMghr2g67M0vCw==" + "resolved" "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-2.4.3.tgz" + "version" "2.4.3" dependencies: "@babel/parser" "^7.18.8" "@babel/traverse" "^7.18.8" "@docusaurus/logger" "2.4.3" "@docusaurus/utils" "2.4.3" "@mdx-js/mdx" "^1.6.22" - escape-html "^1.0.3" - file-loader "^6.2.0" - fs-extra "^10.1.0" - image-size "^1.0.1" - mdast-util-to-string "^2.0.0" - remark-emoji "^2.2.0" - stringify-object "^3.3.0" - tslib "^2.4.0" - unified "^9.2.2" - unist-util-visit "^2.0.3" - url-loader "^4.1.1" - webpack "^5.73.0" + "escape-html" "^1.0.3" + "file-loader" "^6.2.0" + "fs-extra" "^10.1.0" + "image-size" "^1.0.1" + "mdast-util-to-string" "^2.0.0" + "remark-emoji" "^2.2.0" + "stringify-object" "^3.3.0" + "tslib" "^2.4.0" + "unified" "^9.2.2" + "unist-util-visit" "^2.0.3" + "url-loader" "^4.1.1" + "webpack" "^5.73.0" "@docusaurus/module-type-aliases@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/module-type-aliases/-/module-type-aliases-2.4.3.tgz#d08ef67e4151e02f352a2836bcf9ecde3b9c56ac" - integrity sha512-cwkBkt1UCiduuvEAo7XZY01dJfRn7UR/75mBgOdb1hKknhrabJZ8YH+7savd/y9kLExPyrhe0QwdS9GuzsRRIA== + "integrity" "sha512-cwkBkt1UCiduuvEAo7XZY01dJfRn7UR/75mBgOdb1hKknhrabJZ8YH+7savd/y9kLExPyrhe0QwdS9GuzsRRIA==" + "resolved" "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/react-loadable" "5.5.2" "@docusaurus/types" "2.4.3" @@ -1333,13 +1333,13 @@ "@types/react" "*" "@types/react-router-config" "*" "@types/react-router-dom" "*" - react-helmet-async "*" - react-loadable "npm:@docusaurus/react-loadable@5.5.2" + "react-helmet-async" "*" + "react-loadable" "npm:@docusaurus/react-loadable@5.5.2" "@docusaurus/plugin-content-blog@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.4.3.tgz#6473b974acab98e967414d8bbb0d37e0cedcea14" - integrity sha512-PVhypqaA0t98zVDpOeTqWUTvRqCEjJubtfFUQ7zJNYdbYTbS/E/ytq6zbLVsN/dImvemtO/5JQgjLxsh8XLo8Q== + "integrity" "sha512-PVhypqaA0t98zVDpOeTqWUTvRqCEjJubtfFUQ7zJNYdbYTbS/E/ytq6zbLVsN/dImvemtO/5JQgjLxsh8XLo8Q==" + "resolved" "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/core" "2.4.3" "@docusaurus/logger" "2.4.3" @@ -1348,20 +1348,20 @@ "@docusaurus/utils" "2.4.3" "@docusaurus/utils-common" "2.4.3" "@docusaurus/utils-validation" "2.4.3" - cheerio "^1.0.0-rc.12" - feed "^4.2.2" - fs-extra "^10.1.0" - lodash "^4.17.21" - reading-time "^1.5.0" - tslib "^2.4.0" - unist-util-visit "^2.0.3" - utility-types "^3.10.0" - webpack "^5.73.0" + "cheerio" "^1.0.0-rc.12" + "feed" "^4.2.2" + "fs-extra" "^10.1.0" + "lodash" "^4.17.21" + "reading-time" "^1.5.0" + "tslib" "^2.4.0" + "unist-util-visit" "^2.0.3" + "utility-types" "^3.10.0" + "webpack" "^5.73.0" "@docusaurus/plugin-content-docs@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.4.3.tgz#aa224c0512351e81807adf778ca59fd9cd136973" - integrity sha512-N7Po2LSH6UejQhzTCsvuX5NOzlC+HiXOVvofnEPj0WhMu1etpLEXE6a4aTxrtg95lQ5kf0xUIdjX9sh3d3G76A== + "integrity" "sha512-N7Po2LSH6UejQhzTCsvuX5NOzlC+HiXOVvofnEPj0WhMu1etpLEXE6a4aTxrtg95lQ5kf0xUIdjX9sh3d3G76A==" + "resolved" "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/core" "2.4.3" "@docusaurus/logger" "2.4.3" @@ -1371,75 +1371,75 @@ "@docusaurus/utils" "2.4.3" "@docusaurus/utils-validation" "2.4.3" "@types/react-router-config" "^5.0.6" - combine-promises "^1.1.0" - fs-extra "^10.1.0" - import-fresh "^3.3.0" - js-yaml "^4.1.0" - lodash "^4.17.21" - tslib "^2.4.0" - utility-types "^3.10.0" - webpack "^5.73.0" + "combine-promises" "^1.1.0" + "fs-extra" "^10.1.0" + "import-fresh" "^3.3.0" + "js-yaml" "^4.1.0" + "lodash" "^4.17.21" + "tslib" "^2.4.0" + "utility-types" "^3.10.0" + "webpack" "^5.73.0" "@docusaurus/plugin-content-pages@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.4.3.tgz#7f285e718b53da8c8d0101e70840c75b9c0a1ac0" - integrity sha512-txtDVz7y3zGk67q0HjG0gRttVPodkHqE0bpJ+7dOaTH40CQFLSh7+aBeGnPOTl+oCPG+hxkim4SndqPqXjQ8Bg== + "integrity" "sha512-txtDVz7y3zGk67q0HjG0gRttVPodkHqE0bpJ+7dOaTH40CQFLSh7+aBeGnPOTl+oCPG+hxkim4SndqPqXjQ8Bg==" + "resolved" "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/core" "2.4.3" "@docusaurus/mdx-loader" "2.4.3" "@docusaurus/types" "2.4.3" "@docusaurus/utils" "2.4.3" "@docusaurus/utils-validation" "2.4.3" - fs-extra "^10.1.0" - tslib "^2.4.0" - webpack "^5.73.0" + "fs-extra" "^10.1.0" + "tslib" "^2.4.0" + "webpack" "^5.73.0" "@docusaurus/plugin-debug@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-debug/-/plugin-debug-2.4.3.tgz#2f90eb0c9286a9f225444e3a88315676fe02c245" - integrity sha512-LkUbuq3zCmINlFb+gAd4ZvYr+bPAzMC0hwND4F7V9bZ852dCX8YoWyovVUBKq4er1XsOwSQaHmNGtObtn8Av8Q== + "integrity" "sha512-LkUbuq3zCmINlFb+gAd4ZvYr+bPAzMC0hwND4F7V9bZ852dCX8YoWyovVUBKq4er1XsOwSQaHmNGtObtn8Av8Q==" + "resolved" "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/core" "2.4.3" "@docusaurus/types" "2.4.3" "@docusaurus/utils" "2.4.3" - fs-extra "^10.1.0" - react-json-view "^1.21.3" - tslib "^2.4.0" + "fs-extra" "^10.1.0" + "react-json-view" "^1.21.3" + "tslib" "^2.4.0" "@docusaurus/plugin-google-analytics@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.4.3.tgz#0d19993136ade6f7a7741251b4f617400d92ab45" - integrity sha512-KzBV3k8lDkWOhg/oYGxlK5o9bOwX7KpPc/FTWoB+SfKhlHfhq7qcQdMi1elAaVEIop8tgK6gD1E58Q+XC6otSQ== + "integrity" "sha512-KzBV3k8lDkWOhg/oYGxlK5o9bOwX7KpPc/FTWoB+SfKhlHfhq7qcQdMi1elAaVEIop8tgK6gD1E58Q+XC6otSQ==" + "resolved" "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/core" "2.4.3" "@docusaurus/types" "2.4.3" "@docusaurus/utils-validation" "2.4.3" - tslib "^2.4.0" + "tslib" "^2.4.0" -"@docusaurus/plugin-google-gtag@2.4.3", "@docusaurus/plugin-google-gtag@^2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.4.3.tgz#e1a80b0696771b488562e5b60eff21c9932d9e1c" - integrity sha512-5FMg0rT7sDy4i9AGsvJC71MQrqQZwgLNdDetLEGDHLfSHLvJhQbTCUGbGXknUgWXQJckcV/AILYeJy+HhxeIFA== +"@docusaurus/plugin-google-gtag@^2.4.3", "@docusaurus/plugin-google-gtag@2.4.3": + "integrity" "sha512-5FMg0rT7sDy4i9AGsvJC71MQrqQZwgLNdDetLEGDHLfSHLvJhQbTCUGbGXknUgWXQJckcV/AILYeJy+HhxeIFA==" + "resolved" "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/core" "2.4.3" "@docusaurus/types" "2.4.3" "@docusaurus/utils-validation" "2.4.3" - tslib "^2.4.0" + "tslib" "^2.4.0" "@docusaurus/plugin-google-tag-manager@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-2.4.3.tgz#e41fbf79b0ffc2de1cc4013eb77798cff0ad98e3" - integrity sha512-1jTzp71yDGuQiX9Bi0pVp3alArV0LSnHXempvQTxwCGAEzUWWaBg4d8pocAlTpbP9aULQQqhgzrs8hgTRPOM0A== + "integrity" "sha512-1jTzp71yDGuQiX9Bi0pVp3alArV0LSnHXempvQTxwCGAEzUWWaBg4d8pocAlTpbP9aULQQqhgzrs8hgTRPOM0A==" + "resolved" "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/core" "2.4.3" "@docusaurus/types" "2.4.3" "@docusaurus/utils-validation" "2.4.3" - tslib "^2.4.0" + "tslib" "^2.4.0" -"@docusaurus/plugin-sitemap@2.4.3", "@docusaurus/plugin-sitemap@^2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.4.3.tgz#1b3930900a8f89670ce7e8f83fb4730cd3298c32" - integrity sha512-LRQYrK1oH1rNfr4YvWBmRzTL0LN9UAPxBbghgeFRBm5yloF6P+zv1tm2pe2hQTX/QP5bSKdnajCvfnScgKXMZQ== +"@docusaurus/plugin-sitemap@^2.4.3", "@docusaurus/plugin-sitemap@2.4.3": + "integrity" "sha512-LRQYrK1oH1rNfr4YvWBmRzTL0LN9UAPxBbghgeFRBm5yloF6P+zv1tm2pe2hQTX/QP5bSKdnajCvfnScgKXMZQ==" + "resolved" "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/core" "2.4.3" "@docusaurus/logger" "2.4.3" @@ -1447,14 +1447,14 @@ "@docusaurus/utils" "2.4.3" "@docusaurus/utils-common" "2.4.3" "@docusaurus/utils-validation" "2.4.3" - fs-extra "^10.1.0" - sitemap "^7.1.1" - tslib "^2.4.0" + "fs-extra" "^10.1.0" + "sitemap" "^7.1.1" + "tslib" "^2.4.0" "@docusaurus/preset-classic@^2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/preset-classic/-/preset-classic-2.4.3.tgz#074c57ebf29fa43d23bd1c8ce691226f542bc262" - integrity sha512-tRyMliepY11Ym6hB1rAFSNGwQDpmszvWYJvlK1E+md4SW8i6ylNHtpZjaYFff9Mdk3i/Pg8ItQq9P0daOJAvQw== + "integrity" "sha512-tRyMliepY11Ym6hB1rAFSNGwQDpmszvWYJvlK1E+md4SW8i6ylNHtpZjaYFff9Mdk3i/Pg8ItQq9P0daOJAvQw==" + "resolved" "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/core" "2.4.3" "@docusaurus/plugin-content-blog" "2.4.3" @@ -1470,18 +1470,18 @@ "@docusaurus/theme-search-algolia" "2.4.3" "@docusaurus/types" "2.4.3" -"@docusaurus/react-loadable@5.5.2", "react-loadable@npm:@docusaurus/react-loadable@5.5.2": - version "5.5.2" - resolved "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz" - integrity sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ== +"@docusaurus/react-loadable@5.5.2": + "integrity" "sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==" + "resolved" "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz" + "version" "5.5.2" dependencies: "@types/react" "*" - prop-types "^15.6.2" + "prop-types" "^15.6.2" "@docusaurus/theme-classic@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-classic/-/theme-classic-2.4.3.tgz#29360f2eb03a0e1686eb19668633ef313970ee8f" - integrity sha512-QKRAJPSGPfDY2yCiPMIVyr+MqwZCIV2lxNzqbyUW0YkrlmdzzP3WuQJPMGLCjWgQp/5c9kpWMvMxjhpZx1R32Q== + "integrity" "sha512-QKRAJPSGPfDY2yCiPMIVyr+MqwZCIV2lxNzqbyUW0YkrlmdzzP3WuQJPMGLCjWgQp/5c9kpWMvMxjhpZx1R32Q==" + "resolved" "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/core" "2.4.3" "@docusaurus/mdx-loader" "2.4.3" @@ -1496,23 +1496,23 @@ "@docusaurus/utils-common" "2.4.3" "@docusaurus/utils-validation" "2.4.3" "@mdx-js/react" "^1.6.22" - clsx "^1.2.1" - copy-text-to-clipboard "^3.0.1" - infima "0.2.0-alpha.43" - lodash "^4.17.21" - nprogress "^0.2.0" - postcss "^8.4.14" - prism-react-renderer "^1.3.5" - prismjs "^1.28.0" - react-router-dom "^5.3.3" - rtlcss "^3.5.0" - tslib "^2.4.0" - utility-types "^3.10.0" + "clsx" "^1.2.1" + "copy-text-to-clipboard" "^3.0.1" + "infima" "0.2.0-alpha.43" + "lodash" "^4.17.21" + "nprogress" "^0.2.0" + "postcss" "^8.4.14" + "prism-react-renderer" "^1.3.5" + "prismjs" "^1.28.0" + "react-router-dom" "^5.3.3" + "rtlcss" "^3.5.0" + "tslib" "^2.4.0" + "utility-types" "^3.10.0" "@docusaurus/theme-common@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-common/-/theme-common-2.4.3.tgz#bb31d70b6b67d0bdef9baa343192dcec49946a2e" - integrity sha512-7KaDJBXKBVGXw5WOVt84FtN8czGWhM0lbyWEZXGp8AFfL6sZQfRTluFp4QriR97qwzSyOfQb+nzcDZZU4tezUw== + "integrity" "sha512-7KaDJBXKBVGXw5WOVt84FtN8czGWhM0lbyWEZXGp8AFfL6sZQfRTluFp4QriR97qwzSyOfQb+nzcDZZU4tezUw==" + "resolved" "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/mdx-loader" "2.4.3" "@docusaurus/module-type-aliases" "2.4.3" @@ -1524,17 +1524,17 @@ "@types/history" "^4.7.11" "@types/react" "*" "@types/react-router-config" "*" - clsx "^1.2.1" - parse-numeric-range "^1.3.0" - prism-react-renderer "^1.3.5" - tslib "^2.4.0" - use-sync-external-store "^1.2.0" - utility-types "^3.10.0" + "clsx" "^1.2.1" + "parse-numeric-range" "^1.3.0" + "prism-react-renderer" "^1.3.5" + "tslib" "^2.4.0" + "use-sync-external-store" "^1.2.0" + "utility-types" "^3.10.0" "@docusaurus/theme-search-algolia@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.4.3.tgz#32d4cbefc3deba4112068fbdb0bde11ac51ece53" - integrity sha512-jziq4f6YVUB5hZOB85ELATwnxBz/RmSLD3ksGQOLDPKVzat4pmI8tddNWtriPpxR04BNT+ZfpPUMFkNFetSW1Q== + "integrity" "sha512-jziq4f6YVUB5hZOB85ELATwnxBz/RmSLD3ksGQOLDPKVzat4pmI8tddNWtriPpxR04BNT+ZfpPUMFkNFetSW1Q==" + "resolved" "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docsearch/react" "^3.1.1" "@docusaurus/core" "2.4.3" @@ -1544,270 +1544,270 @@ "@docusaurus/theme-translations" "2.4.3" "@docusaurus/utils" "2.4.3" "@docusaurus/utils-validation" "2.4.3" - algoliasearch "^4.13.1" - algoliasearch-helper "^3.10.0" - clsx "^1.2.1" - eta "^2.0.0" - fs-extra "^10.1.0" - lodash "^4.17.21" - tslib "^2.4.0" - utility-types "^3.10.0" + "algoliasearch" "^4.13.1" + "algoliasearch-helper" "^3.10.0" + "clsx" "^1.2.1" + "eta" "^2.0.0" + "fs-extra" "^10.1.0" + "lodash" "^4.17.21" + "tslib" "^2.4.0" + "utility-types" "^3.10.0" "@docusaurus/theme-translations@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-2.4.3.tgz#91ac73fc49b8c652b7a54e88b679af57d6ac6102" - integrity sha512-H4D+lbZbjbKNS/Zw1Lel64PioUAIT3cLYYJLUf3KkuO/oc9e0QCVhIYVtUI2SfBCF2NNdlyhBDQEEMygsCedIg== + "integrity" "sha512-H4D+lbZbjbKNS/Zw1Lel64PioUAIT3cLYYJLUf3KkuO/oc9e0QCVhIYVtUI2SfBCF2NNdlyhBDQEEMygsCedIg==" + "resolved" "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-2.4.3.tgz" + "version" "2.4.3" dependencies: - fs-extra "^10.1.0" - tslib "^2.4.0" + "fs-extra" "^10.1.0" + "tslib" "^2.4.0" -"@docusaurus/types@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/types/-/types-2.4.3.tgz#4aead281ca09f721b3c0a9b926818450cfa3db31" - integrity sha512-W6zNLGQqfrp/EoPD0bhb9n7OobP+RHpmvVzpA+Z/IuU3Q63njJM24hmT0GYboovWcDtFmnIJC9wcyx4RVPQscw== +"@docusaurus/types@*", "@docusaurus/types@2.4.3": + "integrity" "sha512-W6zNLGQqfrp/EoPD0bhb9n7OobP+RHpmvVzpA+Z/IuU3Q63njJM24hmT0GYboovWcDtFmnIJC9wcyx4RVPQscw==" + "resolved" "https://registry.npmjs.org/@docusaurus/types/-/types-2.4.3.tgz" + "version" "2.4.3" dependencies: "@types/history" "^4.7.11" "@types/react" "*" - commander "^5.1.0" - joi "^17.6.0" - react-helmet-async "^1.3.0" - utility-types "^3.10.0" - webpack "^5.73.0" - webpack-merge "^5.8.0" + "commander" "^5.1.0" + "joi" "^17.6.0" + "react-helmet-async" "^1.3.0" + "utility-types" "^3.10.0" + "webpack" "^5.73.0" + "webpack-merge" "^5.8.0" "@docusaurus/utils-common@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/utils-common/-/utils-common-2.4.3.tgz#30656c39ef1ce7e002af7ba39ea08330f58efcfb" - integrity sha512-/jascp4GbLQCPVmcGkPzEQjNaAk3ADVfMtudk49Ggb+131B1WDD6HqlSmDf8MxGdy7Dja2gc+StHf01kiWoTDQ== + "integrity" "sha512-/jascp4GbLQCPVmcGkPzEQjNaAk3ADVfMtudk49Ggb+131B1WDD6HqlSmDf8MxGdy7Dja2gc+StHf01kiWoTDQ==" + "resolved" "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-2.4.3.tgz" + "version" "2.4.3" dependencies: - tslib "^2.4.0" + "tslib" "^2.4.0" "@docusaurus/utils-validation@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/utils-validation/-/utils-validation-2.4.3.tgz#8122c394feef3e96c73f6433987837ec206a63fb" - integrity sha512-G2+Vt3WR5E/9drAobP+hhZQMaswRwDlp6qOMi7o7ZypB+VO7N//DZWhZEwhcRGepMDJGQEwtPv7UxtYwPL9PBw== + "integrity" "sha512-G2+Vt3WR5E/9drAobP+hhZQMaswRwDlp6qOMi7o7ZypB+VO7N//DZWhZEwhcRGepMDJGQEwtPv7UxtYwPL9PBw==" + "resolved" "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/logger" "2.4.3" "@docusaurus/utils" "2.4.3" - joi "^17.6.0" - js-yaml "^4.1.0" - tslib "^2.4.0" + "joi" "^17.6.0" + "js-yaml" "^4.1.0" + "tslib" "^2.4.0" "@docusaurus/utils@2.4.3": - version "2.4.3" - resolved "https://registry.yarnpkg.com/@docusaurus/utils/-/utils-2.4.3.tgz#52b000d989380a2125831b84e3a7327bef471e89" - integrity sha512-fKcXsjrD86Smxv8Pt0TBFqYieZZCPh4cbf9oszUq/AMhZn3ujwpKaVYZACPX8mmjtYx0JOgNx52CREBfiGQB4A== + "integrity" "sha512-fKcXsjrD86Smxv8Pt0TBFqYieZZCPh4cbf9oszUq/AMhZn3ujwpKaVYZACPX8mmjtYx0JOgNx52CREBfiGQB4A==" + "resolved" "https://registry.npmjs.org/@docusaurus/utils/-/utils-2.4.3.tgz" + "version" "2.4.3" dependencies: "@docusaurus/logger" "2.4.3" "@svgr/webpack" "^6.2.1" - escape-string-regexp "^4.0.0" - file-loader "^6.2.0" - fs-extra "^10.1.0" - github-slugger "^1.4.0" - globby "^11.1.0" - gray-matter "^4.0.3" - js-yaml "^4.1.0" - lodash "^4.17.21" - micromatch "^4.0.5" - resolve-pathname "^3.0.0" - shelljs "^0.8.5" - tslib "^2.4.0" - url-loader "^4.1.1" - webpack "^5.73.0" + "escape-string-regexp" "^4.0.0" + "file-loader" "^6.2.0" + "fs-extra" "^10.1.0" + "github-slugger" "^1.4.0" + "globby" "^11.1.0" + "gray-matter" "^4.0.3" + "js-yaml" "^4.1.0" + "lodash" "^4.17.21" + "micromatch" "^4.0.5" + "resolve-pathname" "^3.0.0" + "shelljs" "^0.8.5" + "tslib" "^2.4.0" + "url-loader" "^4.1.1" + "webpack" "^5.73.0" "@hapi/hoek@^9.0.0": - version "9.2.0" - resolved "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz" - integrity sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug== + "integrity" "sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug==" + "resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz" + "version" "9.2.0" "@hapi/topo@^5.0.0": - version "5.0.0" - resolved "https://registry.npmjs.org/@hapi/topo/-/topo-5.0.0.tgz" - integrity sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw== + "integrity" "sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw==" + "resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-5.0.0.tgz" + "version" "5.0.0" dependencies: "@hapi/hoek" "^9.0.0" "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - version "0.3.2" - resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz" - integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + "integrity" "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==" + "resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz" + "version" "0.3.2" dependencies: "@jridgewell/set-array" "^1.0.1" "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping" "^0.3.9" "@jridgewell/resolve-uri@^3.0.3": - version "3.0.5" - resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz" - integrity sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew== + "integrity" "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==" + "resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz" + "version" "3.0.5" "@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + "integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + "resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" + "version" "1.1.2" "@jridgewell/source-map@^0.3.2": - version "0.3.2" - resolved "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz" - integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== + "integrity" "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==" + "resolved" "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz" + "version" "0.3.2" dependencies: "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" "@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.11" - resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz" - integrity sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg== + "integrity" "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==" + "resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz" + "version" "1.4.11" "@jridgewell/trace-mapping@^0.3.0", "@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.15" - resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz" - integrity sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g== + "integrity" "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==" + "resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz" + "version" "0.3.15" dependencies: "@jridgewell/resolve-uri" "^3.0.3" "@jridgewell/sourcemap-codec" "^1.4.10" "@leichtgewicht/ip-codec@^2.0.1": - version "2.0.4" - resolved "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz" - integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== + "integrity" "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + "resolved" "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz" + "version" "2.0.4" "@mdx-js/mdx@^1.6.22": - version "1.6.22" - resolved "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-1.6.22.tgz" - integrity sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA== + "integrity" "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==" + "resolved" "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-1.6.22.tgz" + "version" "1.6.22" dependencies: "@babel/core" "7.12.9" "@babel/plugin-syntax-jsx" "7.12.1" "@babel/plugin-syntax-object-rest-spread" "7.8.3" "@mdx-js/util" "1.6.22" - babel-plugin-apply-mdx-type-prop "1.6.22" - babel-plugin-extract-import-names "1.6.22" - camelcase-css "2.0.1" - detab "2.0.4" - hast-util-raw "6.0.1" - lodash.uniq "4.5.0" - mdast-util-to-hast "10.0.1" - remark-footnotes "2.0.0" - remark-mdx "1.6.22" - remark-parse "8.0.3" - remark-squeeze-paragraphs "4.0.0" - style-to-object "0.3.0" - unified "9.2.0" - unist-builder "2.0.3" - unist-util-visit "2.0.3" + "babel-plugin-apply-mdx-type-prop" "1.6.22" + "babel-plugin-extract-import-names" "1.6.22" + "camelcase-css" "2.0.1" + "detab" "2.0.4" + "hast-util-raw" "6.0.1" + "lodash.uniq" "4.5.0" + "mdast-util-to-hast" "10.0.1" + "remark-footnotes" "2.0.0" + "remark-mdx" "1.6.22" + "remark-parse" "8.0.3" + "remark-squeeze-paragraphs" "4.0.0" + "style-to-object" "0.3.0" + "unified" "9.2.0" + "unist-builder" "2.0.3" + "unist-util-visit" "2.0.3" "@mdx-js/react@^1.6.22": - version "1.6.22" - resolved "https://registry.npmjs.org/@mdx-js/react/-/react-1.6.22.tgz" - integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg== + "integrity" "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==" + "resolved" "https://registry.npmjs.org/@mdx-js/react/-/react-1.6.22.tgz" + "version" "1.6.22" "@mdx-js/util@1.6.22": - version "1.6.22" - resolved "https://registry.npmjs.org/@mdx-js/util/-/util-1.6.22.tgz" - integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA== + "integrity" "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==" + "resolved" "https://registry.npmjs.org/@mdx-js/util/-/util-1.6.22.tgz" + "version" "1.6.22" "@nodelib/fs.scandir@2.1.4": - version "2.1.4" - resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz" - integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA== + "integrity" "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==" + "resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz" + "version" "2.1.4" dependencies: "@nodelib/fs.stat" "2.0.4" - run-parallel "^1.1.9" + "run-parallel" "^1.1.9" -"@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2": - version "2.0.4" - resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz" - integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q== +"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.4": + "integrity" "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==" + "resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz" + "version" "2.0.4" "@nodelib/fs.walk@^1.2.3": - version "1.2.6" - resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz" - integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow== + "integrity" "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==" + "resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz" + "version" "1.2.6" dependencies: "@nodelib/fs.scandir" "2.1.4" - fastq "^1.6.0" + "fastq" "^1.6.0" "@polka/url@^1.0.0-next.9": - version "1.0.0-next.12" - resolved "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.12.tgz" - integrity sha512-6RglhutqrGFMO1MNUXp95RBuYIuc8wTnMAV5MUhLmjTOy78ncwOw7RgeQ/HeymkKXRhZd0s2DNrM1rL7unk3MQ== + "integrity" "sha512-6RglhutqrGFMO1MNUXp95RBuYIuc8wTnMAV5MUhLmjTOy78ncwOw7RgeQ/HeymkKXRhZd0s2DNrM1rL7unk3MQ==" + "resolved" "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.12.tgz" + "version" "1.0.0-next.12" "@sideway/address@^4.1.3": - version "4.1.4" - resolved "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz" - integrity sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw== + "integrity" "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==" + "resolved" "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz" + "version" "4.1.4" dependencies: "@hapi/hoek" "^9.0.0" "@sideway/formula@^3.0.0": - version "3.0.0" - resolved "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz" - integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg== + "integrity" "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==" + "resolved" "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz" + "version" "3.0.0" "@sideway/pinpoint@^2.0.0": - version "2.0.0" - resolved "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz" - integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ== + "integrity" "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" + "resolved" "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz" + "version" "2.0.0" "@sindresorhus/is@^0.14.0": - version "0.14.0" - resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz" - integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== + "integrity" "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + "resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz" + "version" "0.14.0" "@slorber/static-site-generator-webpack-plugin@^4.0.7": - version "4.0.7" - resolved "https://registry.npmjs.org/@slorber/static-site-generator-webpack-plugin/-/static-site-generator-webpack-plugin-4.0.7.tgz" - integrity sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA== + "integrity" "sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==" + "resolved" "https://registry.npmjs.org/@slorber/static-site-generator-webpack-plugin/-/static-site-generator-webpack-plugin-4.0.7.tgz" + "version" "4.0.7" dependencies: - eval "^0.1.8" - p-map "^4.0.0" - webpack-sources "^3.2.2" + "eval" "^0.1.8" + "p-map" "^4.0.0" + "webpack-sources" "^3.2.2" "@svgr/babel-plugin-add-jsx-attribute@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.0.0.tgz" - integrity sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA== + "integrity" "sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.0.0.tgz" + "version" "6.0.0" "@svgr/babel-plugin-remove-jsx-attribute@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.0.0.tgz" - integrity sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw== + "integrity" "sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.0.0.tgz" + "version" "6.0.0" "@svgr/babel-plugin-remove-jsx-empty-expression@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.0.0.tgz" - integrity sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA== + "integrity" "sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.0.0.tgz" + "version" "6.0.0" "@svgr/babel-plugin-replace-jsx-attribute-value@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.0.0.tgz" - integrity sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ== + "integrity" "sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.0.0.tgz" + "version" "6.0.0" "@svgr/babel-plugin-svg-dynamic-title@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.0.0.tgz" - integrity sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg== + "integrity" "sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.0.0.tgz" + "version" "6.0.0" "@svgr/babel-plugin-svg-em-dimensions@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.0.0.tgz" - integrity sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA== + "integrity" "sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.0.0.tgz" + "version" "6.0.0" "@svgr/babel-plugin-transform-react-native-svg@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.0.0.tgz" - integrity sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ== + "integrity" "sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.0.0.tgz" + "version" "6.0.0" "@svgr/babel-plugin-transform-svg-component@^6.2.0": - version "6.2.0" - resolved "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.2.0.tgz" - integrity sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg== + "integrity" "sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.2.0.tgz" + "version" "6.2.0" "@svgr/babel-preset@^6.2.0": - version "6.2.0" - resolved "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.2.0.tgz" - integrity sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ== + "integrity" "sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==" + "resolved" "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.2.0.tgz" + "version" "6.2.0" dependencies: "@svgr/babel-plugin-add-jsx-attribute" "^6.0.0" "@svgr/babel-plugin-remove-jsx-attribute" "^6.0.0" @@ -1818,46 +1818,46 @@ "@svgr/babel-plugin-transform-react-native-svg" "^6.0.0" "@svgr/babel-plugin-transform-svg-component" "^6.2.0" -"@svgr/core@^6.2.1": - version "6.2.1" - resolved "https://registry.npmjs.org/@svgr/core/-/core-6.2.1.tgz" - integrity sha512-NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJAA== +"@svgr/core@^6.0.0", "@svgr/core@^6.2.1": + "integrity" "sha512-NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJAA==" + "resolved" "https://registry.npmjs.org/@svgr/core/-/core-6.2.1.tgz" + "version" "6.2.1" dependencies: "@svgr/plugin-jsx" "^6.2.1" - camelcase "^6.2.0" - cosmiconfig "^7.0.1" + "camelcase" "^6.2.0" + "cosmiconfig" "^7.0.1" "@svgr/hast-util-to-babel-ast@^6.2.1": - version "6.2.1" - resolved "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.2.1.tgz" - integrity sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ== + "integrity" "sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ==" + "resolved" "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.2.1.tgz" + "version" "6.2.1" dependencies: "@babel/types" "^7.15.6" - entities "^3.0.1" + "entities" "^3.0.1" "@svgr/plugin-jsx@^6.2.1": - version "6.2.1" - resolved "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.2.1.tgz" - integrity sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g== + "integrity" "sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g==" + "resolved" "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.2.1.tgz" + "version" "6.2.1" dependencies: "@babel/core" "^7.15.5" "@svgr/babel-preset" "^6.2.0" "@svgr/hast-util-to-babel-ast" "^6.2.1" - svg-parser "^2.0.2" + "svg-parser" "^2.0.2" "@svgr/plugin-svgo@^6.2.0": - version "6.2.0" - resolved "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.2.0.tgz" - integrity sha512-oDdMQONKOJEbuKwuy4Np6VdV6qoaLLvoY86hjvQEgU82Vx1MSWRyYms6Sl0f+NtqxLI/rDVufATbP/ev996k3Q== + "integrity" "sha512-oDdMQONKOJEbuKwuy4Np6VdV6qoaLLvoY86hjvQEgU82Vx1MSWRyYms6Sl0f+NtqxLI/rDVufATbP/ev996k3Q==" + "resolved" "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.2.0.tgz" + "version" "6.2.0" dependencies: - cosmiconfig "^7.0.1" - deepmerge "^4.2.2" - svgo "^2.5.0" + "cosmiconfig" "^7.0.1" + "deepmerge" "^4.2.2" + "svgo" "^2.5.0" "@svgr/webpack@^6.2.1": - version "6.2.1" - resolved "https://registry.npmjs.org/@svgr/webpack/-/webpack-6.2.1.tgz" - integrity sha512-h09ngMNd13hnePwgXa+Y5CgOjzlCvfWLHg+MBnydEedAnuLRzUHUJmGS3o2OsrhxTOOqEsPOFt5v/f6C5Qulcw== + "integrity" "sha512-h09ngMNd13hnePwgXa+Y5CgOjzlCvfWLHg+MBnydEedAnuLRzUHUJmGS3o2OsrhxTOOqEsPOFt5v/f6C5Qulcw==" + "resolved" "https://registry.npmjs.org/@svgr/webpack/-/webpack-6.2.1.tgz" + "version" "6.2.1" dependencies: "@babel/core" "^7.15.5" "@babel/plugin-transform-react-constant-elements" "^7.14.5" @@ -1869,81 +1869,81 @@ "@svgr/plugin-svgo" "^6.2.0" "@szmarczak/http-timer@^1.1.2": - version "1.1.2" - resolved "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz" - integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== + "integrity" "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==" + "resolved" "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz" + "version" "1.1.2" dependencies: - defer-to-connect "^1.0.1" + "defer-to-connect" "^1.0.1" "@trysound/sax@0.2.0": - version "0.2.0" - resolved "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz" - integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== + "integrity" "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + "resolved" "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz" + "version" "0.2.0" "@types/body-parser@*": - version "1.19.2" - resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz" - integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g== + "integrity" "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==" + "resolved" "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz" + "version" "1.19.2" dependencies: "@types/connect" "*" "@types/node" "*" "@types/bonjour@^3.5.9": - version "3.5.10" - resolved "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz" - integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== + "integrity" "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==" + "resolved" "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz" + "version" "3.5.10" dependencies: "@types/node" "*" "@types/connect-history-api-fallback@^1.3.5": - version "1.3.5" - resolved "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz" - integrity sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw== + "integrity" "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==" + "resolved" "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz" + "version" "1.3.5" dependencies: "@types/express-serve-static-core" "*" "@types/node" "*" "@types/connect@*": - version "3.4.35" - resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz" - integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ== + "integrity" "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==" + "resolved" "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz" + "version" "3.4.35" dependencies: "@types/node" "*" "@types/eslint-scope@^3.7.3": - version "3.7.3" - resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz" - integrity sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g== + "integrity" "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==" + "resolved" "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz" + "version" "3.7.3" dependencies: "@types/eslint" "*" "@types/estree" "*" "@types/eslint@*": - version "8.4.2" - resolved "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.2.tgz" - integrity sha512-Z1nseZON+GEnFjJc04sv4NSALGjhFwy6K0HXt7qsn5ArfAKtb63dXNJHf+1YW6IpOIYRBGUbu3GwJdj8DGnCjA== + "integrity" "sha512-Z1nseZON+GEnFjJc04sv4NSALGjhFwy6K0HXt7qsn5ArfAKtb63dXNJHf+1YW6IpOIYRBGUbu3GwJdj8DGnCjA==" + "resolved" "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.2.tgz" + "version" "8.4.2" dependencies: "@types/estree" "*" "@types/json-schema" "*" "@types/estree@*", "@types/estree@^0.0.51": - version "0.0.51" - resolved "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz" - integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== + "integrity" "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" + "resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz" + "version" "0.0.51" "@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18": - version "4.17.30" - resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz" - integrity sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ== + "integrity" "sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==" + "resolved" "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz" + "version" "4.17.30" dependencies: "@types/node" "*" "@types/qs" "*" "@types/range-parser" "*" "@types/express@*", "@types/express@^4.17.13": - version "4.17.13" - resolved "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz" - integrity sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA== + "integrity" "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==" + "resolved" "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz" + "version" "4.17.13" dependencies: "@types/body-parser" "*" "@types/express-serve-static-core" "^4.17.18" @@ -1951,203 +1951,203 @@ "@types/serve-static" "*" "@types/hast@^2.0.0": - version "2.3.5" - resolved "https://registry.npmjs.org/@types/hast/-/hast-2.3.5.tgz" - integrity sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg== + "integrity" "sha512-EVLigw5zInURhzfXUM65eixfadfsHKomGKUakToXo84t8gGIJuTcD2xooM2See7GyQ7DRtYjhCHnSUQez8JaLw==" + "resolved" "https://registry.npmjs.org/@types/hast/-/hast-2.3.7.tgz" + "version" "2.3.7" dependencies: "@types/unist" "^2" "@types/history@^4.7.11": - version "4.7.11" - resolved "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz" - integrity sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA== + "integrity" "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" + "resolved" "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz" + "version" "4.7.11" "@types/html-minifier-terser@^6.0.0": - version "6.0.0" - resolved "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.0.0.tgz" - integrity sha512-NZwaaynfs1oIoLAV1vg18e7QMVDvw+6SQrdJc8w3BwUaoroVSf6EBj/Sk4PBWGxsq0dzhA2drbsuMC1/6C6KgQ== + "integrity" "sha512-NZwaaynfs1oIoLAV1vg18e7QMVDvw+6SQrdJc8w3BwUaoroVSf6EBj/Sk4PBWGxsq0dzhA2drbsuMC1/6C6KgQ==" + "resolved" "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.0.0.tgz" + "version" "6.0.0" "@types/http-proxy@^1.17.8": - version "1.17.9" - resolved "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz" - integrity sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw== + "integrity" "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==" + "resolved" "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz" + "version" "1.17.9" dependencies: "@types/node" "*" "@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + "integrity" "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" + "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz" + "version" "7.0.11" "@types/mdast@^3.0.0": - version "3.0.12" - resolved "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.12.tgz" - integrity sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg== + "integrity" "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==" + "resolved" "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz" + "version" "3.0.14" dependencies: "@types/unist" "^2" "@types/mime@*": - version "3.0.1" - resolved "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz" - integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== + "integrity" "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" + "resolved" "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz" + "version" "3.0.1" "@types/node@*", "@types/node@^17.0.5": - version "17.0.35" - resolved "https://registry.npmjs.org/@types/node/-/node-17.0.35.tgz" - integrity sha512-vu1SrqBjbbZ3J6vwY17jBs8Sr/BKA+/a/WtjRG+whKg1iuLFOosq872EXS0eXWILdO36DHQQeku/ZcL6hz2fpg== + "integrity" "sha512-vu1SrqBjbbZ3J6vwY17jBs8Sr/BKA+/a/WtjRG+whKg1iuLFOosq872EXS0eXWILdO36DHQQeku/ZcL6hz2fpg==" + "resolved" "https://registry.npmjs.org/@types/node/-/node-17.0.35.tgz" + "version" "17.0.35" "@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + "integrity" "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + "resolved" "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz" + "version" "4.0.0" "@types/parse5@^5.0.0": - version "5.0.3" - resolved "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz" - integrity sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw== + "integrity" "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" + "resolved" "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz" + "version" "5.0.3" "@types/prop-types@*": - version "15.7.4" - resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz" - integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== + "integrity" "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==" + "resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz" + "version" "15.7.4" "@types/qs@*": - version "6.9.7" - resolved "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz" - integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== + "integrity" "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + "resolved" "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz" + "version" "6.9.7" "@types/range-parser@*": - version "1.2.4" - resolved "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz" - integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== + "integrity" "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + "resolved" "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz" + "version" "1.2.4" "@types/react-router-config@*", "@types/react-router-config@^5.0.6": - version "5.0.7" - resolved "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.7.tgz" - integrity sha512-pFFVXUIydHlcJP6wJm7sDii5mD/bCmmAY0wQzq+M+uX7bqS95AQqHZWP1iNMKrWVQSuHIzj5qi9BvrtLX2/T4w== + "integrity" "sha512-a7zOj9yVUtM3Ns5stoseQAAsmppNxZpXDv6tZiFV5qlRmV4W96u53on1vApBX1eRSc8mrFOiB54Hc0Pk1J8GFg==" + "resolved" "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.9.tgz" + "version" "5.0.9" dependencies: "@types/history" "^4.7.11" "@types/react" "*" "@types/react-router" "^5.1.0" "@types/react-router-dom@*": - version "5.3.3" - resolved "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz" - integrity sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw== + "integrity" "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==" + "resolved" "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz" + "version" "5.3.3" dependencies: "@types/history" "^4.7.11" "@types/react" "*" "@types/react-router" "*" "@types/react-router@*", "@types/react-router@^5.1.0": - version "5.1.20" - resolved "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz" - integrity sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q== + "integrity" "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==" + "resolved" "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz" + "version" "5.1.20" dependencies: "@types/history" "^4.7.11" "@types/react" "*" -"@types/react@*": - version "17.0.35" - resolved "https://registry.npmjs.org/@types/react/-/react-17.0.35.tgz" - integrity sha512-r3C8/TJuri/SLZiiwwxQoLAoavaczARfT9up9b4Jr65+ErAUX3MIkU0oMOQnrpfgHme8zIqZLX7O5nnjm5Wayw== +"@types/react@*", "@types/react@>= 16.8.0 < 19.0.0": + "integrity" "sha512-r3C8/TJuri/SLZiiwwxQoLAoavaczARfT9up9b4Jr65+ErAUX3MIkU0oMOQnrpfgHme8zIqZLX7O5nnjm5Wayw==" + "resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.35.tgz" + "version" "17.0.35" dependencies: "@types/prop-types" "*" "@types/scheduler" "*" - csstype "^3.0.2" + "csstype" "^3.0.2" "@types/retry@0.12.0": - version "0.12.0" - resolved "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz" - integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== + "integrity" "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + "resolved" "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz" + "version" "0.12.0" "@types/sax@^1.2.1": - version "1.2.4" - resolved "https://registry.npmjs.org/@types/sax/-/sax-1.2.4.tgz" - integrity sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw== + "integrity" "sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==" + "resolved" "https://registry.npmjs.org/@types/sax/-/sax-1.2.4.tgz" + "version" "1.2.4" dependencies: "@types/node" "*" "@types/scheduler@*": - version "0.16.2" - resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" - integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== + "integrity" "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + "resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" + "version" "0.16.2" "@types/serve-index@^1.9.1": - version "1.9.1" - resolved "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz" - integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg== + "integrity" "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==" + "resolved" "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz" + "version" "1.9.1" dependencies: "@types/express" "*" "@types/serve-static@*", "@types/serve-static@^1.13.10": - version "1.15.0" - resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz" - integrity sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg== + "integrity" "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==" + "resolved" "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz" + "version" "1.15.0" dependencies: "@types/mime" "*" "@types/node" "*" "@types/sockjs@^0.3.33": - version "0.3.33" - resolved "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz" - integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw== + "integrity" "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==" + "resolved" "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz" + "version" "0.3.33" dependencies: "@types/node" "*" "@types/unist@^2", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": - version "2.0.7" - resolved "https://registry.npmjs.org/@types/unist/-/unist-2.0.7.tgz" - integrity sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g== + "integrity" "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ==" + "resolved" "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz" + "version" "2.0.9" "@types/ws@^8.5.1": - version "8.5.3" - resolved "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz" - integrity sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w== + "integrity" "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==" + "resolved" "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz" + "version" "8.5.3" dependencies: "@types/node" "*" "@webassemblyjs/ast@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz" - integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw== + "integrity" "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz" + "version" "1.11.1" dependencies: "@webassemblyjs/helper-numbers" "1.11.1" "@webassemblyjs/helper-wasm-bytecode" "1.11.1" "@webassemblyjs/floating-point-hex-parser@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz" - integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ== + "integrity" "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz" + "version" "1.11.1" "@webassemblyjs/helper-api-error@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz" - integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg== + "integrity" "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz" + "version" "1.11.1" "@webassemblyjs/helper-buffer@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz" - integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA== + "integrity" "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz" + "version" "1.11.1" "@webassemblyjs/helper-numbers@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz" - integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ== + "integrity" "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz" + "version" "1.11.1" dependencies: "@webassemblyjs/floating-point-hex-parser" "1.11.1" "@webassemblyjs/helper-api-error" "1.11.1" "@xtuc/long" "4.2.2" "@webassemblyjs/helper-wasm-bytecode@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz" - integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q== + "integrity" "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz" + "version" "1.11.1" "@webassemblyjs/helper-wasm-section@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz" - integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg== + "integrity" "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz" + "version" "1.11.1" dependencies: "@webassemblyjs/ast" "1.11.1" "@webassemblyjs/helper-buffer" "1.11.1" @@ -2155,28 +2155,28 @@ "@webassemblyjs/wasm-gen" "1.11.1" "@webassemblyjs/ieee754@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz" - integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== + "integrity" "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz" + "version" "1.11.1" dependencies: "@xtuc/ieee754" "^1.2.0" "@webassemblyjs/leb128@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz" - integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== + "integrity" "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz" + "version" "1.11.1" dependencies: "@xtuc/long" "4.2.2" "@webassemblyjs/utf8@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz" - integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ== + "integrity" "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz" + "version" "1.11.1" "@webassemblyjs/wasm-edit@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz" - integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== + "integrity" "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz" + "version" "1.11.1" dependencies: "@webassemblyjs/ast" "1.11.1" "@webassemblyjs/helper-buffer" "1.11.1" @@ -2188,9 +2188,9 @@ "@webassemblyjs/wast-printer" "1.11.1" "@webassemblyjs/wasm-gen@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz" - integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== + "integrity" "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz" + "version" "1.11.1" dependencies: "@webassemblyjs/ast" "1.11.1" "@webassemblyjs/helper-wasm-bytecode" "1.11.1" @@ -2199,9 +2199,9 @@ "@webassemblyjs/utf8" "1.11.1" "@webassemblyjs/wasm-opt@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz" - integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw== + "integrity" "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz" + "version" "1.11.1" dependencies: "@webassemblyjs/ast" "1.11.1" "@webassemblyjs/helper-buffer" "1.11.1" @@ -2209,9 +2209,9 @@ "@webassemblyjs/wasm-parser" "1.11.1" "@webassemblyjs/wasm-parser@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz" - integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA== + "integrity" "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz" + "version" "1.11.1" dependencies: "@webassemblyjs/ast" "1.11.1" "@webassemblyjs/helper-api-error" "1.11.1" @@ -2221,2430 +2221,2447 @@ "@webassemblyjs/utf8" "1.11.1" "@webassemblyjs/wast-printer@1.11.1": - version "1.11.1" - resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz" - integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg== + "integrity" "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz" + "version" "1.11.1" dependencies: "@webassemblyjs/ast" "1.11.1" "@xtuc/long" "4.2.2" "@xtuc/ieee754@^1.2.0": - version "1.2.0" - resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz" - integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + "integrity" "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "resolved" "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz" + "version" "1.2.0" "@xtuc/long@4.2.2": - version "4.2.2" - resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" - integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + "integrity" "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "resolved" "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" + "version" "4.2.2" -accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: - version "1.3.8" - resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" - integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== +"accepts@~1.3.4", "accepts@~1.3.5", "accepts@~1.3.8": + "integrity" "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" + "resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" + "version" "1.3.8" dependencies: - mime-types "~2.1.34" - negotiator "0.6.3" + "mime-types" "~2.1.34" + "negotiator" "0.6.3" -acorn-import-assertions@^1.7.6: - version "1.8.0" - resolved "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz" - integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== +"acorn-import-assertions@^1.7.6": + "integrity" "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==" + "resolved" "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz" + "version" "1.8.0" -acorn-walk@^8.0.0: - version "8.0.2" - resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.0.2.tgz" - integrity sha512-+bpA9MJsHdZ4bgfDcpk0ozQyhhVct7rzOmO0s1IIr0AGGgKBljss8n2zp11rRP2wid5VGeh04CgeKzgat5/25A== +"acorn-walk@^8.0.0": + "integrity" "sha512-+bpA9MJsHdZ4bgfDcpk0ozQyhhVct7rzOmO0s1IIr0AGGgKBljss8n2zp11rRP2wid5VGeh04CgeKzgat5/25A==" + "resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.0.2.tgz" + "version" "8.0.2" -acorn@^8.0.4, acorn@^8.5.0, acorn@^8.7.1: - version "8.8.0" - resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz" - integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== +"acorn@^8", "acorn@^8.0.4", "acorn@^8.5.0", "acorn@^8.7.1": + "integrity" "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==" + "resolved" "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz" + "version" "8.8.0" -address@^1.0.1, address@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/address/-/address-1.1.2.tgz" - integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== +"address@^1.0.1", "address@^1.1.2": + "integrity" "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + "resolved" "https://registry.npmjs.org/address/-/address-1.1.2.tgz" + "version" "1.1.2" -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== +"aggregate-error@^3.0.0": + "integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + "resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" + "version" "3.1.0" dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" + "clean-stack" "^2.0.0" + "indent-string" "^4.0.0" -ajv-formats@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" - integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== +"ajv-formats@^2.1.1": + "integrity" "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + "resolved" "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" + "version" "2.1.1" dependencies: - ajv "^8.0.0" + "ajv" "^8.0.0" -ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: - version "3.5.2" - resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz" - integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== +"ajv-keywords@^3.4.1", "ajv-keywords@^3.5.2": + "integrity" "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + "resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz" + "version" "3.5.2" -ajv-keywords@^5.0.0: - version "5.1.0" - resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz" - integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== +"ajv-keywords@^5.0.0": + "integrity" "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + "resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz" + "version" "5.1.0" dependencies: - fast-deep-equal "^3.1.3" + "fast-deep-equal" "^3.1.3" -ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5: - version "6.12.6" - resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== +"ajv@^6.12.2", "ajv@^6.12.4", "ajv@^6.12.5", "ajv@^6.9.1": + "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" + "version" "6.12.6" 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" + "fast-deep-equal" "^3.1.1" + "fast-json-stable-stringify" "^2.0.0" + "json-schema-traverse" "^0.4.1" + "uri-js" "^4.2.2" -ajv@^8.0.0, ajv@^8.8.0: - version "8.11.0" - resolved "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz" - integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== +"ajv@^8.0.0": + "integrity" "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==" + "resolved" "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz" + "version" "8.11.0" dependencies: - fast-deep-equal "^3.1.1" - json-schema-traverse "^1.0.0" - require-from-string "^2.0.2" - uri-js "^4.2.2" + "fast-deep-equal" "^3.1.1" + "json-schema-traverse" "^1.0.0" + "require-from-string" "^2.0.2" + "uri-js" "^4.2.2" -algoliasearch-helper@^3.10.0: - version "3.14.0" - resolved "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.14.0.tgz" - integrity sha512-gXDXzsSS0YANn5dHr71CUXOo84cN4azhHKUbg71vAWnH+1JBiR4jf7to3t3JHXknXkbV0F7f055vUSBKrltHLQ== +"ajv@^8.8.0", "ajv@^8.8.2": + "integrity" "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==" + "resolved" "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz" + "version" "8.11.0" + dependencies: + "fast-deep-equal" "^3.1.1" + "json-schema-traverse" "^1.0.0" + "require-from-string" "^2.0.2" + "uri-js" "^4.2.2" + +"algoliasearch-helper@^3.10.0": + "integrity" "sha512-DGUnK3TGtDQsaUE4ayF/LjSN0DGsuYThB8WBgnnDY0Wq04K6lNVruO3LfqJOgSfDiezp+Iyt8Tj4YKHi+/ivSA==" + "resolved" "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.15.0.tgz" + "version" "3.15.0" dependencies: "@algolia/events" "^4.0.1" -algoliasearch@^4.0.0, algoliasearch@^4.13.1: - version "4.19.1" - resolved "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.19.1.tgz" - integrity sha512-IJF5b93b2MgAzcE/tuzW0yOPnuUyRgGAtaPv5UUywXM8kzqfdwZTO4sPJBzoGz1eOy6H9uEchsJsBFTELZSu+g== +"algoliasearch@^4.13.1", "algoliasearch@^4.19.1", "algoliasearch@>= 3.1 < 6", "algoliasearch@>= 4.9.1 < 6": + "integrity" "sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==" + "resolved" "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.20.0.tgz" + "version" "4.20.0" dependencies: - "@algolia/cache-browser-local-storage" "4.19.1" - "@algolia/cache-common" "4.19.1" - "@algolia/cache-in-memory" "4.19.1" - "@algolia/client-account" "4.19.1" - "@algolia/client-analytics" "4.19.1" - "@algolia/client-common" "4.19.1" - "@algolia/client-personalization" "4.19.1" - "@algolia/client-search" "4.19.1" - "@algolia/logger-common" "4.19.1" - "@algolia/logger-console" "4.19.1" - "@algolia/requester-browser-xhr" "4.19.1" - "@algolia/requester-common" "4.19.1" - "@algolia/requester-node-http" "4.19.1" - "@algolia/transporter" "4.19.1" + "@algolia/cache-browser-local-storage" "4.20.0" + "@algolia/cache-common" "4.20.0" + "@algolia/cache-in-memory" "4.20.0" + "@algolia/client-account" "4.20.0" + "@algolia/client-analytics" "4.20.0" + "@algolia/client-common" "4.20.0" + "@algolia/client-personalization" "4.20.0" + "@algolia/client-search" "4.20.0" + "@algolia/logger-common" "4.20.0" + "@algolia/logger-console" "4.20.0" + "@algolia/requester-browser-xhr" "4.20.0" + "@algolia/requester-common" "4.20.0" + "@algolia/requester-node-http" "4.20.0" + "@algolia/transporter" "4.20.0" -ansi-align@^3.0.0, ansi-align@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz" - integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== +"ansi-align@^3.0.0", "ansi-align@^3.0.1": + "integrity" "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==" + "resolved" "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz" + "version" "3.0.1" dependencies: - string-width "^4.1.0" + "string-width" "^4.1.0" -ansi-html-community@^0.0.8: - version "0.0.8" - resolved "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz" - integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== +"ansi-html-community@^0.0.8": + "integrity" "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + "resolved" "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz" + "version" "0.0.8" -ansi-regex@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz" - integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== +"ansi-regex@^5.0.0": + "integrity" "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz" + "version" "5.0.0" -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== +"ansi-regex@^5.0.1": + "integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" + "version" "5.0.1" -ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== +"ansi-regex@^6.0.1": + "integrity" "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz" + "version" "6.0.1" -ansi-styles@^3.2.1: - 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== +"ansi-styles@^3.2.1": + "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" + "version" "3.2.1" dependencies: - color-convert "^1.9.0" + "color-convert" "^1.9.0" -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== +"ansi-styles@^4.0.0", "ansi-styles@^4.1.0": + "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + "version" "4.3.0" dependencies: - color-convert "^2.0.1" + "color-convert" "^2.0.1" -ansi-styles@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.1.0.tgz" - integrity sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ== +"ansi-styles@^6.1.0": + "integrity" "sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.1.0.tgz" + "version" "6.1.0" -anymatch@~3.1.2: - version "3.1.2" - resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== +"anymatch@~3.1.2": + "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" + "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" + "version" "3.1.2" dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" + "normalize-path" "^3.0.0" + "picomatch" "^2.0.4" -arg@^5.0.0: - version "5.0.1" - resolved "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz" - integrity sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA== +"arg@^5.0.0": + "integrity" "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" + "resolved" "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz" + "version" "5.0.1" -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== +"argparse@^1.0.7": + "integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + "resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" + "version" "1.0.10" dependencies: - sprintf-js "~1.0.2" + "sprintf-js" "~1.0.2" -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== +"argparse@^2.0.1": + "integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + "resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" + "version" "2.0.1" -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" - integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== +"array-flatten@^2.1.2": + "integrity" "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + "resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz" + "version" "2.1.2" -array-flatten@^2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz" - integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== +"array-flatten@1.1.1": + "integrity" "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + "resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" + "version" "1.1.1" -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== +"array-union@^2.1.0": + "integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" + "version" "2.1.0" -asap@~2.0.3: - version "2.0.6" - resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" - integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== +"asap@~2.0.3": + "integrity" "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + "resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" + "version" "2.0.6" -at-least-node@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" - integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== +"at-least-node@^1.0.0": + "integrity" "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + "resolved" "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" + "version" "1.0.0" -autoprefixer@^10.4.12, autoprefixer@^10.4.7: - version "10.4.14" - resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz" - integrity sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ== +"autoprefixer@^10.4.12", "autoprefixer@^10.4.7": + "integrity" "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==" + "resolved" "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz" + "version" "10.4.16" dependencies: - browserslist "^4.21.5" - caniuse-lite "^1.0.30001464" - fraction.js "^4.2.0" - normalize-range "^0.1.2" - picocolors "^1.0.0" - postcss-value-parser "^4.2.0" + "browserslist" "^4.21.10" + "caniuse-lite" "^1.0.30001538" + "fraction.js" "^4.3.6" + "normalize-range" "^0.1.2" + "picocolors" "^1.0.0" + "postcss-value-parser" "^4.2.0" -axios@^0.25.0: - version "0.25.0" - resolved "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz" - integrity sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g== +"axios@^0.25.0": + "integrity" "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==" + "resolved" "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz" + "version" "0.25.0" dependencies: - follow-redirects "^1.14.7" + "follow-redirects" "^1.14.7" -babel-loader@^8.2.5: - version "8.2.5" - resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz" - integrity sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ== +"babel-loader@^8.2.5": + "integrity" "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==" + "resolved" "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz" + "version" "8.2.5" dependencies: - find-cache-dir "^3.3.1" - loader-utils "^2.0.0" - make-dir "^3.1.0" - schema-utils "^2.6.5" + "find-cache-dir" "^3.3.1" + "loader-utils" "^2.0.0" + "make-dir" "^3.1.0" + "schema-utils" "^2.6.5" -babel-plugin-apply-mdx-type-prop@1.6.22: - version "1.6.22" - resolved "https://registry.npmjs.org/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz" - integrity sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ== +"babel-plugin-apply-mdx-type-prop@1.6.22": + "integrity" "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==" + "resolved" "https://registry.npmjs.org/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz" + "version" "1.6.22" dependencies: "@babel/helper-plugin-utils" "7.10.4" "@mdx-js/util" "1.6.22" -babel-plugin-dynamic-import-node@^2.3.3: - version "2.3.3" - resolved "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" - integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== +"babel-plugin-dynamic-import-node@^2.3.3": + "integrity" "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==" + "resolved" "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" + "version" "2.3.3" dependencies: - object.assign "^4.1.0" + "object.assign" "^4.1.0" -babel-plugin-extract-import-names@1.6.22: - version "1.6.22" - resolved "https://registry.npmjs.org/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz" - integrity sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ== +"babel-plugin-extract-import-names@1.6.22": + "integrity" "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==" + "resolved" "https://registry.npmjs.org/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz" + "version" "1.6.22" dependencies: "@babel/helper-plugin-utils" "7.10.4" -babel-plugin-polyfill-corejs2@^0.3.2: - version "0.3.2" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.2.tgz" - integrity sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q== +"babel-plugin-polyfill-corejs2@^0.3.2": + "integrity" "sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==" + "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.2.tgz" + "version" "0.3.2" dependencies: "@babel/compat-data" "^7.17.7" "@babel/helper-define-polyfill-provider" "^0.3.2" - semver "^6.1.1" + "semver" "^6.1.1" -babel-plugin-polyfill-corejs3@^0.5.3: - version "0.5.3" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz" - integrity sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw== +"babel-plugin-polyfill-corejs3@^0.5.3": + "integrity" "sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==" + "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz" + "version" "0.5.3" dependencies: "@babel/helper-define-polyfill-provider" "^0.3.2" - core-js-compat "^3.21.0" + "core-js-compat" "^3.21.0" -babel-plugin-polyfill-regenerator@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.0.tgz" - integrity sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw== +"babel-plugin-polyfill-regenerator@^0.4.0": + "integrity" "sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==" + "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.0.tgz" + "version" "0.4.0" dependencies: "@babel/helper-define-polyfill-provider" "^0.3.2" -bail@^1.0.0: - version "1.0.5" - resolved "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz" - integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== +"bail@^1.0.0": + "integrity" "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" + "resolved" "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz" + "version" "1.0.5" -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +"balanced-match@^1.0.0": + "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" + "version" "1.0.2" -base16@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz" - integrity sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ== +"base16@^1.0.0": + "integrity" "sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==" + "resolved" "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz" + "version" "1.0.0" -batch@0.6.1: - version "0.6.1" - resolved "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz" - integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== +"batch@0.6.1": + "integrity" "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + "resolved" "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz" + "version" "0.6.1" -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== +"big.js@^5.2.2": + "integrity" "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + "resolved" "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz" + "version" "5.2.2" -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== +"binary-extensions@^2.0.0": + "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" + "version" "2.2.0" -body-parser@1.20.0: - version "1.20.0" - resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz" - integrity sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg== +"body-parser@1.20.0": + "integrity" "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==" + "resolved" "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz" + "version" "1.20.0" dependencies: - bytes "3.1.2" - content-type "~1.0.4" - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.10.3" - raw-body "2.5.1" - type-is "~1.6.18" - unpipe "1.0.0" + "bytes" "3.1.2" + "content-type" "~1.0.4" + "debug" "2.6.9" + "depd" "2.0.0" + "destroy" "1.2.0" + "http-errors" "2.0.0" + "iconv-lite" "0.4.24" + "on-finished" "2.4.1" + "qs" "6.10.3" + "raw-body" "2.5.1" + "type-is" "~1.6.18" + "unpipe" "1.0.0" -bonjour-service@^1.0.11: - version "1.0.13" - resolved "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.13.tgz" - integrity sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA== +"bonjour-service@^1.0.11": + "integrity" "sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==" + "resolved" "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.13.tgz" + "version" "1.0.13" dependencies: - array-flatten "^2.1.2" - dns-equal "^1.0.0" - fast-deep-equal "^3.1.3" - multicast-dns "^7.2.5" + "array-flatten" "^2.1.2" + "dns-equal" "^1.0.0" + "fast-deep-equal" "^3.1.3" + "multicast-dns" "^7.2.5" -boolbase@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" - integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= +"boolbase@^1.0.0": + "integrity" "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + "resolved" "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" + "version" "1.0.0" -boxen@^5.0.0: - version "5.0.1" - resolved "https://registry.npmjs.org/boxen/-/boxen-5.0.1.tgz" - integrity sha512-49VBlw+PrWEF51aCmy7QIteYPIFZxSpvqBdP/2itCPPlJ49kj9zg/XPRFrdkne2W+CfwXUls8exMvu1RysZpKA== +"boxen@^5.0.0": + "integrity" "sha512-49VBlw+PrWEF51aCmy7QIteYPIFZxSpvqBdP/2itCPPlJ49kj9zg/XPRFrdkne2W+CfwXUls8exMvu1RysZpKA==" + "resolved" "https://registry.npmjs.org/boxen/-/boxen-5.0.1.tgz" + "version" "5.0.1" dependencies: - ansi-align "^3.0.0" - camelcase "^6.2.0" - chalk "^4.1.0" - cli-boxes "^2.2.1" - string-width "^4.2.0" - type-fest "^0.20.2" - widest-line "^3.1.0" - wrap-ansi "^7.0.0" + "ansi-align" "^3.0.0" + "camelcase" "^6.2.0" + "chalk" "^4.1.0" + "cli-boxes" "^2.2.1" + "string-width" "^4.2.0" + "type-fest" "^0.20.2" + "widest-line" "^3.1.0" + "wrap-ansi" "^7.0.0" -boxen@^6.2.1: - version "6.2.1" - resolved "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz" - integrity sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw== +"boxen@^6.2.1": + "integrity" "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==" + "resolved" "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz" + "version" "6.2.1" dependencies: - ansi-align "^3.0.1" - camelcase "^6.2.0" - chalk "^4.1.2" - cli-boxes "^3.0.0" - string-width "^5.0.1" - type-fest "^2.5.0" - widest-line "^4.0.1" - wrap-ansi "^8.0.1" + "ansi-align" "^3.0.1" + "camelcase" "^6.2.0" + "chalk" "^4.1.2" + "cli-boxes" "^3.0.0" + "string-width" "^5.0.1" + "type-fest" "^2.5.0" + "widest-line" "^4.0.1" + "wrap-ansi" "^8.0.1" -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== +"brace-expansion@^1.1.7": + "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" + "version" "1.1.11" dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" + "balanced-match" "^1.0.0" + "concat-map" "0.0.1" -braces@^3.0.2, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== +"braces@^3.0.2", "braces@~3.0.2": + "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" + "version" "3.0.2" dependencies: - fill-range "^7.0.1" + "fill-range" "^7.0.1" -browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.18.1, browserslist@^4.20.2, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.21.5: - version "4.21.10" - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz" - integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== +"browserslist@^4.0.0", "browserslist@^4.14.5", "browserslist@^4.18.1", "browserslist@^4.20.2", "browserslist@^4.21.10", "browserslist@^4.21.3", "browserslist@^4.21.4", "browserslist@>= 4.21.0": + "integrity" "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==" + "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz" + "version" "4.21.10" dependencies: - caniuse-lite "^1.0.30001517" - electron-to-chromium "^1.4.477" - node-releases "^2.0.13" - update-browserslist-db "^1.0.11" + "caniuse-lite" "^1.0.30001517" + "electron-to-chromium" "^1.4.477" + "node-releases" "^2.0.13" + "update-browserslist-db" "^1.0.11" -buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== +"buffer-from@^1.0.0": + "integrity" "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + "resolved" "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz" + "version" "1.1.1" -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" - integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= +"bytes@3.0.0": + "integrity" "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" + "version" "3.0.0" -bytes@3.1.2: - version "3.1.2" - resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" - integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== +"bytes@3.1.2": + "integrity" "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" + "version" "3.1.2" -cacheable-request@^6.0.0: - version "6.1.0" - resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz" - integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== +"cacheable-request@^6.0.0": + "integrity" "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==" + "resolved" "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz" + "version" "6.1.0" dependencies: - clone-response "^1.0.2" - get-stream "^5.1.0" - http-cache-semantics "^4.0.0" - keyv "^3.0.0" - lowercase-keys "^2.0.0" - normalize-url "^4.1.0" - responselike "^1.0.2" + "clone-response" "^1.0.2" + "get-stream" "^5.1.0" + "http-cache-semantics" "^4.0.0" + "keyv" "^3.0.0" + "lowercase-keys" "^2.0.0" + "normalize-url" "^4.1.0" + "responselike" "^1.0.2" -call-bind@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== +"call-bind@^1.0.0": + "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" + "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" + "version" "1.0.2" dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" + "function-bind" "^1.1.1" + "get-intrinsic" "^1.0.2" -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== +"callsites@^3.0.0": + "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + "resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" + "version" "3.1.0" -camel-case@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz" - integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== +"camel-case@^4.1.2": + "integrity" "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" + "resolved" "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz" + "version" "4.1.2" dependencies: - pascal-case "^3.1.2" - tslib "^2.0.3" + "pascal-case" "^3.1.2" + "tslib" "^2.0.3" -camelcase-css@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" - integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== +"camelcase-css@2.0.1": + "integrity" "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + "resolved" "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" + "version" "2.0.1" -camelcase@^6.2.0: - version "6.2.0" - resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" - integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== +"camelcase@^6.2.0": + "integrity" "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" + "version" "6.2.0" -caniuse-api@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz" - integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== +"caniuse-api@^3.0.0": + "integrity" "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + "resolved" "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz" + "version" "3.0.0" dependencies: - browserslist "^4.0.0" - caniuse-lite "^1.0.0" - lodash.memoize "^4.1.2" - lodash.uniq "^4.5.0" + "browserslist" "^4.0.0" + "caniuse-lite" "^1.0.0" + "lodash.memoize" "^4.1.2" + "lodash.uniq" "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001517: - version "1.0.30001517" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz" - integrity sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA== +"caniuse-lite@^1.0.0", "caniuse-lite@^1.0.30001517", "caniuse-lite@^1.0.30001538": + "integrity" "sha512-cPiMKZgqgkg5LY3/ntGeLFUpi6tzddBNS58A4tnTgQw1zON7u2sZMU7SzOeVH4tj20++9ggL+V6FDOFMTaFFYA==" + "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001559.tgz" + "version" "1.0.30001559" -ccount@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz" - integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== +"ccount@^1.0.0": + "integrity" "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==" + "resolved" "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz" + "version" "1.1.0" -chalk@^2.0.0: - version "2.4.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== +"chalk@^2.0.0": + "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + "version" "2.4.2" dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" + "ansi-styles" "^3.2.1" + "escape-string-regexp" "^1.0.5" + "supports-color" "^5.3.0" -chalk@^4.1.0, chalk@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== +"chalk@^4.1.0", "chalk@^4.1.2": + "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" + "version" "4.1.2" dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" + "ansi-styles" "^4.1.0" + "supports-color" "^7.1.0" -character-entities-legacy@^1.0.0: - version "1.1.4" - resolved "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz" - integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== +"character-entities-legacy@^1.0.0": + "integrity" "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==" + "resolved" "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz" + "version" "1.1.4" -character-entities@^1.0.0: - version "1.2.4" - resolved "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz" - integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== +"character-entities@^1.0.0": + "integrity" "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==" + "resolved" "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz" + "version" "1.2.4" -character-reference-invalid@^1.0.0: - version "1.1.4" - resolved "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz" - integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== +"character-reference-invalid@^1.0.0": + "integrity" "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==" + "resolved" "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz" + "version" "1.1.4" -cheerio-select@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz" - integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== +"cheerio-select@^2.1.0": + "integrity" "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==" + "resolved" "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz" + "version" "2.1.0" dependencies: - boolbase "^1.0.0" - css-select "^5.1.0" - css-what "^6.1.0" - domelementtype "^2.3.0" - domhandler "^5.0.3" - domutils "^3.0.1" + "boolbase" "^1.0.0" + "css-select" "^5.1.0" + "css-what" "^6.1.0" + "domelementtype" "^2.3.0" + "domhandler" "^5.0.3" + "domutils" "^3.0.1" -cheerio@^1.0.0-rc.12: - version "1.0.0-rc.12" - resolved "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz" - integrity sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q== +"cheerio@^1.0.0-rc.12": + "integrity" "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==" + "resolved" "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz" + "version" "1.0.0-rc.12" dependencies: - cheerio-select "^2.1.0" - dom-serializer "^2.0.0" - domhandler "^5.0.3" - domutils "^3.0.1" - htmlparser2 "^8.0.1" - parse5 "^7.0.0" - parse5-htmlparser2-tree-adapter "^7.0.0" + "cheerio-select" "^2.1.0" + "dom-serializer" "^2.0.0" + "domhandler" "^5.0.3" + "domutils" "^3.0.1" + "htmlparser2" "^8.0.1" + "parse5" "^7.0.0" + "parse5-htmlparser2-tree-adapter" "^7.0.0" -chokidar@^3.4.2, chokidar@^3.5.3: - version "3.5.3" - resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== +"chokidar@^3.4.2", "chokidar@^3.5.3": + "integrity" "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" + "version" "3.5.3" dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" + "anymatch" "~3.1.2" + "braces" "~3.0.2" + "glob-parent" "~5.1.2" + "is-binary-path" "~2.1.0" + "is-glob" "~4.0.1" + "normalize-path" "~3.0.0" + "readdirp" "~3.6.0" optionalDependencies: - fsevents "~2.3.2" + "fsevents" "~2.3.2" -chrome-trace-event@^1.0.2: - version "1.0.3" - resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz" - integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== +"chrome-trace-event@^1.0.2": + "integrity" "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + "resolved" "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz" + "version" "1.0.3" -ci-info@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== +"ci-info@^2.0.0": + "integrity" "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + "resolved" "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" + "version" "2.0.0" -clean-css@^5.2.2, clean-css@^5.3.0: - version "5.3.0" - resolved "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz" - integrity sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ== +"clean-css@^5.2.2", "clean-css@^5.3.0": + "integrity" "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==" + "resolved" "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz" + "version" "5.3.0" dependencies: - source-map "~0.6.0" + "source-map" "~0.6.0" -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== +"clean-stack@^2.0.0": + "integrity" "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + "resolved" "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" + "version" "2.2.0" -cli-boxes@^2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz" - integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== +"cli-boxes@^2.2.1": + "integrity" "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" + "resolved" "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz" + "version" "2.2.1" -cli-boxes@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz" - integrity sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g== +"cli-boxes@^3.0.0": + "integrity" "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==" + "resolved" "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz" + "version" "3.0.0" -cli-table3@^0.6.2: - version "0.6.2" - resolved "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.2.tgz" - integrity sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw== +"cli-table3@^0.6.2": + "integrity" "sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==" + "resolved" "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.2.tgz" + "version" "0.6.2" dependencies: - string-width "^4.2.0" + "string-width" "^4.2.0" optionalDependencies: "@colors/colors" "1.5.0" -clone-deep@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" - integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== +"clone-deep@^4.0.1": + "integrity" "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + "resolved" "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" + "version" "4.0.1" dependencies: - is-plain-object "^2.0.4" - kind-of "^6.0.2" - shallow-clone "^3.0.0" + "is-plain-object" "^2.0.4" + "kind-of" "^6.0.2" + "shallow-clone" "^3.0.0" -clone-response@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz" - integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws= +"clone-response@^1.0.2": + "integrity" "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" + "resolved" "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz" + "version" "1.0.2" dependencies: - mimic-response "^1.0.0" + "mimic-response" "^1.0.0" -clsx@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz" - integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== +"clsx@^1.2.1": + "integrity" "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==" + "resolved" "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz" + "version" "1.2.1" -collapse-white-space@^1.0.2: - version "1.0.6" - resolved "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz" - integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== +"collapse-white-space@^1.0.2": + "integrity" "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==" + "resolved" "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz" + "version" "1.0.6" -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== +"color-convert@^1.9.0": + "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" + "version" "1.9.3" dependencies: - color-name "1.1.3" + "color-name" "1.1.3" -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== +"color-convert@^2.0.1": + "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" + "version" "2.0.1" dependencies: - color-name "~1.1.4" + "color-name" "~1.1.4" -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== +"color-name@~1.1.4": + "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + "version" "1.1.4" -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +"color-name@1.1.3": + "integrity" "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" + "version" "1.1.3" -colord@^2.9.1: - version "2.9.3" - resolved "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz" - integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== +"colord@^2.9.1": + "integrity" "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + "resolved" "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz" + "version" "2.9.3" -colorette@^2.0.10: - version "2.0.19" - resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz" - integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== +"colorette@^2.0.10": + "integrity" "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==" + "resolved" "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz" + "version" "2.0.19" -combine-promises@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/combine-promises/-/combine-promises-1.1.0.tgz" - integrity sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg== +"combine-promises@^1.1.0": + "integrity" "sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==" + "resolved" "https://registry.npmjs.org/combine-promises/-/combine-promises-1.1.0.tgz" + "version" "1.1.0" -comma-separated-tokens@^1.0.0: - version "1.0.8" - resolved "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz" - integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== +"comma-separated-tokens@^1.0.0": + "integrity" "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==" + "resolved" "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz" + "version" "1.0.8" -commander@^2.20.0: - version "2.20.3" - resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" - integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== +"commander@^2.20.0": + "integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + "resolved" "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" + "version" "2.20.3" -commander@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz" - integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== +"commander@^5.1.0": + "integrity" "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + "resolved" "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz" + "version" "5.1.0" -commander@^7.2.0: - version "7.2.0" - resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" - integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== +"commander@^7.2.0": + "integrity" "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + "resolved" "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" + "version" "7.2.0" -commander@^8.3.0: - version "8.3.0" - resolved "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz" - integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== +"commander@^8.3.0": + "integrity" "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + "resolved" "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz" + "version" "8.3.0" -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" - integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= +"commondir@^1.0.1": + "integrity" "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "resolved" "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" + "version" "1.0.1" -compressible@~2.0.16: - version "2.0.18" - resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" - integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== +"compressible@~2.0.16": + "integrity" "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + "resolved" "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" + "version" "2.0.18" dependencies: - mime-db ">= 1.43.0 < 2" + "mime-db" ">= 1.43.0 < 2" -compression@^1.7.4: - version "1.7.4" - resolved "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== +"compression@^1.7.4": + "integrity" "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + "resolved" "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" + "version" "1.7.4" dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" - debug "2.6.9" - on-headers "~1.0.2" - safe-buffer "5.1.2" - vary "~1.1.2" + "accepts" "~1.3.5" + "bytes" "3.0.0" + "compressible" "~2.0.16" + "debug" "2.6.9" + "on-headers" "~1.0.2" + "safe-buffer" "5.1.2" + "vary" "~1.1.2" -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= +"concat-map@0.0.1": + "integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + "version" "0.0.1" -configstore@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz" - integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== +"configstore@^5.0.1": + "integrity" "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==" + "resolved" "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz" + "version" "5.0.1" dependencies: - dot-prop "^5.2.0" - graceful-fs "^4.1.2" - make-dir "^3.0.0" - unique-string "^2.0.0" - write-file-atomic "^3.0.0" - xdg-basedir "^4.0.0" + "dot-prop" "^5.2.0" + "graceful-fs" "^4.1.2" + "make-dir" "^3.0.0" + "unique-string" "^2.0.0" + "write-file-atomic" "^3.0.0" + "xdg-basedir" "^4.0.0" -connect-history-api-fallback@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz" - integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== +"connect-history-api-fallback@^2.0.0": + "integrity" "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + "resolved" "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz" + "version" "2.0.0" -consola@^2.15.3: - version "2.15.3" - resolved "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz" - integrity sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw== +"consola@^2.15.3": + "integrity" "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" + "resolved" "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz" + "version" "2.15.3" -content-disposition@0.5.2: - version "0.5.2" - resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz" - integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ= +"content-disposition@0.5.2": + "integrity" "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" + "resolved" "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz" + "version" "0.5.2" -content-disposition@0.5.4: - version "0.5.4" - resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== +"content-disposition@0.5.4": + "integrity" "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" + "resolved" "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz" + "version" "0.5.4" dependencies: - safe-buffer "5.2.1" + "safe-buffer" "5.2.1" -content-type@~1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz" - integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== +"content-type@~1.0.4": + "integrity" "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + "resolved" "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz" + "version" "1.0.4" -convert-source-map@^1.7.0: - version "1.7.0" - resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz" - integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== +"convert-source-map@^1.7.0": + "integrity" "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==" + "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz" + "version" "1.7.0" dependencies: - safe-buffer "~5.1.1" + "safe-buffer" "~5.1.1" -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" - integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== +"cookie-signature@1.0.6": + "integrity" "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + "resolved" "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" + "version" "1.0.6" -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== +"cookie@0.5.0": + "integrity" "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + "resolved" "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz" + "version" "0.5.0" -copy-text-to-clipboard@^3.0.1: - version "3.2.0" - resolved "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz" - integrity sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q== +"copy-text-to-clipboard@^3.0.1": + "integrity" "sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==" + "resolved" "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz" + "version" "3.2.0" -copy-webpack-plugin@^11.0.0: - version "11.0.0" - resolved "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz" - integrity sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ== +"copy-webpack-plugin@^11.0.0": + "integrity" "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==" + "resolved" "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz" + "version" "11.0.0" dependencies: - fast-glob "^3.2.11" - glob-parent "^6.0.1" - globby "^13.1.1" - normalize-path "^3.0.0" - schema-utils "^4.0.0" - serialize-javascript "^6.0.0" + "fast-glob" "^3.2.11" + "glob-parent" "^6.0.1" + "globby" "^13.1.1" + "normalize-path" "^3.0.0" + "schema-utils" "^4.0.0" + "serialize-javascript" "^6.0.0" -core-js-compat@^3.21.0, core-js-compat@^3.22.1: - version "3.24.1" - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.24.1.tgz" - integrity sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw== +"core-js-compat@^3.21.0", "core-js-compat@^3.22.1": + "integrity" "sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw==" + "resolved" "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.24.1.tgz" + "version" "3.24.1" dependencies: - browserslist "^4.21.3" - semver "7.0.0" + "browserslist" "^4.21.3" + "semver" "7.0.0" -core-js-pure@^3.20.2: - version "3.24.1" - resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.24.1.tgz" - integrity sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg== +"core-js-pure@^3.20.2": + "integrity" "sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg==" + "resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.24.1.tgz" + "version" "3.24.1" -core-js@^3.23.3: - version "3.24.1" - resolved "https://registry.npmjs.org/core-js/-/core-js-3.24.1.tgz" - integrity sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg== +"core-js@^3.23.3": + "integrity" "sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg==" + "resolved" "https://registry.npmjs.org/core-js/-/core-js-3.24.1.tgz" + "version" "3.24.1" -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== +"core-util-is@~1.0.0": + "integrity" "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + "resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" + "version" "1.0.3" -cosmiconfig@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz" - integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== +"cosmiconfig@^6.0.0": + "integrity" "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" + "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz" + "version" "6.0.0" dependencies: "@types/parse-json" "^4.0.0" - import-fresh "^3.1.0" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.7.2" + "import-fresh" "^3.1.0" + "parse-json" "^5.0.0" + "path-type" "^4.0.0" + "yaml" "^1.7.2" -cosmiconfig@^7.0.0, cosmiconfig@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz" - integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== +"cosmiconfig@^7.0.0", "cosmiconfig@^7.0.1": + "integrity" "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==" + "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz" + "version" "7.0.1" dependencies: "@types/parse-json" "^4.0.0" - import-fresh "^3.2.1" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.10.0" + "import-fresh" "^3.2.1" + "parse-json" "^5.0.0" + "path-type" "^4.0.0" + "yaml" "^1.10.0" -cross-fetch@^3.1.5: - version "3.1.8" - resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz" - integrity sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg== +"cross-fetch@^3.1.5": + "integrity" "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==" + "resolved" "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz" + "version" "3.1.8" dependencies: - node-fetch "^2.6.12" + "node-fetch" "^2.6.12" -cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== +"cross-spawn@^7.0.3": + "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" + "version" "7.0.3" dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" + "path-key" "^3.1.0" + "shebang-command" "^2.0.0" + "which" "^2.0.1" -crypto-random-string@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz" - integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== +"crypto-random-string@^2.0.0": + "integrity" "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + "resolved" "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz" + "version" "2.0.0" -css-declaration-sorter@^6.3.1: - version "6.4.1" - resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz" - integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== +"css-declaration-sorter@^6.3.1": + "integrity" "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==" + "resolved" "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz" + "version" "6.4.1" -css-loader@^6.7.1: - version "6.7.1" - resolved "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz" - integrity sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw== +"css-loader@^6.7.1": + "integrity" "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==" + "resolved" "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz" + "version" "6.7.1" dependencies: - icss-utils "^5.1.0" - postcss "^8.4.7" - postcss-modules-extract-imports "^3.0.0" - postcss-modules-local-by-default "^4.0.0" - postcss-modules-scope "^3.0.0" - postcss-modules-values "^4.0.0" - postcss-value-parser "^4.2.0" - semver "^7.3.5" + "icss-utils" "^5.1.0" + "postcss" "^8.4.7" + "postcss-modules-extract-imports" "^3.0.0" + "postcss-modules-local-by-default" "^4.0.0" + "postcss-modules-scope" "^3.0.0" + "postcss-modules-values" "^4.0.0" + "postcss-value-parser" "^4.2.0" + "semver" "^7.3.5" -css-minimizer-webpack-plugin@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-4.0.0.tgz" - integrity sha512-7ZXXRzRHvofv3Uac5Y+RkWRNo0ZMlcg8e9/OtrqUYmwDWJo+qs67GvdeFrXLsFb7czKNwjQhPkM0avlIYl+1nA== +"css-minimizer-webpack-plugin@^4.0.0": + "integrity" "sha512-7ZXXRzRHvofv3Uac5Y+RkWRNo0ZMlcg8e9/OtrqUYmwDWJo+qs67GvdeFrXLsFb7czKNwjQhPkM0avlIYl+1nA==" + "resolved" "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-4.0.0.tgz" + "version" "4.0.0" dependencies: - cssnano "^5.1.8" - jest-worker "^27.5.1" - postcss "^8.4.13" - schema-utils "^4.0.0" - serialize-javascript "^6.0.0" - source-map "^0.6.1" + "cssnano" "^5.1.8" + "jest-worker" "^27.5.1" + "postcss" "^8.4.13" + "schema-utils" "^4.0.0" + "serialize-javascript" "^6.0.0" + "source-map" "^0.6.1" -css-select@^4.1.3: - version "4.1.3" - resolved "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz" - integrity sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA== +"css-select@^4.1.3": + "integrity" "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==" + "resolved" "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz" + "version" "4.1.3" dependencies: - boolbase "^1.0.0" - css-what "^5.0.0" - domhandler "^4.2.0" - domutils "^2.6.0" - nth-check "^2.0.0" + "boolbase" "^1.0.0" + "css-what" "^5.0.0" + "domhandler" "^4.2.0" + "domutils" "^2.6.0" + "nth-check" "^2.0.0" -css-select@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz" - integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== +"css-select@^5.1.0": + "integrity" "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" + "resolved" "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz" + "version" "5.1.0" dependencies: - boolbase "^1.0.0" - css-what "^6.1.0" - domhandler "^5.0.2" - domutils "^3.0.1" - nth-check "^2.0.1" + "boolbase" "^1.0.0" + "css-what" "^6.1.0" + "domhandler" "^5.0.2" + "domutils" "^3.0.1" + "nth-check" "^2.0.1" -css-tree@^1.1.2, css-tree@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz" - integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== +"css-tree@^1.1.2", "css-tree@^1.1.3": + "integrity" "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" + "resolved" "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz" + "version" "1.1.3" dependencies: - mdn-data "2.0.14" - source-map "^0.6.1" + "mdn-data" "2.0.14" + "source-map" "^0.6.1" -css-what@^5.0.0: - version "5.1.0" - resolved "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz" - integrity sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw== +"css-what@^5.0.0": + "integrity" "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==" + "resolved" "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz" + "version" "5.1.0" -css-what@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== +"css-what@^6.1.0": + "integrity" "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + "resolved" "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz" + "version" "6.1.0" -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== +"cssesc@^3.0.0": + "integrity" "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + "resolved" "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" + "version" "3.0.0" -cssnano-preset-advanced@^5.3.8: - version "5.3.10" - resolved "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.10.tgz" - integrity sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ== +"cssnano-preset-advanced@^5.3.8": + "integrity" "sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==" + "resolved" "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.10.tgz" + "version" "5.3.10" dependencies: - autoprefixer "^10.4.12" - cssnano-preset-default "^5.2.14" - postcss-discard-unused "^5.1.0" - postcss-merge-idents "^5.1.1" - postcss-reduce-idents "^5.2.0" - postcss-zindex "^5.1.0" + "autoprefixer" "^10.4.12" + "cssnano-preset-default" "^5.2.14" + "postcss-discard-unused" "^5.1.0" + "postcss-merge-idents" "^5.1.1" + "postcss-reduce-idents" "^5.2.0" + "postcss-zindex" "^5.1.0" -cssnano-preset-default@^5.2.12, cssnano-preset-default@^5.2.14: - version "5.2.14" - resolved "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz" - integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A== +"cssnano-preset-default@^5.2.12", "cssnano-preset-default@^5.2.14": + "integrity" "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==" + "resolved" "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz" + "version" "5.2.14" dependencies: - css-declaration-sorter "^6.3.1" - cssnano-utils "^3.1.0" - postcss-calc "^8.2.3" - postcss-colormin "^5.3.1" - postcss-convert-values "^5.1.3" - postcss-discard-comments "^5.1.2" - postcss-discard-duplicates "^5.1.0" - postcss-discard-empty "^5.1.1" - postcss-discard-overridden "^5.1.0" - postcss-merge-longhand "^5.1.7" - postcss-merge-rules "^5.1.4" - postcss-minify-font-values "^5.1.0" - postcss-minify-gradients "^5.1.1" - postcss-minify-params "^5.1.4" - postcss-minify-selectors "^5.2.1" - postcss-normalize-charset "^5.1.0" - postcss-normalize-display-values "^5.1.0" - postcss-normalize-positions "^5.1.1" - postcss-normalize-repeat-style "^5.1.1" - postcss-normalize-string "^5.1.0" - postcss-normalize-timing-functions "^5.1.0" - postcss-normalize-unicode "^5.1.1" - postcss-normalize-url "^5.1.0" - postcss-normalize-whitespace "^5.1.1" - postcss-ordered-values "^5.1.3" - postcss-reduce-initial "^5.1.2" - postcss-reduce-transforms "^5.1.0" - postcss-svgo "^5.1.0" - postcss-unique-selectors "^5.1.1" + "css-declaration-sorter" "^6.3.1" + "cssnano-utils" "^3.1.0" + "postcss-calc" "^8.2.3" + "postcss-colormin" "^5.3.1" + "postcss-convert-values" "^5.1.3" + "postcss-discard-comments" "^5.1.2" + "postcss-discard-duplicates" "^5.1.0" + "postcss-discard-empty" "^5.1.1" + "postcss-discard-overridden" "^5.1.0" + "postcss-merge-longhand" "^5.1.7" + "postcss-merge-rules" "^5.1.4" + "postcss-minify-font-values" "^5.1.0" + "postcss-minify-gradients" "^5.1.1" + "postcss-minify-params" "^5.1.4" + "postcss-minify-selectors" "^5.2.1" + "postcss-normalize-charset" "^5.1.0" + "postcss-normalize-display-values" "^5.1.0" + "postcss-normalize-positions" "^5.1.1" + "postcss-normalize-repeat-style" "^5.1.1" + "postcss-normalize-string" "^5.1.0" + "postcss-normalize-timing-functions" "^5.1.0" + "postcss-normalize-unicode" "^5.1.1" + "postcss-normalize-url" "^5.1.0" + "postcss-normalize-whitespace" "^5.1.1" + "postcss-ordered-values" "^5.1.3" + "postcss-reduce-initial" "^5.1.2" + "postcss-reduce-transforms" "^5.1.0" + "postcss-svgo" "^5.1.0" + "postcss-unique-selectors" "^5.1.1" -cssnano-utils@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz" - integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== +"cssnano-utils@^3.1.0": + "integrity" "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" + "resolved" "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz" + "version" "3.1.0" -cssnano@^5.1.12, cssnano@^5.1.8: - version "5.1.13" - resolved "https://registry.npmjs.org/cssnano/-/cssnano-5.1.13.tgz" - integrity sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ== +"cssnano@^5.1.12", "cssnano@^5.1.8": + "integrity" "sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==" + "resolved" "https://registry.npmjs.org/cssnano/-/cssnano-5.1.13.tgz" + "version" "5.1.13" dependencies: - cssnano-preset-default "^5.2.12" - lilconfig "^2.0.3" - yaml "^1.10.2" + "cssnano-preset-default" "^5.2.12" + "lilconfig" "^2.0.3" + "yaml" "^1.10.2" -csso@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz" - integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== +"csso@^4.2.0": + "integrity" "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" + "resolved" "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz" + "version" "4.2.0" dependencies: - css-tree "^1.1.2" + "css-tree" "^1.1.2" -csstype@^3.0.2: - version "3.0.10" - resolved "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz" - integrity sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA== +"csstype@^3.0.2": + "integrity" "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==" + "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz" + "version" "3.0.10" -debug@2.6.9, debug@^2.6.0: - version "2.6.9" - resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== +"debug@^2.6.0": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" dependencies: - ms "2.0.0" + "ms" "2.0.0" -debug@^4.1.0, debug@^4.1.1: - version "4.3.1" - resolved "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz" - integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== +"debug@^4.1.0", "debug@^4.1.1": + "integrity" "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==" + "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz" + "version" "4.3.1" dependencies: - ms "2.1.2" + "ms" "2.1.2" -decompress-response@^3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz" - integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M= +"debug@2.6.9": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" dependencies: - mimic-response "^1.0.0" + "ms" "2.0.0" -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== - -default-gateway@^6.0.3: - version "6.0.3" - resolved "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz" - integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== +"decompress-response@^3.3.0": + "integrity" "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=" + "resolved" "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz" + "version" "3.3.0" dependencies: - execa "^5.0.0" + "mimic-response" "^1.0.0" -defer-to-connect@^1.0.1: - version "1.1.3" - resolved "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz" - integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== +"deep-extend@^0.6.0": + "integrity" "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + "resolved" "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" + "version" "0.6.0" -define-lazy-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" - integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== +"deepmerge@^4.2.2": + "integrity" "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" + "version" "4.2.2" -define-properties@^1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" - integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== +"default-gateway@^6.0.3": + "integrity" "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" + "resolved" "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz" + "version" "6.0.3" dependencies: - object-keys "^1.0.12" + "execa" "^5.0.0" -del@^6.1.1: - version "6.1.1" - resolved "https://registry.npmjs.org/del/-/del-6.1.1.tgz" - integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== +"defer-to-connect@^1.0.1": + "integrity" "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + "resolved" "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz" + "version" "1.1.3" + +"define-lazy-prop@^2.0.0": + "integrity" "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + "resolved" "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" + "version" "2.0.0" + +"define-properties@^1.1.3": + "integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" + "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" + "version" "1.1.3" dependencies: - globby "^11.0.1" - graceful-fs "^4.2.4" - is-glob "^4.0.1" - is-path-cwd "^2.2.0" - is-path-inside "^3.0.2" - p-map "^4.0.0" - rimraf "^3.0.2" - slash "^3.0.0" + "object-keys" "^1.0.12" -depd@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -depd@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" - integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== - -destroy@1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" - integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== - -detab@2.0.4: - version "2.0.4" - resolved "https://registry.npmjs.org/detab/-/detab-2.0.4.tgz" - integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g== +"del@^6.1.1": + "integrity" "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==" + "resolved" "https://registry.npmjs.org/del/-/del-6.1.1.tgz" + "version" "6.1.1" dependencies: - repeat-string "^1.5.4" + "globby" "^11.0.1" + "graceful-fs" "^4.2.4" + "is-glob" "^4.0.1" + "is-path-cwd" "^2.2.0" + "is-path-inside" "^3.0.2" + "p-map" "^4.0.0" + "rimraf" "^3.0.2" + "slash" "^3.0.0" -detect-node@^2.0.4: - version "2.1.0" - resolved "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz" - integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== +"depd@~1.1.2": + "integrity" "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + "resolved" "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" + "version" "1.1.2" -detect-port-alt@^1.1.6: - version "1.1.6" - resolved "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz" - integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== +"depd@2.0.0": + "integrity" "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + "resolved" "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" + "version" "2.0.0" + +"destroy@1.2.0": + "integrity" "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + "resolved" "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" + "version" "1.2.0" + +"detab@2.0.4": + "integrity" "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==" + "resolved" "https://registry.npmjs.org/detab/-/detab-2.0.4.tgz" + "version" "2.0.4" dependencies: - address "^1.0.1" - debug "^2.6.0" + "repeat-string" "^1.5.4" -detect-port@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz" - integrity sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ== +"detect-node@^2.0.4": + "integrity" "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + "resolved" "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz" + "version" "2.1.0" + +"detect-port-alt@^1.1.6": + "integrity" "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==" + "resolved" "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz" + "version" "1.1.6" dependencies: - address "^1.0.1" - debug "^2.6.0" + "address" "^1.0.1" + "debug" "^2.6.0" -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== +"detect-port@^1.3.0": + "integrity" "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==" + "resolved" "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz" + "version" "1.3.0" dependencies: - path-type "^4.0.0" + "address" "^1.0.1" + "debug" "^2.6.0" -dns-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz" - integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== +"dir-glob@^3.0.1": + "integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + "resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "path-type" "^4.0.0" -dns-packet@^5.2.2: - version "5.4.0" - resolved "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz" - integrity sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g== +"dns-equal@^1.0.0": + "integrity" "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + "resolved" "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz" + "version" "1.0.0" + +"dns-packet@^5.2.2": + "integrity" "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==" + "resolved" "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz" + "version" "5.4.0" dependencies: "@leichtgewicht/ip-codec" "^2.0.1" -dom-converter@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz" - integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== +"dom-converter@^0.2.0": + "integrity" "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" + "resolved" "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz" + "version" "0.2.0" dependencies: - utila "~0.4" + "utila" "~0.4" -dom-serializer@^1.0.1: - version "1.3.2" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz" - integrity sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig== +"dom-serializer@^1.0.1": + "integrity" "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==" + "resolved" "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz" + "version" "1.3.2" dependencies: - domelementtype "^2.0.1" - domhandler "^4.2.0" - entities "^2.0.0" + "domelementtype" "^2.0.1" + "domhandler" "^4.2.0" + "entities" "^2.0.0" -dom-serializer@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz" - integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== +"dom-serializer@^2.0.0": + "integrity" "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" + "resolved" "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz" + "version" "2.0.0" dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.2" - entities "^4.2.0" + "domelementtype" "^2.3.0" + "domhandler" "^5.0.2" + "entities" "^4.2.0" -domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: - version "2.3.0" - resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" - integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== +"domelementtype@^2.0.1", "domelementtype@^2.2.0", "domelementtype@^2.3.0": + "integrity" "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + "resolved" "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" + "version" "2.3.0" -domhandler@^4.0.0, domhandler@^4.2.0: - version "4.2.2" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz" - integrity sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w== +"domhandler@^4.0.0", "domhandler@^4.2.0": + "integrity" "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==" + "resolved" "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz" + "version" "4.2.2" dependencies: - domelementtype "^2.2.0" + "domelementtype" "^2.2.0" -domhandler@^5.0.2, domhandler@^5.0.3: - version "5.0.3" - resolved "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz" - integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== +"domhandler@^5.0.2", "domhandler@^5.0.3": + "integrity" "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" + "resolved" "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz" + "version" "5.0.3" dependencies: - domelementtype "^2.3.0" + "domelementtype" "^2.3.0" -domutils@^2.5.2, domutils@^2.6.0: - version "2.8.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" - integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== +"domutils@^2.5.2", "domutils@^2.6.0": + "integrity" "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" + "resolved" "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" + "version" "2.8.0" dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" + "dom-serializer" "^1.0.1" + "domelementtype" "^2.2.0" + "domhandler" "^4.2.0" -domutils@^3.0.1: - version "3.1.0" - resolved "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz" - integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== +"domutils@^3.0.1": + "integrity" "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" + "resolved" "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz" + "version" "3.1.0" dependencies: - dom-serializer "^2.0.0" - domelementtype "^2.3.0" - domhandler "^5.0.3" + "dom-serializer" "^2.0.0" + "domelementtype" "^2.3.0" + "domhandler" "^5.0.3" -dot-case@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz" - integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== +"dot-case@^3.0.4": + "integrity" "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + "resolved" "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz" + "version" "3.0.4" dependencies: - no-case "^3.0.4" - tslib "^2.0.3" + "no-case" "^3.0.4" + "tslib" "^2.0.3" -dot-prop@^5.2.0: - version "5.3.0" - resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz" - integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== +"dot-prop@^5.2.0": + "integrity" "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + "resolved" "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz" + "version" "5.3.0" dependencies: - is-obj "^2.0.0" + "is-obj" "^2.0.0" -duplexer3@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz" - integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= +"duplexer@^0.1.2": + "integrity" "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + "resolved" "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" + "version" "0.1.2" -duplexer@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" - integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== +"duplexer3@^0.1.4": + "integrity" "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + "resolved" "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz" + "version" "0.1.4" -eastasianwidth@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" - integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== +"eastasianwidth@^0.2.0": + "integrity" "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + "resolved" "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" + "version" "0.2.0" -ee-first@1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" - integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== +"ee-first@1.1.1": + "integrity" "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + "resolved" "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" + "version" "1.1.1" -electron-to-chromium@^1.4.477: - version "1.4.477" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.477.tgz" - integrity sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw== +"electron-to-chromium@^1.4.477": + "integrity" "sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw==" + "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.477.tgz" + "version" "1.4.477" -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +"emoji-regex@^8.0.0": + "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" + "version" "8.0.0" -emoji-regex@^9.2.2: - version "9.2.2" - resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" - integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== +"emoji-regex@^9.2.2": + "integrity" "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" + "version" "9.2.2" -emojis-list@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== +"emojis-list@^3.0.0": + "integrity" "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + "resolved" "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" + "version" "3.0.0" -emoticon@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/emoticon/-/emoticon-3.2.0.tgz" - integrity sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg== +"emoticon@^3.2.0": + "integrity" "sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg==" + "resolved" "https://registry.npmjs.org/emoticon/-/emoticon-3.2.0.tgz" + "version" "3.2.0" -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +"encodeurl@~1.0.2": + "integrity" "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + "resolved" "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" + "version" "1.0.2" -end-of-stream@^1.1.0: - version "1.4.4" - resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== +"end-of-stream@^1.1.0": + "integrity" "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + "resolved" "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" + "version" "1.4.4" dependencies: - once "^1.4.0" + "once" "^1.4.0" -enhanced-resolve@^5.10.0: - version "5.10.0" - resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz" - integrity sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ== +"enhanced-resolve@^5.10.0": + "integrity" "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==" + "resolved" "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz" + "version" "5.10.0" dependencies: - graceful-fs "^4.2.4" - tapable "^2.2.0" + "graceful-fs" "^4.2.4" + "tapable" "^2.2.0" -entities@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" - integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== +"entities@^2.0.0": + "integrity" "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + "resolved" "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" + "version" "2.2.0" -entities@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz" - integrity sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q== +"entities@^3.0.1": + "integrity" "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==" + "resolved" "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz" + "version" "3.0.1" -entities@^4.2.0, entities@^4.4.0: - version "4.5.0" - resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" - integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== +"entities@^4.2.0", "entities@^4.4.0": + "integrity" "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" + "resolved" "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" + "version" "4.5.0" -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== +"error-ex@^1.3.1": + "integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + "resolved" "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" + "version" "1.3.2" dependencies: - is-arrayish "^0.2.1" + "is-arrayish" "^0.2.1" -es-module-lexer@^0.9.0: - version "0.9.3" - resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz" - integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== +"es-module-lexer@^0.9.0": + "integrity" "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "resolved" "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz" + "version" "0.9.3" -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== +"escalade@^3.1.1": + "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" + "version" "3.1.1" -escape-goat@^2.0.0: - version "2.1.1" - resolved "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz" - integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== +"escape-goat@^2.0.0": + "integrity" "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==" + "resolved" "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz" + "version" "2.1.1" -escape-html@^1.0.3, escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" - integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= +"escape-html@^1.0.3", "escape-html@~1.0.3": + "integrity" "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + "resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" + "version" "1.0.3" -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== +"escape-string-regexp@^1.0.5": + "integrity" "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" + "version" "1.0.5" -escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== +"escape-string-regexp@^4.0.0": + "integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" + "version" "4.0.0" -eslint-scope@5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== +"eslint-scope@5.1.1": + "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" + "version" "5.1.1" dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" + "esrecurse" "^4.3.0" + "estraverse" "^4.1.1" -esprima@^4.0.0: - version "4.0.1" - resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== +"esprima@^4.0.0": + "integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + "resolved" "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" + "version" "4.0.1" -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== +"esrecurse@^4.3.0": + "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" + "version" "4.3.0" dependencies: - estraverse "^5.2.0" + "estraverse" "^5.2.0" -estraverse@^4.1.1: - version "4.3.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== +"estraverse@^4.1.1": + "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" + "version" "4.3.0" -estraverse@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" - integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== +"estraverse@^5.2.0": + "integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" + "version" "5.2.0" -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== +"esutils@^2.0.2": + "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" + "version" "2.0.3" -eta@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/eta/-/eta-2.2.0.tgz" - integrity sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g== +"eta@^2.0.0": + "integrity" "sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==" + "resolved" "https://registry.npmjs.org/eta/-/eta-2.2.0.tgz" + "version" "2.2.0" -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" - integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== +"etag@~1.8.1": + "integrity" "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + "resolved" "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" + "version" "1.8.1" -eval@^0.1.8: - version "0.1.8" - resolved "https://registry.npmjs.org/eval/-/eval-0.1.8.tgz" - integrity sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw== +"eval@^0.1.8": + "integrity" "sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==" + "resolved" "https://registry.npmjs.org/eval/-/eval-0.1.8.tgz" + "version" "0.1.8" dependencies: "@types/node" "*" - require-like ">= 0.1.1" + "require-like" ">= 0.1.1" -eventemitter3@^4.0.0: - version "4.0.7" - resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz" - integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== +"eventemitter3@^4.0.0": + "integrity" "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + "resolved" "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz" + "version" "4.0.7" -events@^3.2.0: - version "3.3.0" - resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz" - integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== +"events@^3.2.0": + "integrity" "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + "resolved" "https://registry.npmjs.org/events/-/events-3.3.0.tgz" + "version" "3.3.0" -execa@^5.0.0: - version "5.1.1" - resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== +"execa@^5.0.0": + "integrity" "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + "resolved" "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" + "version" "5.1.1" dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" + "cross-spawn" "^7.0.3" + "get-stream" "^6.0.0" + "human-signals" "^2.1.0" + "is-stream" "^2.0.0" + "merge-stream" "^2.0.0" + "npm-run-path" "^4.0.1" + "onetime" "^5.1.2" + "signal-exit" "^3.0.3" + "strip-final-newline" "^2.0.0" -express@^4.17.3: - version "4.18.1" - resolved "https://registry.npmjs.org/express/-/express-4.18.1.tgz" - integrity sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q== +"express@^4.17.3": + "integrity" "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==" + "resolved" "https://registry.npmjs.org/express/-/express-4.18.1.tgz" + "version" "4.18.1" dependencies: - accepts "~1.3.8" - array-flatten "1.1.1" - body-parser "1.20.0" - content-disposition "0.5.4" - content-type "~1.0.4" - cookie "0.5.0" - cookie-signature "1.0.6" - debug "2.6.9" - depd "2.0.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "1.2.0" - fresh "0.5.2" - http-errors "2.0.0" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "2.4.1" - parseurl "~1.3.3" - path-to-regexp "0.1.7" - proxy-addr "~2.0.7" - qs "6.10.3" - range-parser "~1.2.1" - safe-buffer "5.2.1" - send "0.18.0" - serve-static "1.15.0" - setprototypeof "1.2.0" - statuses "2.0.1" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" + "accepts" "~1.3.8" + "array-flatten" "1.1.1" + "body-parser" "1.20.0" + "content-disposition" "0.5.4" + "content-type" "~1.0.4" + "cookie" "0.5.0" + "cookie-signature" "1.0.6" + "debug" "2.6.9" + "depd" "2.0.0" + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "etag" "~1.8.1" + "finalhandler" "1.2.0" + "fresh" "0.5.2" + "http-errors" "2.0.0" + "merge-descriptors" "1.0.1" + "methods" "~1.1.2" + "on-finished" "2.4.1" + "parseurl" "~1.3.3" + "path-to-regexp" "0.1.7" + "proxy-addr" "~2.0.7" + "qs" "6.10.3" + "range-parser" "~1.2.1" + "safe-buffer" "5.2.1" + "send" "0.18.0" + "serve-static" "1.15.0" + "setprototypeof" "1.2.0" + "statuses" "2.0.1" + "type-is" "~1.6.18" + "utils-merge" "1.0.1" + "vary" "~1.1.2" -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" - integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== +"extend-shallow@^2.0.1": + "integrity" "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==" + "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" + "version" "2.0.1" dependencies: - is-extendable "^0.1.0" + "is-extendable" "^0.1.0" -extend@^3.0.0: - version "3.0.2" - resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" - integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== +"extend@^3.0.0": + "integrity" "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + "resolved" "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" + "version" "3.0.2" -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - 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== +"fast-deep-equal@^3.1.1", "fast-deep-equal@^3.1.3": + "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + "resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" + "version" "3.1.3" -fast-glob@^3.2.11, fast-glob@^3.2.9: - version "3.2.11" - resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz" - integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== +"fast-glob@^3.2.11", "fast-glob@^3.2.9": + "integrity" "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==" + "resolved" "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz" + "version" "3.2.11" dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" + "glob-parent" "^5.1.2" + "merge2" "^1.3.0" + "micromatch" "^4.0.4" -fast-json-stable-stringify@^2.0.0: - 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== +"fast-json-stable-stringify@^2.0.0": + "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + "resolved" "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" + "version" "2.1.0" -fast-url-parser@1.1.3: - version "1.1.3" - resolved "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz" - integrity sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0= +"fast-url-parser@1.1.3": + "integrity" "sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=" + "resolved" "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz" + "version" "1.1.3" dependencies: - punycode "^1.3.2" + "punycode" "^1.3.2" -fastq@^1.6.0: - version "1.11.0" - resolved "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz" - integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g== +"fastq@^1.6.0": + "integrity" "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==" + "resolved" "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz" + "version" "1.11.0" dependencies: - reusify "^1.0.4" + "reusify" "^1.0.4" -faye-websocket@^0.11.3: - version "0.11.4" - resolved "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz" - integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== +"faye-websocket@^0.11.3": + "integrity" "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + "resolved" "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz" + "version" "0.11.4" dependencies: - websocket-driver ">=0.5.1" + "websocket-driver" ">=0.5.1" -fbemitter@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz" - integrity sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw== +"fbemitter@^3.0.0": + "integrity" "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==" + "resolved" "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz" + "version" "3.0.0" dependencies: - fbjs "^3.0.0" + "fbjs" "^3.0.0" -fbjs-css-vars@^1.0.0: - version "1.0.2" - resolved "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz" - integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== +"fbjs-css-vars@^1.0.0": + "integrity" "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + "resolved" "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz" + "version" "1.0.2" -fbjs@^3.0.0, fbjs@^3.0.1: - version "3.0.5" - resolved "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz" - integrity sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg== +"fbjs@^3.0.0", "fbjs@^3.0.1": + "integrity" "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==" + "resolved" "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz" + "version" "3.0.5" dependencies: - cross-fetch "^3.1.5" - fbjs-css-vars "^1.0.0" - loose-envify "^1.0.0" - object-assign "^4.1.0" - promise "^7.1.1" - setimmediate "^1.0.5" - ua-parser-js "^1.0.35" + "cross-fetch" "^3.1.5" + "fbjs-css-vars" "^1.0.0" + "loose-envify" "^1.0.0" + "object-assign" "^4.1.0" + "promise" "^7.1.1" + "setimmediate" "^1.0.5" + "ua-parser-js" "^1.0.35" -feed@^4.2.2: - version "4.2.2" - resolved "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz" - integrity sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ== +"feed@^4.2.2": + "integrity" "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==" + "resolved" "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz" + "version" "4.2.2" dependencies: - xml-js "^1.6.11" + "xml-js" "^1.6.11" -file-loader@^6.2.0: - version "6.2.0" - resolved "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz" - integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== +"file-loader@*", "file-loader@^6.2.0": + "integrity" "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==" + "resolved" "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz" + "version" "6.2.0" dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" + "loader-utils" "^2.0.0" + "schema-utils" "^3.0.0" -filesize@^8.0.6: - version "8.0.7" - resolved "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz" - integrity sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ== +"filesize@^8.0.6": + "integrity" "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==" + "resolved" "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz" + "version" "8.0.7" -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== +"fill-range@^7.0.1": + "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" + "version" "7.0.1" dependencies: - to-regex-range "^5.0.1" + "to-regex-range" "^5.0.1" -finalhandler@1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz" - integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== +"finalhandler@1.2.0": + "integrity" "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" + "resolved" "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz" + "version" "1.2.0" dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "2.4.1" - parseurl "~1.3.3" - statuses "2.0.1" - unpipe "~1.0.0" + "debug" "2.6.9" + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "on-finished" "2.4.1" + "parseurl" "~1.3.3" + "statuses" "2.0.1" + "unpipe" "~1.0.0" -find-cache-dir@^3.3.1: - version "3.3.1" - resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz" - integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== +"find-cache-dir@^3.3.1": + "integrity" "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==" + "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz" + "version" "3.3.1" dependencies: - commondir "^1.0.1" - make-dir "^3.0.2" - pkg-dir "^4.1.0" + "commondir" "^1.0.1" + "make-dir" "^3.0.2" + "pkg-dir" "^4.1.0" -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== +"find-up@^3.0.0": + "integrity" "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" + "version" "3.0.0" dependencies: - locate-path "^3.0.0" + "locate-path" "^3.0.0" -find-up@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== +"find-up@^4.0.0": + "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" + "version" "4.1.0" dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" + "locate-path" "^5.0.0" + "path-exists" "^4.0.0" -find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== +"find-up@^5.0.0": + "integrity" "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" + "version" "5.0.0" dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" + "locate-path" "^6.0.0" + "path-exists" "^4.0.0" -flux@^4.0.1: - version "4.0.4" - resolved "https://registry.npmjs.org/flux/-/flux-4.0.4.tgz" - integrity sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw== +"flux@^4.0.1": + "integrity" "sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==" + "resolved" "https://registry.npmjs.org/flux/-/flux-4.0.4.tgz" + "version" "4.0.4" dependencies: - fbemitter "^3.0.0" - fbjs "^3.0.1" + "fbemitter" "^3.0.0" + "fbjs" "^3.0.1" -follow-redirects@^1.0.0, follow-redirects@^1.14.7: - version "1.15.1" - resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz" - integrity sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA== +"follow-redirects@^1.0.0", "follow-redirects@^1.14.7": + "integrity" "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==" + "resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz" + "version" "1.15.1" -fork-ts-checker-webpack-plugin@^6.5.0: - version "6.5.0" - resolved "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.0.tgz" - integrity sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw== +"fork-ts-checker-webpack-plugin@^6.5.0": + "integrity" "sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==" + "resolved" "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.0.tgz" + "version" "6.5.0" dependencies: "@babel/code-frame" "^7.8.3" "@types/json-schema" "^7.0.5" - chalk "^4.1.0" - chokidar "^3.4.2" - cosmiconfig "^6.0.0" - deepmerge "^4.2.2" - fs-extra "^9.0.0" - glob "^7.1.6" - memfs "^3.1.2" - minimatch "^3.0.4" - schema-utils "2.7.0" - semver "^7.3.2" - tapable "^1.0.0" + "chalk" "^4.1.0" + "chokidar" "^3.4.2" + "cosmiconfig" "^6.0.0" + "deepmerge" "^4.2.2" + "fs-extra" "^9.0.0" + "glob" "^7.1.6" + "memfs" "^3.1.2" + "minimatch" "^3.0.4" + "schema-utils" "2.7.0" + "semver" "^7.3.2" + "tapable" "^1.0.0" -forwarded@0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== +"forwarded@0.2.0": + "integrity" "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + "resolved" "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" + "version" "0.2.0" -fraction.js@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz" - integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== +"fraction.js@^4.3.6": + "integrity" "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" + "resolved" "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz" + "version" "4.3.7" -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" - integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== +"fresh@0.5.2": + "integrity" "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + "resolved" "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" + "version" "0.5.2" -fs-extra@^10.1.0: - version "10.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz" - integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== +"fs-extra@^10.1.0": + "integrity" "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz" + "version" "10.1.0" dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" + "graceful-fs" "^4.2.0" + "jsonfile" "^6.0.1" + "universalify" "^2.0.0" -fs-extra@^9.0.0: - version "9.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" - integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== +"fs-extra@^9.0.0": + "integrity" "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" + "version" "9.1.0" dependencies: - at-least-node "^1.0.0" - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" + "at-least-node" "^1.0.0" + "graceful-fs" "^4.2.0" + "jsonfile" "^6.0.1" + "universalify" "^2.0.0" -fs-monkey@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz" - integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q== +"fs-monkey@^1.0.3": + "integrity" "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + "resolved" "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz" + "version" "1.0.3" -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= +"fs.realpath@^1.0.0": + "integrity" "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" + "version" "1.0.0" -fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== +"fsevents@~2.3.2": + "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" + "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" + "version" "2.3.2" -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +"function-bind@^1.1.1": + "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" + "version" "1.1.1" -gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== +"gensync@^1.0.0-beta.1", "gensync@^1.0.0-beta.2": + "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" + "version" "1.0.0-beta.2" -get-intrinsic@^1.0.2: - version "1.1.1" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" - integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== +"get-intrinsic@^1.0.2": + "integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" + "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" + "version" "1.1.1" dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.1" + "function-bind" "^1.1.1" + "has" "^1.0.3" + "has-symbols" "^1.0.1" -get-own-enumerable-property-symbols@^3.0.0: - version "3.0.2" - resolved "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz" - integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== +"get-own-enumerable-property-symbols@^3.0.0": + "integrity" "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + "resolved" "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz" + "version" "3.0.2" -get-stream@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== +"get-stream@^4.1.0": + "integrity" "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" + "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" + "version" "4.1.0" dependencies: - pump "^3.0.0" + "pump" "^3.0.0" -get-stream@^5.1.0: - version "5.2.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== +"get-stream@^5.1.0": + "integrity" "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" + "version" "5.2.0" dependencies: - pump "^3.0.0" + "pump" "^3.0.0" -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== +"get-stream@^6.0.0": + "integrity" "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" + "version" "6.0.1" -github-slugger@^1.4.0: - version "1.5.0" - resolved "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz" - integrity sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw== +"github-slugger@^1.4.0": + "integrity" "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==" + "resolved" "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz" + "version" "1.5.0" -glob-parent@^5.1.2, glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== +"glob-parent@^5.1.2", "glob-parent@~5.1.2": + "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" + "version" "5.1.2" dependencies: - is-glob "^4.0.1" + "is-glob" "^4.0.1" -glob-parent@^6.0.1: - version "6.0.2" - resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" - integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== +"glob-parent@^6.0.1": + "integrity" "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" + "version" "6.0.2" dependencies: - is-glob "^4.0.3" + "is-glob" "^4.0.3" -glob-to-regexp@^0.4.1: - version "0.4.1" - resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" - integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== +"glob-to-regexp@^0.4.1": + "integrity" "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + "resolved" "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" + "version" "0.4.1" -glob@^7.0.0, glob@^7.1.3, glob@^7.1.6: - version "7.2.0" - resolved "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" - integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== +"glob@^7.0.0", "glob@^7.1.3", "glob@^7.1.6": + "integrity" "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==" + "resolved" "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" + "version" "7.2.0" dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" + "fs.realpath" "^1.0.0" + "inflight" "^1.0.4" + "inherits" "2" + "minimatch" "^3.0.4" + "once" "^1.3.0" + "path-is-absolute" "^1.0.0" -global-dirs@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz" - integrity sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA== +"global-dirs@^3.0.0": + "integrity" "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==" + "resolved" "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz" + "version" "3.0.0" dependencies: - ini "2.0.0" + "ini" "2.0.0" -global-modules@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz" - integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== +"global-modules@^2.0.0": + "integrity" "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==" + "resolved" "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz" + "version" "2.0.0" dependencies: - global-prefix "^3.0.0" + "global-prefix" "^3.0.0" -global-prefix@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz" - integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== +"global-prefix@^3.0.0": + "integrity" "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==" + "resolved" "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz" + "version" "3.0.0" dependencies: - ini "^1.3.5" - kind-of "^6.0.2" - which "^1.3.1" + "ini" "^1.3.5" + "kind-of" "^6.0.2" + "which" "^1.3.1" -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== +"globals@^11.1.0": + "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + "resolved" "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" + "version" "11.12.0" -globby@^11.0.1, globby@^11.0.4, globby@^11.1.0: - version "11.1.0" - resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" - integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== +"globby@^11.0.1", "globby@^11.0.4", "globby@^11.1.0": + "integrity" "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + "resolved" "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" + "version" "11.1.0" dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.2.9" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^3.0.0" + "array-union" "^2.1.0" + "dir-glob" "^3.0.1" + "fast-glob" "^3.2.9" + "ignore" "^5.2.0" + "merge2" "^1.4.1" + "slash" "^3.0.0" -globby@^13.1.1: - version "13.1.2" - resolved "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz" - integrity sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ== +"globby@^13.1.1": + "integrity" "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==" + "resolved" "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz" + "version" "13.1.2" dependencies: - dir-glob "^3.0.1" - fast-glob "^3.2.11" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^4.0.0" + "dir-glob" "^3.0.1" + "fast-glob" "^3.2.11" + "ignore" "^5.2.0" + "merge2" "^1.4.1" + "slash" "^4.0.0" -got@^9.6.0: - version "9.6.0" - resolved "https://registry.npmjs.org/got/-/got-9.6.0.tgz" - integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== +"got@^9.6.0": + "integrity" "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==" + "resolved" "https://registry.npmjs.org/got/-/got-9.6.0.tgz" + "version" "9.6.0" dependencies: "@sindresorhus/is" "^0.14.0" "@szmarczak/http-timer" "^1.1.2" - cacheable-request "^6.0.0" - decompress-response "^3.3.0" - duplexer3 "^0.1.4" - get-stream "^4.1.0" - lowercase-keys "^1.0.1" - mimic-response "^1.0.1" - p-cancelable "^1.0.0" - to-readable-stream "^1.0.0" - url-parse-lax "^3.0.0" + "cacheable-request" "^6.0.0" + "decompress-response" "^3.3.0" + "duplexer3" "^0.1.4" + "get-stream" "^4.1.0" + "lowercase-keys" "^1.0.1" + "mimic-response" "^1.0.1" + "p-cancelable" "^1.0.0" + "to-readable-stream" "^1.0.0" + "url-parse-lax" "^3.0.0" -graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: - version "4.2.10" - resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== +"graceful-fs@^4.1.2", "graceful-fs@^4.1.6", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4", "graceful-fs@^4.2.6", "graceful-fs@^4.2.9": + "integrity" "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" + "version" "4.2.10" -gray-matter@^4.0.3: - version "4.0.3" - resolved "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz" - integrity sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q== +"gray-matter@^4.0.3": + "integrity" "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==" + "resolved" "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz" + "version" "4.0.3" dependencies: - js-yaml "^3.13.1" - kind-of "^6.0.2" - section-matter "^1.0.0" - strip-bom-string "^1.0.0" + "js-yaml" "^3.13.1" + "kind-of" "^6.0.2" + "section-matter" "^1.0.0" + "strip-bom-string" "^1.0.0" -gzip-size@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz" - integrity sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q== +"gzip-size@^6.0.0": + "integrity" "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" + "resolved" "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz" + "version" "6.0.0" dependencies: - duplexer "^0.1.2" + "duplexer" "^0.1.2" -handle-thing@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz" - integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== +"handle-thing@^2.0.0": + "integrity" "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + "resolved" "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz" + "version" "2.0.1" -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== +"has-flag@^3.0.0": + "integrity" "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" + "version" "3.0.0" -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== +"has-flag@^4.0.0": + "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" + "version" "4.0.0" -has-symbols@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz" - integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== +"has-symbols@^1.0.1": + "integrity" "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz" + "version" "1.0.2" -has-yarn@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz" - integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== +"has-yarn@^2.1.0": + "integrity" "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==" + "resolved" "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz" + "version" "2.1.0" -has@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== +"has@^1.0.3": + "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" + "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz" + "version" "1.0.3" dependencies: - function-bind "^1.1.1" + "function-bind" "^1.1.1" -hast-to-hyperscript@^9.0.0: - version "9.0.1" - resolved "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz" - integrity sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA== +"hast-to-hyperscript@^9.0.0": + "integrity" "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==" + "resolved" "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz" + "version" "9.0.1" dependencies: "@types/unist" "^2.0.3" - comma-separated-tokens "^1.0.0" - property-information "^5.3.0" - space-separated-tokens "^1.0.0" - style-to-object "^0.3.0" - unist-util-is "^4.0.0" - web-namespaces "^1.0.0" + "comma-separated-tokens" "^1.0.0" + "property-information" "^5.3.0" + "space-separated-tokens" "^1.0.0" + "style-to-object" "^0.3.0" + "unist-util-is" "^4.0.0" + "web-namespaces" "^1.0.0" -hast-util-from-parse5@^6.0.0: - version "6.0.1" - resolved "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz" - integrity sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA== +"hast-util-from-parse5@^6.0.0": + "integrity" "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==" + "resolved" "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz" + "version" "6.0.1" dependencies: "@types/parse5" "^5.0.0" - hastscript "^6.0.0" - property-information "^5.0.0" - vfile "^4.0.0" - vfile-location "^3.2.0" - web-namespaces "^1.0.0" + "hastscript" "^6.0.0" + "property-information" "^5.0.0" + "vfile" "^4.0.0" + "vfile-location" "^3.2.0" + "web-namespaces" "^1.0.0" -hast-util-parse-selector@^2.0.0: - version "2.2.5" - resolved "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz" - integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ== +"hast-util-parse-selector@^2.0.0": + "integrity" "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" + "resolved" "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz" + "version" "2.2.5" -hast-util-raw@6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-6.0.1.tgz" - integrity sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig== +"hast-util-raw@6.0.1": + "integrity" "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==" + "resolved" "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-6.0.1.tgz" + "version" "6.0.1" dependencies: "@types/hast" "^2.0.0" - hast-util-from-parse5 "^6.0.0" - hast-util-to-parse5 "^6.0.0" - html-void-elements "^1.0.0" - parse5 "^6.0.0" - unist-util-position "^3.0.0" - vfile "^4.0.0" - web-namespaces "^1.0.0" - xtend "^4.0.0" - zwitch "^1.0.0" + "hast-util-from-parse5" "^6.0.0" + "hast-util-to-parse5" "^6.0.0" + "html-void-elements" "^1.0.0" + "parse5" "^6.0.0" + "unist-util-position" "^3.0.0" + "vfile" "^4.0.0" + "web-namespaces" "^1.0.0" + "xtend" "^4.0.0" + "zwitch" "^1.0.0" -hast-util-to-parse5@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz" - integrity sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ== +"hast-util-to-parse5@^6.0.0": + "integrity" "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==" + "resolved" "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz" + "version" "6.0.0" dependencies: - hast-to-hyperscript "^9.0.0" - property-information "^5.0.0" - web-namespaces "^1.0.0" - xtend "^4.0.0" - zwitch "^1.0.0" + "hast-to-hyperscript" "^9.0.0" + "property-information" "^5.0.0" + "web-namespaces" "^1.0.0" + "xtend" "^4.0.0" + "zwitch" "^1.0.0" -hastscript@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz" - integrity sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w== +"hastscript@^6.0.0": + "integrity" "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==" + "resolved" "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz" + "version" "6.0.0" dependencies: "@types/hast" "^2.0.0" - comma-separated-tokens "^1.0.0" - hast-util-parse-selector "^2.0.0" - property-information "^5.0.0" - space-separated-tokens "^1.0.0" + "comma-separated-tokens" "^1.0.0" + "hast-util-parse-selector" "^2.0.0" + "property-information" "^5.0.0" + "space-separated-tokens" "^1.0.0" -he@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/he/-/he-1.2.0.tgz" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== +"he@^1.2.0": + "integrity" "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + "resolved" "https://registry.npmjs.org/he/-/he-1.2.0.tgz" + "version" "1.2.0" -history@^4.9.0: - version "4.10.1" - resolved "https://registry.npmjs.org/history/-/history-4.10.1.tgz" - integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew== +"history@^4.9.0": + "integrity" "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==" + "resolved" "https://registry.npmjs.org/history/-/history-4.10.1.tgz" + "version" "4.10.1" dependencies: "@babel/runtime" "^7.1.2" - loose-envify "^1.2.0" - resolve-pathname "^3.0.0" - tiny-invariant "^1.0.2" - tiny-warning "^1.0.0" - value-equal "^1.0.1" + "loose-envify" "^1.2.0" + "resolve-pathname" "^3.0.0" + "tiny-invariant" "^1.0.2" + "tiny-warning" "^1.0.0" + "value-equal" "^1.0.1" -hoist-non-react-statics@^3.1.0: - version "3.3.2" - resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" - integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== +"hoist-non-react-statics@^3.1.0": + "integrity" "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" + "resolved" "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" + "version" "3.3.2" dependencies: - react-is "^16.7.0" + "react-is" "^16.7.0" -hpack.js@^2.1.6: - version "2.1.6" - resolved "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz" - integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== +"hpack.js@^2.1.6": + "integrity" "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" + "resolved" "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz" + "version" "2.1.6" dependencies: - inherits "^2.0.1" - obuf "^1.0.0" - readable-stream "^2.0.1" - wbuf "^1.1.0" + "inherits" "^2.0.1" + "obuf" "^1.0.0" + "readable-stream" "^2.0.1" + "wbuf" "^1.1.0" -html-entities@^2.3.2: - version "2.3.3" - resolved "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz" - integrity sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA== +"html-entities@^2.3.2": + "integrity" "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" + "resolved" "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz" + "version" "2.3.3" -html-minifier-terser@^6.0.2, html-minifier-terser@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz" - integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== +"html-minifier-terser@^6.0.2", "html-minifier-terser@^6.1.0": + "integrity" "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==" + "resolved" "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz" + "version" "6.1.0" dependencies: - camel-case "^4.1.2" - clean-css "^5.2.2" - commander "^8.3.0" - he "^1.2.0" - param-case "^3.0.4" - relateurl "^0.2.7" - terser "^5.10.0" + "camel-case" "^4.1.2" + "clean-css" "^5.2.2" + "commander" "^8.3.0" + "he" "^1.2.0" + "param-case" "^3.0.4" + "relateurl" "^0.2.7" + "terser" "^5.10.0" -html-tags@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz" - integrity sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg== +"html-tags@^3.2.0": + "integrity" "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==" + "resolved" "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz" + "version" "3.2.0" -html-void-elements@^1.0.0: - version "1.0.5" - resolved "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz" - integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w== +"html-void-elements@^1.0.0": + "integrity" "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==" + "resolved" "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz" + "version" "1.0.5" -html-webpack-plugin@^5.5.0: - version "5.5.0" - resolved "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz" - integrity sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw== +"html-webpack-plugin@^5.5.0": + "integrity" "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==" + "resolved" "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz" + "version" "5.5.0" dependencies: "@types/html-minifier-terser" "^6.0.0" - html-minifier-terser "^6.0.2" - lodash "^4.17.21" - pretty-error "^4.0.0" - tapable "^2.0.0" + "html-minifier-terser" "^6.0.2" + "lodash" "^4.17.21" + "pretty-error" "^4.0.0" + "tapable" "^2.0.0" -htmlparser2@^6.1.0: - version "6.1.0" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz" - integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== +"htmlparser2@^6.1.0": + "integrity" "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" + "resolved" "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz" + "version" "6.1.0" dependencies: - domelementtype "^2.0.1" - domhandler "^4.0.0" - domutils "^2.5.2" - entities "^2.0.0" + "domelementtype" "^2.0.1" + "domhandler" "^4.0.0" + "domutils" "^2.5.2" + "entities" "^2.0.0" -htmlparser2@^8.0.1: - version "8.0.2" - resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz" - integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== +"htmlparser2@^8.0.1": + "integrity" "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==" + "resolved" "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz" + "version" "8.0.2" dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.3" - domutils "^3.0.1" - entities "^4.4.0" + "domelementtype" "^2.3.0" + "domhandler" "^5.0.3" + "domutils" "^3.0.1" + "entities" "^4.4.0" -http-cache-semantics@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz" - integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== +"http-cache-semantics@^4.0.0": + "integrity" "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + "resolved" "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz" + "version" "4.1.0" -http-deceiver@^1.2.7: - version "1.2.7" - resolved "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz" - integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== +"http-deceiver@^1.2.7": + "integrity" "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + "resolved" "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz" + "version" "1.2.7" -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" - integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== +"http-errors@~1.6.2": + "integrity" "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" + "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" + "version" "1.6.3" dependencies: - depd "2.0.0" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses "2.0.1" - toidentifier "1.0.1" + "depd" "~1.1.2" + "inherits" "2.0.3" + "setprototypeof" "1.1.0" + "statuses" ">= 1.4.0 < 2" -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" - integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== +"http-errors@2.0.0": + "integrity" "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" + "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" + "version" "2.0.0" dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" + "depd" "2.0.0" + "inherits" "2.0.4" + "setprototypeof" "1.2.0" + "statuses" "2.0.1" + "toidentifier" "1.0.1" -http-parser-js@>=0.5.1: - version "0.5.8" - resolved "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz" - integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== +"http-parser-js@>=0.5.1": + "integrity" "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + "resolved" "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz" + "version" "0.5.8" -http-proxy-middleware@^2.0.3: - version "2.0.6" - resolved "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz" - integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== +"http-proxy-middleware@^2.0.3": + "integrity" "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" + "resolved" "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz" + "version" "2.0.6" dependencies: "@types/http-proxy" "^1.17.8" - http-proxy "^1.18.1" - is-glob "^4.0.1" - is-plain-obj "^3.0.0" - micromatch "^4.0.2" + "http-proxy" "^1.18.1" + "is-glob" "^4.0.1" + "is-plain-obj" "^3.0.0" + "micromatch" "^4.0.2" -http-proxy@^1.18.1: - version "1.18.1" - resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz" - integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== +"http-proxy@^1.18.1": + "integrity" "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + "resolved" "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz" + "version" "1.18.1" dependencies: - eventemitter3 "^4.0.0" - follow-redirects "^1.0.0" - requires-port "^1.0.0" + "eventemitter3" "^4.0.0" + "follow-redirects" "^1.0.0" + "requires-port" "^1.0.0" -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== +"human-signals@^2.1.0": + "integrity" "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + "resolved" "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" + "version" "2.1.0" -iconv-lite@0.4.24: - version "0.4.24" - resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== +"iconv-lite@0.4.24": + "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" + "version" "0.4.24" dependencies: - safer-buffer ">= 2.1.2 < 3" + "safer-buffer" ">= 2.1.2 < 3" -icss-utils@^5.0.0, icss-utils@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz" - integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== +"icss-utils@^5.0.0", "icss-utils@^5.1.0": + "integrity" "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + "resolved" "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz" + "version" "5.1.0" -ignore@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz" - integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== +"ignore@^5.2.0": + "integrity" "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" + "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz" + "version" "5.2.0" -image-size@^1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/image-size/-/image-size-1.0.2.tgz" - integrity sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg== +"image-size@^1.0.1": + "integrity" "sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==" + "resolved" "https://registry.npmjs.org/image-size/-/image-size-1.0.2.tgz" + "version" "1.0.2" dependencies: - queue "6.0.2" + "queue" "6.0.2" -immer@^9.0.7: - version "9.0.12" - resolved "https://registry.npmjs.org/immer/-/immer-9.0.12.tgz" - integrity sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA== +"immer@^9.0.7": + "integrity" "sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==" + "resolved" "https://registry.npmjs.org/immer/-/immer-9.0.12.tgz" + "version" "9.0.12" -import-fresh@^3.1.0, import-fresh@^3.2.1, import-fresh@^3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== +"import-fresh@^3.1.0", "import-fresh@^3.2.1", "import-fresh@^3.3.0": + "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" + "version" "3.3.0" dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" + "parent-module" "^1.0.0" + "resolve-from" "^4.0.0" -import-lazy@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz" - integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= +"import-lazy@^2.1.0": + "integrity" "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" + "resolved" "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz" + "version" "2.1.0" -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" - integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= +"imurmurhash@^0.1.4": + "integrity" "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + "resolved" "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" + "version" "0.1.4" -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== +"indent-string@^4.0.0": + "integrity" "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + "resolved" "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" + "version" "4.0.0" -infima@0.2.0-alpha.43: - version "0.2.0-alpha.43" - resolved "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.43.tgz" - integrity sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ== +"infima@0.2.0-alpha.43": + "integrity" "sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==" + "resolved" "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.43.tgz" + "version" "0.2.0-alpha.43" -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= +"inflight@^1.0.4": + "integrity" "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" + "resolved" "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" + "version" "1.0.6" dependencies: - once "^1.3.0" - wrappy "1" + "once" "^1.3.0" + "wrappy" "1" -inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: - version "2.0.4" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +"inherits@^2.0.0", "inherits@^2.0.1", "inherits@^2.0.3", "inherits@~2.0.3", "inherits@2", "inherits@2.0.4": + "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + "version" "2.0.4" -inherits@2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" - integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== +"inherits@2.0.3": + "integrity" "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" + "version" "2.0.3" -ini@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz" - integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== +"ini@^1.3.5", "ini@~1.3.0": + "integrity" "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "resolved" "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" + "version" "1.3.8" -ini@^1.3.5, ini@~1.3.0: - version "1.3.8" - resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== +"ini@2.0.0": + "integrity" "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + "resolved" "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz" + "version" "2.0.0" -inline-style-parser@0.1.1: - version "0.1.1" - resolved "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz" - integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== +"inline-style-parser@0.1.1": + "integrity" "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + "resolved" "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz" + "version" "0.1.1" -interpret@^1.0.0: - version "1.4.0" - resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz" - integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== +"interpret@^1.0.0": + "integrity" "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + "resolved" "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz" + "version" "1.4.0" -invariant@^2.2.4: - version "2.2.4" - resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz" - integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== +"invariant@^2.2.4": + "integrity" "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" + "resolved" "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz" + "version" "2.2.4" dependencies: - loose-envify "^1.0.0" + "loose-envify" "^1.0.0" -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== +"ipaddr.js@^2.0.1": + "integrity" "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" + "resolved" "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz" + "version" "2.0.1" -ipaddr.js@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz" - integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng== +"ipaddr.js@1.9.1": + "integrity" "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + "resolved" "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" + "version" "1.9.1" -is-alphabetical@1.0.4, is-alphabetical@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz" - integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== +"is-alphabetical@^1.0.0", "is-alphabetical@1.0.4": + "integrity" "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" + "resolved" "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz" + "version" "1.0.4" -is-alphanumerical@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz" - integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== +"is-alphanumerical@^1.0.0": + "integrity" "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==" + "resolved" "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz" + "version" "1.0.4" dependencies: - is-alphabetical "^1.0.0" - is-decimal "^1.0.0" + "is-alphabetical" "^1.0.0" + "is-decimal" "^1.0.0" -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" - integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= +"is-arrayish@^0.2.1": + "integrity" "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + "version" "0.2.1" -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== +"is-binary-path@~2.1.0": + "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" + "version" "2.1.0" dependencies: - binary-extensions "^2.0.0" + "binary-extensions" "^2.0.0" -is-buffer@^2.0.0: - version "2.0.5" - resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz" - integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== +"is-buffer@^2.0.0": + "integrity" "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" + "resolved" "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz" + "version" "2.0.5" -is-ci@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz" - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== +"is-ci@^2.0.0": + "integrity" "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" + "resolved" "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz" + "version" "2.0.0" dependencies: - ci-info "^2.0.0" + "ci-info" "^2.0.0" -is-core-module@^2.9.0: - version "2.10.0" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz" - integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== +"is-core-module@^2.9.0": + "integrity" "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==" + "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz" + "version" "2.10.0" dependencies: - has "^1.0.3" + "has" "^1.0.3" -is-decimal@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz" - integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== +"is-decimal@^1.0.0": + "integrity" "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==" + "resolved" "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz" + "version" "1.0.4" -is-docker@^2.0.0, is-docker@^2.1.1: - version "2.2.1" - resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== +"is-docker@^2.0.0", "is-docker@^2.1.1": + "integrity" "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + "resolved" "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" + "version" "2.2.1" -is-extendable@^0.1.0: - version "0.1.1" - resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" - integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== +"is-extendable@^0.1.0": + "integrity" "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" + "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" + "version" "0.1.1" -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" - integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= +"is-extglob@^2.1.1": + "integrity" "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" + "version" "2.1.1" -is-fullwidth-code-point@^3.0.0: - 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== +"is-fullwidth-code-point@^3.0.0": + "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" + "version" "3.0.0" -is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== +"is-glob@^4.0.1", "is-glob@^4.0.3", "is-glob@~4.0.1": + "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" + "version" "4.0.3" dependencies: - is-extglob "^2.1.1" + "is-extglob" "^2.1.1" -is-hexadecimal@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz" - integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== +"is-hexadecimal@^1.0.0": + "integrity" "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==" + "resolved" "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz" + "version" "1.0.4" -is-installed-globally@^0.4.0: - version "0.4.0" - resolved "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz" - integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== +"is-installed-globally@^0.4.0": + "integrity" "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" + "resolved" "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz" + "version" "0.4.0" dependencies: - global-dirs "^3.0.0" - is-path-inside "^3.0.2" + "global-dirs" "^3.0.0" + "is-path-inside" "^3.0.2" -is-npm@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz" - integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== +"is-npm@^5.0.0": + "integrity" "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==" + "resolved" "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz" + "version" "5.0.0" -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +"is-number@^7.0.0": + "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" + "version" "7.0.0" -is-obj@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz" - integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== +"is-obj@^1.0.1": + "integrity" "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==" + "resolved" "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz" + "version" "1.0.1" -is-obj@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" - integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== +"is-obj@^2.0.0": + "integrity" "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + "resolved" "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" + "version" "2.0.0" -is-path-cwd@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" - integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== +"is-path-cwd@^2.2.0": + "integrity" "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + "resolved" "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" + "version" "2.2.0" -is-path-inside@^3.0.2: - 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== +"is-path-inside@^3.0.2": + "integrity" "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + "resolved" "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" + "version" "3.0.3" -is-plain-obj@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz" - integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== +"is-plain-obj@^2.0.0": + "integrity" "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" + "resolved" "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz" + "version" "2.1.0" -is-plain-obj@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz" - integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== +"is-plain-obj@^3.0.0": + "integrity" "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + "resolved" "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz" + "version" "3.0.0" -is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== +"is-plain-object@^2.0.4": + "integrity" "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + "resolved" "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" + "version" "2.0.4" dependencies: - isobject "^3.0.1" + "isobject" "^3.0.1" -is-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz" - integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== +"is-regexp@^1.0.0": + "integrity" "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" + "resolved" "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz" + "version" "1.0.0" -is-root@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz" - integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== +"is-root@^2.1.0": + "integrity" "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + "resolved" "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz" + "version" "2.1.0" -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== +"is-stream@^2.0.0": + "integrity" "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" + "version" "2.0.1" -is-typedarray@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= +"is-typedarray@^1.0.0": + "integrity" "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + "resolved" "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" + "version" "1.0.0" -is-whitespace-character@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz" - integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w== +"is-whitespace-character@^1.0.0": + "integrity" "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==" + "resolved" "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz" + "version" "1.0.4" -is-word-character@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz" - integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA== +"is-word-character@^1.0.0": + "integrity" "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==" + "resolved" "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz" + "version" "1.0.4" -is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== +"is-wsl@^2.2.0": + "integrity" "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" + "version" "2.2.0" dependencies: - is-docker "^2.0.0" + "is-docker" "^2.0.0" -is-yarn-global@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz" - integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== +"is-yarn-global@^0.3.0": + "integrity" "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" + "resolved" "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz" + "version" "0.3.0" -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" - integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= +"isarray@~1.0.0": + "integrity" "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "resolved" "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + "version" "1.0.0" -isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== +"isarray@0.0.1": + "integrity" "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "resolved" "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + "version" "0.0.1" -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" - integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= +"isexe@^2.0.0": + "integrity" "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" + "version" "2.0.0" -isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" - integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= +"isobject@^3.0.1": + "integrity" "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "resolved" "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" + "version" "3.0.1" -jest-worker@^27.4.5, jest-worker@^27.5.1: - version "27.5.1" - resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz" - integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== +"jest-worker@^27.4.5", "jest-worker@^27.5.1": + "integrity" "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + "resolved" "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz" + "version" "27.5.1" dependencies: "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" + "merge-stream" "^2.0.0" + "supports-color" "^8.0.0" -joi@^17.6.0: - version "17.6.0" - resolved "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz" - integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw== +"joi@^17.6.0": + "integrity" "sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==" + "resolved" "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz" + "version" "17.6.0" dependencies: "@hapi/hoek" "^9.0.0" "@hapi/topo" "^5.0.0" @@ -4652,2650 +4669,2712 @@ joi@^17.6.0: "@sideway/formula" "^3.0.0" "@sideway/pinpoint" "^2.0.0" -"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== +"js-tokens@^3.0.0 || ^4.0.0", "js-tokens@^4.0.0": + "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + "version" "4.0.0" -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== +"js-yaml@^3.13.1": + "integrity" "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" + "version" "3.14.1" dependencies: - argparse "^1.0.7" - esprima "^4.0.0" + "argparse" "^1.0.7" + "esprima" "^4.0.0" -js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== +"js-yaml@^4.1.0": + "integrity" "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" + "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" + "version" "4.1.0" dependencies: - argparse "^2.0.1" + "argparse" "^2.0.1" -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== +"jsesc@^2.5.1": + "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" + "version" "2.5.2" -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== +"jsesc@~0.5.0": + "integrity" "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" + "version" "0.5.0" -json-buffer@3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz" - integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg= +"json-buffer@3.0.0": + "integrity" "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" + "resolved" "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz" + "version" "3.0.0" -json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: - 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== +"json-parse-even-better-errors@^2.3.0", "json-parse-even-better-errors@^2.3.1": + "integrity" "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + "resolved" "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" + "version" "2.3.1" -json-schema-traverse@^0.4.1: - 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== +"json-schema-traverse@^0.4.1": + "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" + "version" "0.4.1" -json-schema-traverse@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" - integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== +"json-schema-traverse@^1.0.0": + "integrity" "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" + "version" "1.0.0" -json5@^2.1.2, json5@^2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz" - integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== +"json5@^2.1.2", "json5@^2.2.1": + "integrity" "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==" + "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz" + "version" "2.2.1" -jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== +"jsonfile@^6.0.1": + "integrity" "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" + "version" "6.1.0" dependencies: - universalify "^2.0.0" + "universalify" "^2.0.0" optionalDependencies: - graceful-fs "^4.1.6" + "graceful-fs" "^4.1.6" -keyv@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz" - integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== +"keyv@^3.0.0": + "integrity" "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==" + "resolved" "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz" + "version" "3.1.0" dependencies: - json-buffer "3.0.0" + "json-buffer" "3.0.0" -kind-of@^6.0.0, kind-of@^6.0.2: - version "6.0.3" - resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== +"kind-of@^6.0.0", "kind-of@^6.0.2": + "integrity" "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" + "version" "6.0.3" -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== +"kleur@^3.0.3": + "integrity" "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + "resolved" "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" + "version" "3.0.3" -klona@^2.0.5: - version "2.0.5" - resolved "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz" - integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== +"klona@^2.0.5": + "integrity" "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" + "resolved" "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz" + "version" "2.0.5" -latest-version@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz" - integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== +"latest-version@^5.1.0": + "integrity" "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==" + "resolved" "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz" + "version" "5.1.0" dependencies: - package-json "^6.3.0" + "package-json" "^6.3.0" -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== +"leven@^3.1.0": + "integrity" "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + "resolved" "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" + "version" "3.1.0" -lilconfig@^2.0.3: - version "2.0.6" - resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz" - integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== +"lilconfig@^2.0.3": + "integrity" "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" + "resolved" "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz" + "version" "2.0.6" -lines-and-columns@^1.1.6: - version "1.1.6" - resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz" - integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= +"lines-and-columns@^1.1.6": + "integrity" "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + "resolved" "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz" + "version" "1.1.6" -loader-runner@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz" - integrity sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw== +"loader-runner@^4.2.0": + "integrity" "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==" + "resolved" "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz" + "version" "4.2.0" -loader-utils@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz" - integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== +"loader-utils@^2.0.0": + "integrity" "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz" + "version" "2.0.0" dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" + "big.js" "^5.2.2" + "emojis-list" "^3.0.0" + "json5" "^2.1.2" -loader-utils@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz" - integrity sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ== +"loader-utils@^3.2.0": + "integrity" "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz" + "version" "3.2.0" -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== +"locate-path@^3.0.0": + "integrity" "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" + "version" "3.0.0" dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" + "p-locate" "^3.0.0" + "path-exists" "^3.0.0" -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== +"locate-path@^5.0.0": + "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" + "version" "5.0.0" dependencies: - p-locate "^4.1.0" + "p-locate" "^4.1.0" -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== +"locate-path@^6.0.0": + "integrity" "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" + "version" "6.0.0" dependencies: - p-locate "^5.0.0" + "p-locate" "^5.0.0" -lodash.curry@^4.0.1: - version "4.1.1" - resolved "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz" - integrity sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA== +"lodash.curry@^4.0.1": + "integrity" "sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==" + "resolved" "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz" + "version" "4.1.1" -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== +"lodash.debounce@^4.0.8": + "integrity" "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + "resolved" "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" + "version" "4.0.8" -lodash.flow@^3.3.0: - version "3.5.0" - resolved "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz" - integrity sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw== +"lodash.flow@^3.3.0": + "integrity" "sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==" + "resolved" "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz" + "version" "3.5.0" -lodash.memoize@^4.1.2: - version "4.1.2" - resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" - integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== +"lodash.memoize@^4.1.2": + "integrity" "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + "resolved" "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" + "version" "4.1.2" -lodash.uniq@4.5.0, lodash.uniq@^4.5.0: - version "4.5.0" - resolved "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" - integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== +"lodash.uniq@^4.5.0", "lodash.uniq@4.5.0": + "integrity" "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + "resolved" "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" + "version" "4.5.0" -lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== +"lodash@^4.17.19", "lodash@^4.17.20", "lodash@^4.17.21": + "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" + "version" "4.17.21" -loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" - integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== +"loose-envify@^1.0.0", "loose-envify@^1.1.0", "loose-envify@^1.2.0", "loose-envify@^1.3.1", "loose-envify@^1.4.0": + "integrity" "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + "resolved" "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" + "version" "1.4.0" dependencies: - js-tokens "^3.0.0 || ^4.0.0" + "js-tokens" "^3.0.0 || ^4.0.0" -lower-case@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz" - integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== +"lower-case@^2.0.2": + "integrity" "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + "resolved" "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz" + "version" "2.0.2" dependencies: - tslib "^2.0.3" + "tslib" "^2.0.3" -lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz" - integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== +"lowercase-keys@^1.0.0", "lowercase-keys@^1.0.1": + "integrity" "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + "resolved" "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz" + "version" "1.0.1" -lowercase-keys@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz" - integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== +"lowercase-keys@^2.0.0": + "integrity" "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + "resolved" "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz" + "version" "2.0.0" -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== +"lru-cache@^6.0.0": + "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" + "version" "6.0.0" dependencies: - yallist "^4.0.0" + "yallist" "^4.0.0" -make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== +"make-dir@^3.0.0", "make-dir@^3.0.2", "make-dir@^3.1.0": + "integrity" "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" + "version" "3.1.0" dependencies: - semver "^6.0.0" + "semver" "^6.0.0" -markdown-escapes@^1.0.0: - version "1.0.4" - resolved "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz" - integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg== +"markdown-escapes@^1.0.0": + "integrity" "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==" + "resolved" "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz" + "version" "1.0.4" -mdast-squeeze-paragraphs@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz" - integrity sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ== +"mdast-squeeze-paragraphs@^4.0.0": + "integrity" "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==" + "resolved" "https://registry.npmjs.org/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz" + "version" "4.0.0" dependencies: - unist-util-remove "^2.0.0" + "unist-util-remove" "^2.0.0" -mdast-util-definitions@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz" - integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ== +"mdast-util-definitions@^4.0.0": + "integrity" "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==" + "resolved" "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz" + "version" "4.0.0" dependencies: - unist-util-visit "^2.0.0" + "unist-util-visit" "^2.0.0" -mdast-util-to-hast@10.0.1: - version "10.0.1" - resolved "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz" - integrity sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA== +"mdast-util-to-hast@10.0.1": + "integrity" "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==" + "resolved" "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz" + "version" "10.0.1" dependencies: "@types/mdast" "^3.0.0" "@types/unist" "^2.0.0" - mdast-util-definitions "^4.0.0" - mdurl "^1.0.0" - unist-builder "^2.0.0" - unist-util-generated "^1.0.0" - unist-util-position "^3.0.0" - unist-util-visit "^2.0.0" + "mdast-util-definitions" "^4.0.0" + "mdurl" "^1.0.0" + "unist-builder" "^2.0.0" + "unist-util-generated" "^1.0.0" + "unist-util-position" "^3.0.0" + "unist-util-visit" "^2.0.0" -mdast-util-to-string@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz" - integrity sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w== +"mdast-util-to-string@^2.0.0": + "integrity" "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==" + "resolved" "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz" + "version" "2.0.0" -mdn-data@2.0.14: - version "2.0.14" - resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" - integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== +"mdn-data@2.0.14": + "integrity" "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + "resolved" "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" + "version" "2.0.14" -mdurl@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz" - integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== +"mdurl@^1.0.0": + "integrity" "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" + "resolved" "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz" + "version" "1.0.1" -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" - integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== +"media-typer@0.3.0": + "integrity" "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + "resolved" "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" + "version" "0.3.0" -memfs@^3.1.2, memfs@^3.4.3: - version "3.4.7" - resolved "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz" - integrity sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw== +"medium-zoom@^1.0.8": + "integrity" "sha512-CjFVuFq/IfrdqesAXfg+hzlDKu6A2n80ZIq0Kl9kWjoHh9j1N9Uvk5X0/MmN0hOfm5F9YBswlClhcwnmtwz7gA==" + "resolved" "https://registry.npmjs.org/medium-zoom/-/medium-zoom-1.0.8.tgz" + "version" "1.0.8" + +"memfs@^3.1.2", "memfs@^3.4.3": + "integrity" "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==" + "resolved" "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz" + "version" "3.4.7" dependencies: - fs-monkey "^1.0.3" + "fs-monkey" "^1.0.3" -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" - integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== +"merge-descriptors@1.0.1": + "integrity" "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + "resolved" "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" + "version" "1.0.1" -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== +"merge-stream@^2.0.0": + "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + "resolved" "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" + "version" "2.0.0" -merge2@^1.3.0, merge2@^1.4.1: - version "1.4.1" - resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== +"merge2@^1.3.0", "merge2@^1.4.1": + "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + "resolved" "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" + "version" "1.4.1" -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== +"methods@~1.1.2": + "integrity" "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + "resolved" "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" + "version" "1.1.2" -micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: - version "4.0.5" - resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== +"micromatch@^4.0.2", "micromatch@^4.0.4", "micromatch@^4.0.5": + "integrity" "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" + "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" + "version" "4.0.5" dependencies: - braces "^3.0.2" - picomatch "^2.3.1" + "braces" "^3.0.2" + "picomatch" "^2.3.1" -mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": - version "1.52.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" - integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== +"mime-db@>= 1.43.0 < 2", "mime-db@1.52.0": + "integrity" "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" + "version" "1.52.0" -mime-db@~1.33.0: - version "1.33.0" - resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz" - integrity sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ== +"mime-db@~1.33.0": + "integrity" "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" + "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz" + "version" "1.33.0" -mime-types@2.1.18: - version "2.1.18" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz" - integrity sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ== +"mime-types@^2.1.27", "mime-types@^2.1.31", "mime-types@~2.1.17", "mime-types@~2.1.24", "mime-types@~2.1.34": + "integrity" "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" + "version" "2.1.35" dependencies: - mime-db "~1.33.0" + "mime-db" "1.52.0" -mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: - version "2.1.35" - resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" - integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== +"mime-types@2.1.18": + "integrity" "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==" + "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz" + "version" "2.1.18" dependencies: - mime-db "1.52.0" + "mime-db" "~1.33.0" -mime@1.6.0: - version "1.6.0" - resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== +"mime@^2.3.1": + "integrity" "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" + "resolved" "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz" + "version" "2.5.2" -mime@^2.3.1: - version "2.5.2" - resolved "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz" - integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== +"mime@1.6.0": + "integrity" "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + "resolved" "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" + "version" "1.6.0" -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== +"mimic-fn@^2.1.0": + "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" + "version" "2.1.0" -mimic-response@^1.0.0, mimic-response@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz" - integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== +"mimic-response@^1.0.0", "mimic-response@^1.0.1": + "integrity" "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + "resolved" "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz" + "version" "1.0.1" -mini-create-react-context@^0.4.0: - version "0.4.1" - resolved "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz" - integrity sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ== +"mini-create-react-context@^0.4.0": + "integrity" "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==" + "resolved" "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz" + "version" "0.4.1" dependencies: "@babel/runtime" "^7.12.1" - tiny-warning "^1.0.3" + "tiny-warning" "^1.0.3" -mini-css-extract-plugin@^2.6.1: - version "2.6.1" - resolved "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz" - integrity sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg== +"mini-css-extract-plugin@^2.6.1": + "integrity" "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==" + "resolved" "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz" + "version" "2.6.1" dependencies: - schema-utils "^4.0.0" + "schema-utils" "^4.0.0" -minimalistic-assert@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== +"minimalistic-assert@^1.0.0": + "integrity" "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + "resolved" "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" + "version" "1.0.1" -minimatch@3.0.4, minimatch@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== +"minimatch@^3.0.4", "minimatch@3.0.4": + "integrity" "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" + "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" + "version" "3.0.4" dependencies: - brace-expansion "^1.1.7" + "brace-expansion" "^1.1.7" -minimist@^1.2.0, minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== +"minimist@^1.2.0", "minimist@^1.2.5": + "integrity" "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz" + "version" "1.2.5" -ms@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== +"ms@2.0.0": + "integrity" "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" + "version" "2.0.0" -ms@2.1.2: - version "2.1.2" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +"ms@2.1.2": + "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" + "version" "2.1.2" -ms@2.1.3: - version "2.1.3" - resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== +"ms@2.1.3": + "integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + "version" "2.1.3" -multicast-dns@^7.2.5: - version "7.2.5" - resolved "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz" - integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== +"multicast-dns@^7.2.5": + "integrity" "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" + "resolved" "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz" + "version" "7.2.5" dependencies: - dns-packet "^5.2.2" - thunky "^1.0.2" + "dns-packet" "^5.2.2" + "thunky" "^1.0.2" -nanoid@^3.3.6: - version "3.3.6" - resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz" - integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== +"nanoid@^3.3.6": + "integrity" "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz" + "version" "3.3.6" -negotiator@0.6.3: - version "0.6.3" - resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== +"negotiator@0.6.3": + "integrity" "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + "resolved" "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" + "version" "0.6.3" -neo-async@^2.6.2: - version "2.6.2" - resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" - integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== +"neo-async@^2.6.2": + "integrity" "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + "resolved" "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" + "version" "2.6.2" -no-case@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz" - integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== +"no-case@^3.0.4": + "integrity" "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + "resolved" "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz" + "version" "3.0.4" dependencies: - lower-case "^2.0.2" - tslib "^2.0.3" + "lower-case" "^2.0.2" + "tslib" "^2.0.3" -node-emoji@^1.10.0: - version "1.11.0" - resolved "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz" - integrity sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A== +"node-emoji@^1.10.0": + "integrity" "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==" + "resolved" "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz" + "version" "1.11.0" dependencies: - lodash "^4.17.21" + "lodash" "^4.17.21" -node-fetch@^2.6.12: - version "2.6.12" - resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.12.tgz" - integrity sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g== +"node-fetch@^2.6.12": + "integrity" "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" + "resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz" + "version" "2.7.0" dependencies: - whatwg-url "^5.0.0" + "whatwg-url" "^5.0.0" -node-forge@^1: - version "1.3.1" - resolved "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz" - integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== +"node-forge@^1": + "integrity" "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + "resolved" "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz" + "version" "1.3.1" -node-releases@^2.0.13: - version "2.0.13" - resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz" - integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== +"node-releases@^2.0.13": + "integrity" "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz" + "version" "2.0.13" -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== +"normalize-path@^3.0.0", "normalize-path@~3.0.0": + "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" + "version" "3.0.0" -normalize-range@^0.1.2: - version "0.1.2" - resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" - integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== +"normalize-range@^0.1.2": + "integrity" "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + "resolved" "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" + "version" "0.1.2" -normalize-url@^4.1.0: - version "4.5.0" - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz" - integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ== +"normalize-url@^4.1.0": + "integrity" "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==" + "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz" + "version" "4.5.0" -normalize-url@^6.0.1: - version "6.1.0" - resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz" - integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== +"normalize-url@^6.0.1": + "integrity" "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz" + "version" "6.1.0" -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== +"npm-run-path@^4.0.1": + "integrity" "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" + "version" "4.0.1" dependencies: - path-key "^3.0.0" + "path-key" "^3.0.0" -nprogress@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz" - integrity sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA== +"nprogress@^0.2.0": + "integrity" "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==" + "resolved" "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz" + "version" "0.2.0" -nth-check@^2.0.0, nth-check@^2.0.1: - version "2.1.1" - resolved "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz" - integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== +"nth-check@^2.0.0", "nth-check@^2.0.1": + "integrity" "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + "resolved" "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz" + "version" "2.1.1" dependencies: - boolbase "^1.0.0" + "boolbase" "^1.0.0" -object-assign@^4.1.0, object-assign@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" - integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= +"object-assign@^4.1.0", "object-assign@^4.1.1": + "integrity" "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + "version" "4.1.1" -object-inspect@^1.9.0: - version "1.12.2" - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz" - integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== +"object-inspect@^1.9.0": + "integrity" "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" + "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz" + "version" "1.12.2" -object-keys@^1.0.12, object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== +"object-keys@^1.0.12", "object-keys@^1.1.1": + "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" + "version" "1.1.1" -object.assign@^4.1.0: - version "4.1.2" - resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" - integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== +"object.assign@^4.1.0": + "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" + "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" + "version" "4.1.2" dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - has-symbols "^1.0.1" - object-keys "^1.1.1" + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + "has-symbols" "^1.0.1" + "object-keys" "^1.1.1" -obuf@^1.0.0, obuf@^1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz" - integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== +"obuf@^1.0.0", "obuf@^1.1.2": + "integrity" "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + "resolved" "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz" + "version" "1.1.2" -on-finished@2.4.1: - version "2.4.1" - resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== +"on-finished@2.4.1": + "integrity" "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + "resolved" "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" + "version" "2.4.1" dependencies: - ee-first "1.1.1" + "ee-first" "1.1.1" -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== +"on-headers@~1.0.2": + "integrity" "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + "resolved" "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" + "version" "1.0.2" -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= +"once@^1.3.0", "once@^1.3.1", "once@^1.4.0": + "integrity" "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" + "resolved" "https://registry.npmjs.org/once/-/once-1.4.0.tgz" + "version" "1.4.0" dependencies: - wrappy "1" + "wrappy" "1" -onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== +"onetime@^5.1.2": + "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + "resolved" "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" + "version" "5.1.2" dependencies: - mimic-fn "^2.1.0" + "mimic-fn" "^2.1.0" -open@^8.0.9, open@^8.4.0: - version "8.4.0" - resolved "https://registry.npmjs.org/open/-/open-8.4.0.tgz" - integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== +"open@^8.0.9", "open@^8.4.0": + "integrity" "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==" + "resolved" "https://registry.npmjs.org/open/-/open-8.4.0.tgz" + "version" "8.4.0" dependencies: - define-lazy-prop "^2.0.0" - is-docker "^2.1.1" - is-wsl "^2.2.0" + "define-lazy-prop" "^2.0.0" + "is-docker" "^2.1.1" + "is-wsl" "^2.2.0" -opener@^1.5.2: - version "1.5.2" - resolved "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz" - integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== +"opener@^1.5.2": + "integrity" "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + "resolved" "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz" + "version" "1.5.2" -p-cancelable@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz" - integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== +"p-cancelable@^1.0.0": + "integrity" "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + "resolved" "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz" + "version" "1.1.0" -p-limit@^2.0.0, p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== +"p-limit@^2.0.0", "p-limit@^2.2.0": + "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" + "version" "2.3.0" dependencies: - p-try "^2.0.0" + "p-try" "^2.0.0" -p-limit@^3.0.2: - version "3.1.0" - resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== +"p-limit@^3.0.2": + "integrity" "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" + "version" "3.1.0" dependencies: - yocto-queue "^0.1.0" + "yocto-queue" "^0.1.0" -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== +"p-locate@^3.0.0": + "integrity" "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" + "version" "3.0.0" dependencies: - p-limit "^2.0.0" + "p-limit" "^2.0.0" -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== +"p-locate@^4.1.0": + "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" + "version" "4.1.0" dependencies: - p-limit "^2.2.0" + "p-limit" "^2.2.0" -p-locate@^5.0.0: - 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== +"p-locate@^5.0.0": + "integrity" "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" + "version" "5.0.0" dependencies: - p-limit "^3.0.2" + "p-limit" "^3.0.2" -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== +"p-map@^4.0.0": + "integrity" "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + "resolved" "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" + "version" "4.0.0" dependencies: - aggregate-error "^3.0.0" + "aggregate-error" "^3.0.0" -p-retry@^4.5.0: - version "4.6.2" - resolved "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz" - integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== +"p-retry@^4.5.0": + "integrity" "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" + "resolved" "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz" + "version" "4.6.2" dependencies: "@types/retry" "0.12.0" - retry "^0.13.1" + "retry" "^0.13.1" -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== +"p-try@^2.0.0": + "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + "resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" + "version" "2.2.0" -package-json@^6.3.0: - version "6.5.0" - resolved "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz" - integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ== +"package-json@^6.3.0": + "integrity" "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==" + "resolved" "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz" + "version" "6.5.0" dependencies: - got "^9.6.0" - registry-auth-token "^4.0.0" - registry-url "^5.0.0" - semver "^6.2.0" + "got" "^9.6.0" + "registry-auth-token" "^4.0.0" + "registry-url" "^5.0.0" + "semver" "^6.2.0" -param-case@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz" - integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== +"param-case@^3.0.4": + "integrity" "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" + "resolved" "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz" + "version" "3.0.4" dependencies: - dot-case "^3.0.4" - tslib "^2.0.3" + "dot-case" "^3.0.4" + "tslib" "^2.0.3" -parent-module@^1.0.0: - 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== +"parent-module@^1.0.0": + "integrity" "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + "resolved" "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" + "version" "1.0.1" dependencies: - callsites "^3.0.0" + "callsites" "^3.0.0" -parse-entities@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz" - integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== +"parse-entities@^2.0.0": + "integrity" "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==" + "resolved" "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz" + "version" "2.0.0" dependencies: - character-entities "^1.0.0" - character-entities-legacy "^1.0.0" - character-reference-invalid "^1.0.0" - is-alphanumerical "^1.0.0" - is-decimal "^1.0.0" - is-hexadecimal "^1.0.0" + "character-entities" "^1.0.0" + "character-entities-legacy" "^1.0.0" + "character-reference-invalid" "^1.0.0" + "is-alphanumerical" "^1.0.0" + "is-decimal" "^1.0.0" + "is-hexadecimal" "^1.0.0" -parse-json@^5.0.0: - version "5.2.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== +"parse-json@^5.0.0": + "integrity" "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + "version" "5.2.0" 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" + "error-ex" "^1.3.1" + "json-parse-even-better-errors" "^2.3.0" + "lines-and-columns" "^1.1.6" -parse-numeric-range@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz" - integrity sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ== +"parse-numeric-range@^1.3.0": + "integrity" "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==" + "resolved" "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz" + "version" "1.3.0" -parse5-htmlparser2-tree-adapter@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz" - integrity sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g== +"parse5-htmlparser2-tree-adapter@^7.0.0": + "integrity" "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==" + "resolved" "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz" + "version" "7.0.0" dependencies: - domhandler "^5.0.2" - parse5 "^7.0.0" + "domhandler" "^5.0.2" + "parse5" "^7.0.0" -parse5@^6.0.0: - version "6.0.1" - resolved "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" - integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== +"parse5@^6.0.0": + "integrity" "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + "resolved" "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" + "version" "6.0.1" -parse5@^7.0.0: - version "7.1.2" - resolved "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz" - integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== +"parse5@^7.0.0": + "integrity" "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" + "resolved" "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz" + "version" "7.1.2" dependencies: - entities "^4.4.0" + "entities" "^4.4.0" -parseurl@~1.3.2, parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== +"parseurl@~1.3.2", "parseurl@~1.3.3": + "integrity" "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + "resolved" "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" + "version" "1.3.3" -pascal-case@^3.1.2: - version "3.1.2" - resolved "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz" - integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== +"pascal-case@^3.1.2": + "integrity" "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" + "resolved" "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz" + "version" "3.1.2" dependencies: - no-case "^3.0.4" - tslib "^2.0.3" + "no-case" "^3.0.4" + "tslib" "^2.0.3" -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" - integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= +"path-exists@^3.0.0": + "integrity" "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" + "version" "3.0.0" -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== +"path-exists@^4.0.0": + "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" + "version" "4.0.0" -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= +"path-is-absolute@^1.0.0": + "integrity" "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "resolved" "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + "version" "1.0.1" -path-is-inside@1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz" - integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= +"path-is-inside@1.0.2": + "integrity" "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + "resolved" "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz" + "version" "1.0.2" -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== +"path-key@^3.0.0", "path-key@^3.1.0": + "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + "version" "3.1.1" -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +"path-parse@^1.0.7": + "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" + "version" "1.0.7" -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" - integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== - -path-to-regexp@2.2.1: - version "2.2.1" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz" - integrity sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ== - -path-to-regexp@^1.7.0: - version "1.8.0" - resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz" - integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== +"path-to-regexp@^1.7.0": + "integrity" "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" + "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz" + "version" "1.8.0" dependencies: - isarray "0.0.1" + "isarray" "0.0.1" -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== +"path-to-regexp@0.1.7": + "integrity" "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" + "version" "0.1.7" -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +"path-to-regexp@2.2.1": + "integrity" "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==" + "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz" + "version" "2.2.1" -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== +"path-type@^4.0.0": + "integrity" "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + "resolved" "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" + "version" "4.0.0" -pkg-dir@^4.1.0: - version "4.2.0" - resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== +"picocolors@^1.0.0": + "integrity" "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "resolved" "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" + "version" "1.0.0" + +"picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.3.1": + "integrity" "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" + "version" "2.3.1" + +"pkg-dir@^4.1.0": + "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" + "version" "4.2.0" dependencies: - find-up "^4.0.0" + "find-up" "^4.0.0" -pkg-up@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz" - integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== +"pkg-up@^3.1.0": + "integrity" "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + "resolved" "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz" + "version" "3.1.0" dependencies: - find-up "^3.0.0" + "find-up" "^3.0.0" -postcss-calc@^8.2.3: - version "8.2.4" - resolved "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz" - integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== +"plugin-image-zoom@github:flexanalytics/plugin-image-zoom": + "resolved" "git+ssh://git@github.com/flexanalytics/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de" + "version" "1.1.0" dependencies: - postcss-selector-parser "^6.0.9" - postcss-value-parser "^4.2.0" + "medium-zoom" "^1.0.8" -postcss-colormin@^5.3.1: - version "5.3.1" - resolved "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz" - integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ== +"postcss-calc@^8.2.3": + "integrity" "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" + "resolved" "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz" + "version" "8.2.4" dependencies: - browserslist "^4.21.4" - caniuse-api "^3.0.0" - colord "^2.9.1" - postcss-value-parser "^4.2.0" + "postcss-selector-parser" "^6.0.9" + "postcss-value-parser" "^4.2.0" -postcss-convert-values@^5.1.3: - version "5.1.3" - resolved "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz" - integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== +"postcss-colormin@^5.3.1": + "integrity" "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==" + "resolved" "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz" + "version" "5.3.1" dependencies: - browserslist "^4.21.4" - postcss-value-parser "^4.2.0" + "browserslist" "^4.21.4" + "caniuse-api" "^3.0.0" + "colord" "^2.9.1" + "postcss-value-parser" "^4.2.0" -postcss-discard-comments@^5.1.2: - version "5.1.2" - resolved "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz" - integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== - -postcss-discard-duplicates@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz" - integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== - -postcss-discard-empty@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz" - integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== - -postcss-discard-overridden@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz" - integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== - -postcss-discard-unused@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-5.1.0.tgz" - integrity sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw== +"postcss-convert-values@^5.1.3": + "integrity" "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==" + "resolved" "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz" + "version" "5.1.3" dependencies: - postcss-selector-parser "^6.0.5" + "browserslist" "^4.21.4" + "postcss-value-parser" "^4.2.0" -postcss-loader@^7.0.0: - version "7.0.1" - resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.0.1.tgz" - integrity sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ== +"postcss-discard-comments@^5.1.2": + "integrity" "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" + "resolved" "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz" + "version" "5.1.2" + +"postcss-discard-duplicates@^5.1.0": + "integrity" "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" + "resolved" "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz" + "version" "5.1.0" + +"postcss-discard-empty@^5.1.1": + "integrity" "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" + "resolved" "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz" + "version" "5.1.1" + +"postcss-discard-overridden@^5.1.0": + "integrity" "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" + "resolved" "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz" + "version" "5.1.0" + +"postcss-discard-unused@^5.1.0": + "integrity" "sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==" + "resolved" "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-5.1.0.tgz" + "version" "5.1.0" dependencies: - cosmiconfig "^7.0.0" - klona "^2.0.5" - semver "^7.3.7" + "postcss-selector-parser" "^6.0.5" -postcss-merge-idents@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-5.1.1.tgz" - integrity sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw== +"postcss-loader@^7.0.0": + "integrity" "sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==" + "resolved" "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.0.1.tgz" + "version" "7.0.1" dependencies: - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" + "cosmiconfig" "^7.0.0" + "klona" "^2.0.5" + "semver" "^7.3.7" -postcss-merge-longhand@^5.1.7: - version "5.1.7" - resolved "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz" - integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== +"postcss-merge-idents@^5.1.1": + "integrity" "sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==" + "resolved" "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-5.1.1.tgz" + "version" "5.1.1" dependencies: - postcss-value-parser "^4.2.0" - stylehacks "^5.1.1" + "cssnano-utils" "^3.1.0" + "postcss-value-parser" "^4.2.0" -postcss-merge-rules@^5.1.4: - version "5.1.4" - resolved "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz" - integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g== +"postcss-merge-longhand@^5.1.7": + "integrity" "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==" + "resolved" "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz" + "version" "5.1.7" dependencies: - browserslist "^4.21.4" - caniuse-api "^3.0.0" - cssnano-utils "^3.1.0" - postcss-selector-parser "^6.0.5" + "postcss-value-parser" "^4.2.0" + "stylehacks" "^5.1.1" -postcss-minify-font-values@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz" - integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== +"postcss-merge-rules@^5.1.4": + "integrity" "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==" + "resolved" "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz" + "version" "5.1.4" dependencies: - postcss-value-parser "^4.2.0" + "browserslist" "^4.21.4" + "caniuse-api" "^3.0.0" + "cssnano-utils" "^3.1.0" + "postcss-selector-parser" "^6.0.5" -postcss-minify-gradients@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz" - integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== +"postcss-minify-font-values@^5.1.0": + "integrity" "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" + "resolved" "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz" + "version" "5.1.0" dependencies: - colord "^2.9.1" - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" + "postcss-value-parser" "^4.2.0" -postcss-minify-params@^5.1.4: - version "5.1.4" - resolved "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz" - integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== +"postcss-minify-gradients@^5.1.1": + "integrity" "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" + "resolved" "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz" + "version" "5.1.1" dependencies: - browserslist "^4.21.4" - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" + "colord" "^2.9.1" + "cssnano-utils" "^3.1.0" + "postcss-value-parser" "^4.2.0" -postcss-minify-selectors@^5.2.1: - version "5.2.1" - resolved "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz" - integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== +"postcss-minify-params@^5.1.4": + "integrity" "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==" + "resolved" "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz" + "version" "5.1.4" dependencies: - postcss-selector-parser "^6.0.5" + "browserslist" "^4.21.4" + "cssnano-utils" "^3.1.0" + "postcss-value-parser" "^4.2.0" -postcss-modules-extract-imports@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz" - integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== - -postcss-modules-local-by-default@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz" - integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== +"postcss-minify-selectors@^5.2.1": + "integrity" "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" + "resolved" "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz" + "version" "5.2.1" dependencies: - icss-utils "^5.0.0" - postcss-selector-parser "^6.0.2" - postcss-value-parser "^4.1.0" + "postcss-selector-parser" "^6.0.5" -postcss-modules-scope@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz" - integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== +"postcss-modules-extract-imports@^3.0.0": + "integrity" "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + "resolved" "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz" + "version" "3.0.0" + +"postcss-modules-local-by-default@^4.0.0": + "integrity" "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==" + "resolved" "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz" + "version" "4.0.0" dependencies: - postcss-selector-parser "^6.0.4" + "icss-utils" "^5.0.0" + "postcss-selector-parser" "^6.0.2" + "postcss-value-parser" "^4.1.0" -postcss-modules-values@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz" - integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== +"postcss-modules-scope@^3.0.0": + "integrity" "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" + "resolved" "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz" + "version" "3.0.0" dependencies: - icss-utils "^5.0.0" + "postcss-selector-parser" "^6.0.4" -postcss-normalize-charset@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz" - integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== - -postcss-normalize-display-values@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz" - integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== +"postcss-modules-values@^4.0.0": + "integrity" "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + "resolved" "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz" + "version" "4.0.0" dependencies: - postcss-value-parser "^4.2.0" + "icss-utils" "^5.0.0" -postcss-normalize-positions@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz" - integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== +"postcss-normalize-charset@^5.1.0": + "integrity" "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" + "resolved" "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz" + "version" "5.1.0" + +"postcss-normalize-display-values@^5.1.0": + "integrity" "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz" + "version" "5.1.0" dependencies: - postcss-value-parser "^4.2.0" + "postcss-value-parser" "^4.2.0" -postcss-normalize-repeat-style@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz" - integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== +"postcss-normalize-positions@^5.1.1": + "integrity" "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" + "resolved" "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz" + "version" "5.1.1" dependencies: - postcss-value-parser "^4.2.0" + "postcss-value-parser" "^4.2.0" -postcss-normalize-string@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz" - integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== +"postcss-normalize-repeat-style@^5.1.1": + "integrity" "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" + "resolved" "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz" + "version" "5.1.1" dependencies: - postcss-value-parser "^4.2.0" + "postcss-value-parser" "^4.2.0" -postcss-normalize-timing-functions@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz" - integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== +"postcss-normalize-string@^5.1.0": + "integrity" "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" + "resolved" "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz" + "version" "5.1.0" dependencies: - postcss-value-parser "^4.2.0" + "postcss-value-parser" "^4.2.0" -postcss-normalize-unicode@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz" - integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== +"postcss-normalize-timing-functions@^5.1.0": + "integrity" "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" + "resolved" "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz" + "version" "5.1.0" dependencies: - browserslist "^4.21.4" - postcss-value-parser "^4.2.0" + "postcss-value-parser" "^4.2.0" -postcss-normalize-url@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz" - integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== +"postcss-normalize-unicode@^5.1.1": + "integrity" "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz" + "version" "5.1.1" dependencies: - normalize-url "^6.0.1" - postcss-value-parser "^4.2.0" + "browserslist" "^4.21.4" + "postcss-value-parser" "^4.2.0" -postcss-normalize-whitespace@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz" - integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== +"postcss-normalize-url@^5.1.0": + "integrity" "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" + "resolved" "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz" + "version" "5.1.0" dependencies: - postcss-value-parser "^4.2.0" + "normalize-url" "^6.0.1" + "postcss-value-parser" "^4.2.0" -postcss-ordered-values@^5.1.3: - version "5.1.3" - resolved "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz" - integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== +"postcss-normalize-whitespace@^5.1.1": + "integrity" "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz" + "version" "5.1.1" dependencies: - cssnano-utils "^3.1.0" - postcss-value-parser "^4.2.0" + "postcss-value-parser" "^4.2.0" -postcss-reduce-idents@^5.2.0: - version "5.2.0" - resolved "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-5.2.0.tgz" - integrity sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg== +"postcss-ordered-values@^5.1.3": + "integrity" "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" + "resolved" "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz" + "version" "5.1.3" dependencies: - postcss-value-parser "^4.2.0" + "cssnano-utils" "^3.1.0" + "postcss-value-parser" "^4.2.0" -postcss-reduce-initial@^5.1.2: - version "5.1.2" - resolved "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz" - integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg== +"postcss-reduce-idents@^5.2.0": + "integrity" "sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==" + "resolved" "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-5.2.0.tgz" + "version" "5.2.0" dependencies: - browserslist "^4.21.4" - caniuse-api "^3.0.0" + "postcss-value-parser" "^4.2.0" -postcss-reduce-transforms@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz" - integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== +"postcss-reduce-initial@^5.1.2": + "integrity" "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==" + "resolved" "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz" + "version" "5.1.2" dependencies: - postcss-value-parser "^4.2.0" + "browserslist" "^4.21.4" + "caniuse-api" "^3.0.0" -postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: - version "6.0.10" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz" - integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== +"postcss-reduce-transforms@^5.1.0": + "integrity" "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" + "resolved" "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz" + "version" "5.1.0" dependencies: - cssesc "^3.0.0" - util-deprecate "^1.0.2" + "postcss-value-parser" "^4.2.0" -postcss-sort-media-queries@^4.2.1: - version "4.4.1" - resolved "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-4.4.1.tgz" - integrity sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw== +"postcss-selector-parser@^6.0.2", "postcss-selector-parser@^6.0.4", "postcss-selector-parser@^6.0.5", "postcss-selector-parser@^6.0.9": + "integrity" "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==" + "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz" + "version" "6.0.10" dependencies: - sort-css-media-queries "2.1.0" + "cssesc" "^3.0.0" + "util-deprecate" "^1.0.2" -postcss-svgo@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz" - integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== +"postcss-sort-media-queries@^4.2.1": + "integrity" "sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw==" + "resolved" "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-4.4.1.tgz" + "version" "4.4.1" dependencies: - postcss-value-parser "^4.2.0" - svgo "^2.7.0" + "sort-css-media-queries" "2.1.0" -postcss-unique-selectors@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz" - integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== +"postcss-svgo@^5.1.0": + "integrity" "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" + "resolved" "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz" + "version" "5.1.0" dependencies: - postcss-selector-parser "^6.0.5" + "postcss-value-parser" "^4.2.0" + "svgo" "^2.7.0" -postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: - version "4.2.0" - resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" - integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== - -postcss-zindex@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-5.1.0.tgz" - integrity sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A== - -postcss@^8.3.11, postcss@^8.4.13, postcss@^8.4.14, postcss@^8.4.7: - version "8.4.27" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz" - integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ== +"postcss-unique-selectors@^5.1.1": + "integrity" "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" + "resolved" "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz" + "version" "5.1.1" dependencies: - nanoid "^3.3.6" - picocolors "^1.0.0" - source-map-js "^1.0.2" + "postcss-selector-parser" "^6.0.5" -prepend-http@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz" - integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc= +"postcss-value-parser@^4.1.0", "postcss-value-parser@^4.2.0": + "integrity" "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" + "version" "4.2.0" -pretty-error@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz" - integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== +"postcss-zindex@^5.1.0": + "integrity" "sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==" + "resolved" "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-5.1.0.tgz" + "version" "5.1.0" + +"postcss@^7.0.0 || ^8.0.1", "postcss@^8.0.9", "postcss@^8.1.0", "postcss@^8.2.15", "postcss@^8.2.2", "postcss@^8.3.11", "postcss@^8.4.13", "postcss@^8.4.14", "postcss@^8.4.16", "postcss@^8.4.7": + "integrity" "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==" + "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz" + "version" "8.4.27" dependencies: - lodash "^4.17.20" - renderkid "^3.0.0" + "nanoid" "^3.3.6" + "picocolors" "^1.0.0" + "source-map-js" "^1.0.2" -pretty-time@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz" - integrity sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA== +"prepend-http@^2.0.0": + "integrity" "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" + "resolved" "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz" + "version" "2.0.0" -prism-react-renderer@^1.3.5: - version "1.3.5" - resolved "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-1.3.5.tgz" - integrity sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg== - -prismjs@^1.28.0: - version "1.29.0" - resolved "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz" - integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q== - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -promise@^7.1.1: - version "7.3.1" - resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== +"pretty-error@^4.0.0": + "integrity" "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==" + "resolved" "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz" + "version" "4.0.0" dependencies: - asap "~2.0.3" + "lodash" "^4.17.20" + "renderkid" "^3.0.0" -prompts@^2.4.2: - version "2.4.2" - resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== +"pretty-time@^1.1.0": + "integrity" "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==" + "resolved" "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz" + "version" "1.1.0" + +"prism-react-renderer@^1.3.5": + "integrity" "sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==" + "resolved" "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-1.3.5.tgz" + "version" "1.3.5" + +"prismjs@^1.28.0": + "integrity" "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==" + "resolved" "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz" + "version" "1.29.0" + +"process-nextick-args@~2.0.0": + "integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + "resolved" "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" + "version" "2.0.1" + +"promise@^7.1.1": + "integrity" "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==" + "resolved" "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz" + "version" "7.3.1" dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" + "asap" "~2.0.3" -prop-types@^15.6.2, prop-types@^15.7.2: - version "15.7.2" - resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz" - integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== +"prompts@^2.4.2": + "integrity" "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + "resolved" "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" + "version" "2.4.2" dependencies: - loose-envify "^1.4.0" - object-assign "^4.1.1" - react-is "^16.8.1" + "kleur" "^3.0.3" + "sisteransi" "^1.0.5" -property-information@^5.0.0, property-information@^5.3.0: - version "5.6.0" - resolved "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz" - integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA== +"prop-types@^15.0.0", "prop-types@^15.6.2", "prop-types@^15.7.2": + "integrity" "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==" + "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz" + "version" "15.7.2" dependencies: - xtend "^4.0.0" + "loose-envify" "^1.4.0" + "object-assign" "^4.1.1" + "react-is" "^16.8.1" -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== +"property-information@^5.0.0", "property-information@^5.3.0": + "integrity" "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==" + "resolved" "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz" + "version" "5.6.0" dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" + "xtend" "^4.0.0" -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== +"proxy-addr@~2.0.7": + "integrity" "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + "resolved" "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz" + "version" "2.0.7" dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" + "forwarded" "0.2.0" + "ipaddr.js" "1.9.1" -punycode@^1.3.2: - version "1.4.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" - integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= - -punycode@^2.1.0: - version "2.1.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -pupa@^2.1.1: - version "2.1.1" - resolved "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz" - integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== +"pump@^3.0.0": + "integrity" "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + "resolved" "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" + "version" "3.0.0" dependencies: - escape-goat "^2.0.0" + "end-of-stream" "^1.1.0" + "once" "^1.3.1" -pure-color@^1.2.0: - version "1.3.0" - resolved "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz" - integrity sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA== +"punycode@^1.3.2": + "integrity" "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + "resolved" "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" + "version" "1.4.1" -qs@6.10.3: - version "6.10.3" - resolved "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz" - integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ== +"punycode@^2.1.0": + "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + "resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" + "version" "2.1.1" + +"pupa@^2.1.1": + "integrity" "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==" + "resolved" "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz" + "version" "2.1.1" dependencies: - side-channel "^1.0.4" + "escape-goat" "^2.0.0" -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== +"pure-color@^1.2.0": + "integrity" "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==" + "resolved" "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz" + "version" "1.3.0" -queue@6.0.2: - version "6.0.2" - resolved "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz" - integrity sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA== +"qs@6.10.3": + "integrity" "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==" + "resolved" "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz" + "version" "6.10.3" dependencies: - inherits "~2.0.3" + "side-channel" "^1.0.4" -randombytes@^2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" - integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== +"queue-microtask@^1.2.2": + "integrity" "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + "resolved" "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" + "version" "1.2.3" + +"queue@6.0.2": + "integrity" "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==" + "resolved" "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz" + "version" "6.0.2" dependencies: - safe-buffer "^5.1.0" + "inherits" "~2.0.3" -range-parser@1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz" - integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4= - -range-parser@^1.2.1, range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== - -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== +"randombytes@^2.1.0": + "integrity" "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + "resolved" "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" + "version" "2.1.0" dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" + "safe-buffer" "^5.1.0" -rc@^1.2.8: - version "1.2.8" - resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== +"range-parser@^1.2.1", "range-parser@~1.2.1": + "integrity" "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + "resolved" "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" + "version" "1.2.1" + +"range-parser@1.2.0": + "integrity" "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" + "resolved" "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz" + "version" "1.2.0" + +"raw-body@2.5.1": + "integrity" "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" + "resolved" "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz" + "version" "2.5.1" dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" + "bytes" "3.1.2" + "http-errors" "2.0.0" + "iconv-lite" "0.4.24" + "unpipe" "1.0.0" -react-base16-styling@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.6.0.tgz" - integrity sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ== +"rc@^1.2.8": + "integrity" "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + "resolved" "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz" + "version" "1.2.8" dependencies: - base16 "^1.0.0" - lodash.curry "^4.0.1" - lodash.flow "^3.3.0" - pure-color "^1.2.0" + "deep-extend" "^0.6.0" + "ini" "~1.3.0" + "minimist" "^1.2.0" + "strip-json-comments" "~2.0.1" -react-dev-utils@^12.0.1: - version "12.0.1" - resolved "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz" - integrity sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ== +"react-base16-styling@^0.6.0": + "integrity" "sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==" + "resolved" "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.6.0.tgz" + "version" "0.6.0" + dependencies: + "base16" "^1.0.0" + "lodash.curry" "^4.0.1" + "lodash.flow" "^3.3.0" + "pure-color" "^1.2.0" + +"react-dev-utils@^12.0.1": + "integrity" "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==" + "resolved" "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz" + "version" "12.0.1" dependencies: "@babel/code-frame" "^7.16.0" - address "^1.1.2" - browserslist "^4.18.1" - chalk "^4.1.2" - cross-spawn "^7.0.3" - detect-port-alt "^1.1.6" - escape-string-regexp "^4.0.0" - filesize "^8.0.6" - find-up "^5.0.0" - fork-ts-checker-webpack-plugin "^6.5.0" - global-modules "^2.0.0" - globby "^11.0.4" - gzip-size "^6.0.0" - immer "^9.0.7" - is-root "^2.1.0" - loader-utils "^3.2.0" - open "^8.4.0" - pkg-up "^3.1.0" - prompts "^2.4.2" - react-error-overlay "^6.0.11" - recursive-readdir "^2.2.2" - shell-quote "^1.7.3" - strip-ansi "^6.0.1" - text-table "^0.2.0" + "address" "^1.1.2" + "browserslist" "^4.18.1" + "chalk" "^4.1.2" + "cross-spawn" "^7.0.3" + "detect-port-alt" "^1.1.6" + "escape-string-regexp" "^4.0.0" + "filesize" "^8.0.6" + "find-up" "^5.0.0" + "fork-ts-checker-webpack-plugin" "^6.5.0" + "global-modules" "^2.0.0" + "globby" "^11.0.4" + "gzip-size" "^6.0.0" + "immer" "^9.0.7" + "is-root" "^2.1.0" + "loader-utils" "^3.2.0" + "open" "^8.4.0" + "pkg-up" "^3.1.0" + "prompts" "^2.4.2" + "react-error-overlay" "^6.0.11" + "recursive-readdir" "^2.2.2" + "shell-quote" "^1.7.3" + "strip-ansi" "^6.0.1" + "text-table" "^0.2.0" -react-dom@^17.0.2: - version "17.0.2" - resolved "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz" - integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== +"react-dom@*", "react-dom@^16.6.0 || ^17.0.0 || ^18.0.0", "react-dom@^16.8.4 || ^17.0.0", "react-dom@^17.0.0 || ^16.3.0 || ^15.5.4", "react-dom@^17.0.2", "react-dom@>= 16.8.0 < 19.0.0": + "integrity" "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==" + "resolved" "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz" + "version" "17.0.2" dependencies: - loose-envify "^1.1.0" - object-assign "^4.1.1" - scheduler "^0.20.2" + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" + "scheduler" "^0.20.2" -react-error-overlay@^6.0.11: - version "6.0.11" - resolved "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz" - integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg== +"react-error-overlay@^6.0.11": + "integrity" "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + "resolved" "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz" + "version" "6.0.11" -react-fast-compare@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz" - integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== +"react-fast-compare@^3.2.0": + "integrity" "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" + "resolved" "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz" + "version" "3.2.0" -react-helmet-async@*, react-helmet-async@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.3.0.tgz" - integrity sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg== +"react-helmet-async@*", "react-helmet-async@^1.3.0": + "integrity" "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==" + "resolved" "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.3.0.tgz" + "version" "1.3.0" dependencies: "@babel/runtime" "^7.12.5" - invariant "^2.2.4" - prop-types "^15.7.2" - react-fast-compare "^3.2.0" - shallowequal "^1.1.0" + "invariant" "^2.2.4" + "prop-types" "^15.7.2" + "react-fast-compare" "^3.2.0" + "shallowequal" "^1.1.0" -react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1: - version "16.13.1" - resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" - integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== +"react-is@^16.6.0", "react-is@^16.7.0", "react-is@^16.8.1": + "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + "version" "16.13.1" -react-json-view@^1.21.3: - version "1.21.3" - resolved "https://registry.npmjs.org/react-json-view/-/react-json-view-1.21.3.tgz" - integrity sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw== +"react-json-view@^1.21.3": + "integrity" "sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==" + "resolved" "https://registry.npmjs.org/react-json-view/-/react-json-view-1.21.3.tgz" + "version" "1.21.3" dependencies: - flux "^4.0.1" - react-base16-styling "^0.6.0" - react-lifecycles-compat "^3.0.4" - react-textarea-autosize "^8.3.2" + "flux" "^4.0.1" + "react-base16-styling" "^0.6.0" + "react-lifecycles-compat" "^3.0.4" + "react-textarea-autosize" "^8.3.2" -react-lifecycles-compat@^3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz" - integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== +"react-lifecycles-compat@^3.0.4": + "integrity" "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + "resolved" "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz" + "version" "3.0.4" -react-loadable-ssr-addon-v5-slorber@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.1.tgz" - integrity sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A== +"react-loadable-ssr-addon-v5-slorber@^1.0.1": + "integrity" "sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==" + "resolved" "https://registry.npmjs.org/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.1.tgz" + "version" "1.0.1" dependencies: "@babel/runtime" "^7.10.3" -react-router-config@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz" - integrity sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg== +"react-loadable@*", "react-loadable@npm:@docusaurus/react-loadable@5.5.2": + "integrity" "sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==" + "resolved" "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz" + "version" "5.5.2" + dependencies: + "@types/react" "*" + "prop-types" "^15.6.2" + +"react-router-config@^5.1.1": + "integrity" "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==" + "resolved" "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz" + "version" "5.1.1" dependencies: "@babel/runtime" "^7.1.2" -react-router-dom@^5.3.3: - version "5.3.3" - resolved "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.3.tgz" - integrity sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng== +"react-router-dom@^5.3.3": + "integrity" "sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng==" + "resolved" "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.3.tgz" + "version" "5.3.3" dependencies: "@babel/runtime" "^7.12.13" - history "^4.9.0" - loose-envify "^1.3.1" - prop-types "^15.6.2" - react-router "5.3.3" - tiny-invariant "^1.0.2" - tiny-warning "^1.0.0" + "history" "^4.9.0" + "loose-envify" "^1.3.1" + "prop-types" "^15.6.2" + "react-router" "5.3.3" + "tiny-invariant" "^1.0.2" + "tiny-warning" "^1.0.0" -react-router@5.3.3, react-router@^5.3.3: - version "5.3.3" - resolved "https://registry.npmjs.org/react-router/-/react-router-5.3.3.tgz" - integrity sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w== +"react-router@^5.3.3", "react-router@>=5", "react-router@5.3.3": + "integrity" "sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w==" + "resolved" "https://registry.npmjs.org/react-router/-/react-router-5.3.3.tgz" + "version" "5.3.3" dependencies: "@babel/runtime" "^7.12.13" - history "^4.9.0" - hoist-non-react-statics "^3.1.0" - loose-envify "^1.3.1" - mini-create-react-context "^0.4.0" - path-to-regexp "^1.7.0" - prop-types "^15.6.2" - react-is "^16.6.0" - tiny-invariant "^1.0.2" - tiny-warning "^1.0.0" + "history" "^4.9.0" + "hoist-non-react-statics" "^3.1.0" + "loose-envify" "^1.3.1" + "mini-create-react-context" "^0.4.0" + "path-to-regexp" "^1.7.0" + "prop-types" "^15.6.2" + "react-is" "^16.6.0" + "tiny-invariant" "^1.0.2" + "tiny-warning" "^1.0.0" -react-textarea-autosize@^8.3.2: - version "8.5.2" - resolved "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.2.tgz" - integrity sha512-uOkyjkEl0ByEK21eCJMHDGBAAd/BoFQBawYK5XItjAmCTeSbjxghd8qnt7nzsLYzidjnoObu6M26xts0YGKsGg== +"react-textarea-autosize@^8.3.2": + "integrity" "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==" + "resolved" "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz" + "version" "8.5.3" dependencies: "@babel/runtime" "^7.20.13" - use-composed-ref "^1.3.0" - use-latest "^1.2.1" + "use-composed-ref" "^1.3.0" + "use-latest" "^1.2.1" -react@^17.0.2: - version "17.0.2" - resolved "https://registry.npmjs.org/react/-/react-17.0.2.tgz" - integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== +"react@*", "react@^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", "react@^15.0.2 || ^16.0.0 || ^17.0.0", "react@^16.13.1 || ^17.0.0", "react@^16.6.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.8.4 || ^17.0.0", "react@^17.0.0 || ^16.3.0 || ^15.5.4", "react@^17.0.2", "react@>= 16.8.0 < 19.0.0", "react@>=0.14.9", "react@>=15", "react@17.0.2": + "integrity" "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==" + "resolved" "https://registry.npmjs.org/react/-/react-17.0.2.tgz" + "version" "17.0.2" dependencies: - loose-envify "^1.1.0" - object-assign "^4.1.1" + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" -readable-stream@^2.0.1: - version "2.3.7" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== +"readable-stream@^2.0.1": + "integrity" "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" + "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" + "version" "2.3.7" dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" + "core-util-is" "~1.0.0" + "inherits" "~2.0.3" + "isarray" "~1.0.0" + "process-nextick-args" "~2.0.0" + "safe-buffer" "~5.1.1" + "string_decoder" "~1.1.1" + "util-deprecate" "~1.0.1" -readable-stream@^3.0.6: - version "3.6.0" - resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== +"readable-stream@^3.0.6": + "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" + "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" + "version" "3.6.0" dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" + "inherits" "^2.0.3" + "string_decoder" "^1.1.1" + "util-deprecate" "^1.0.1" -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== +"readdirp@~3.6.0": + "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" + "version" "3.6.0" dependencies: - picomatch "^2.2.1" + "picomatch" "^2.2.1" -reading-time@^1.5.0: - version "1.5.0" - resolved "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz" - integrity sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg== +"reading-time@^1.5.0": + "integrity" "sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==" + "resolved" "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz" + "version" "1.5.0" -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz" - integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= +"rechoir@^0.6.2": + "integrity" "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=" + "resolved" "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz" + "version" "0.6.2" dependencies: - resolve "^1.1.6" + "resolve" "^1.1.6" -recursive-readdir@^2.2.2: - version "2.2.2" - resolved "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz" - integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg== +"recursive-readdir@^2.2.2": + "integrity" "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==" + "resolved" "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz" + "version" "2.2.2" dependencies: - minimatch "3.0.4" + "minimatch" "3.0.4" -regenerate-unicode-properties@^10.0.1: - version "10.0.1" - resolved "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz" - integrity sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw== +"regenerate-unicode-properties@^10.0.1": + "integrity" "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==" + "resolved" "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz" + "version" "10.0.1" dependencies: - regenerate "^1.4.2" + "regenerate" "^1.4.2" -regenerate@^1.4.2: - version "1.4.2" - resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" - integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== +"regenerate@^1.4.2": + "integrity" "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" + "version" "1.4.2" -regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.4: - version "0.13.11" - resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" - integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== +"regenerator-runtime@^0.13.11", "regenerator-runtime@^0.13.4": + "integrity" "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" + "version" "0.13.11" -regenerator-transform@^0.15.0: - version "0.15.0" - resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz" - integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg== +"regenerator-transform@^0.15.0": + "integrity" "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==" + "resolved" "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz" + "version" "0.15.0" dependencies: "@babel/runtime" "^7.8.4" -regexpu-core@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz" - integrity sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA== +"regexpu-core@^5.1.0": + "integrity" "sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==" + "resolved" "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz" + "version" "5.1.0" dependencies: - regenerate "^1.4.2" - regenerate-unicode-properties "^10.0.1" - regjsgen "^0.6.0" - regjsparser "^0.8.2" - unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.0.0" + "regenerate" "^1.4.2" + "regenerate-unicode-properties" "^10.0.1" + "regjsgen" "^0.6.0" + "regjsparser" "^0.8.2" + "unicode-match-property-ecmascript" "^2.0.0" + "unicode-match-property-value-ecmascript" "^2.0.0" -registry-auth-token@^4.0.0: - version "4.2.1" - resolved "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz" - integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw== +"registry-auth-token@^4.0.0": + "integrity" "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==" + "resolved" "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz" + "version" "4.2.1" dependencies: - rc "^1.2.8" + "rc" "^1.2.8" -registry-url@^5.0.0: - version "5.1.0" - resolved "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz" - integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== +"registry-url@^5.0.0": + "integrity" "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==" + "resolved" "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz" + "version" "5.1.0" dependencies: - rc "^1.2.8" + "rc" "^1.2.8" -regjsgen@^0.6.0: - version "0.6.0" - resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz" - integrity sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA== +"regjsgen@^0.6.0": + "integrity" "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==" + "resolved" "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz" + "version" "0.6.0" -regjsparser@^0.8.2: - version "0.8.4" - resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz" - integrity sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA== +"regjsparser@^0.8.2": + "integrity" "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==" + "resolved" "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz" + "version" "0.8.4" dependencies: - jsesc "~0.5.0" + "jsesc" "~0.5.0" -relateurl@^0.2.7: - version "0.2.7" - resolved "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz" - integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= +"relateurl@^0.2.7": + "integrity" "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + "resolved" "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz" + "version" "0.2.7" -remark-emoji@^2.2.0: - version "2.2.0" - resolved "https://registry.npmjs.org/remark-emoji/-/remark-emoji-2.2.0.tgz" - integrity sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w== +"remark-emoji@^2.2.0": + "integrity" "sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==" + "resolved" "https://registry.npmjs.org/remark-emoji/-/remark-emoji-2.2.0.tgz" + "version" "2.2.0" dependencies: - emoticon "^3.2.0" - node-emoji "^1.10.0" - unist-util-visit "^2.0.3" + "emoticon" "^3.2.0" + "node-emoji" "^1.10.0" + "unist-util-visit" "^2.0.3" -remark-footnotes@2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-2.0.0.tgz" - integrity sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ== +"remark-footnotes@2.0.0": + "integrity" "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==" + "resolved" "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-2.0.0.tgz" + "version" "2.0.0" -remark-mdx@1.6.22: - version "1.6.22" - resolved "https://registry.npmjs.org/remark-mdx/-/remark-mdx-1.6.22.tgz" - integrity sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ== +"remark-mdx@1.6.22": + "integrity" "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==" + "resolved" "https://registry.npmjs.org/remark-mdx/-/remark-mdx-1.6.22.tgz" + "version" "1.6.22" dependencies: "@babel/core" "7.12.9" "@babel/helper-plugin-utils" "7.10.4" "@babel/plugin-proposal-object-rest-spread" "7.12.1" "@babel/plugin-syntax-jsx" "7.12.1" "@mdx-js/util" "1.6.22" - is-alphabetical "1.0.4" - remark-parse "8.0.3" - unified "9.2.0" + "is-alphabetical" "1.0.4" + "remark-parse" "8.0.3" + "unified" "9.2.0" -remark-parse@8.0.3: - version "8.0.3" - resolved "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz" - integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q== +"remark-parse@8.0.3": + "integrity" "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==" + "resolved" "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz" + "version" "8.0.3" dependencies: - ccount "^1.0.0" - collapse-white-space "^1.0.2" - is-alphabetical "^1.0.0" - is-decimal "^1.0.0" - is-whitespace-character "^1.0.0" - is-word-character "^1.0.0" - markdown-escapes "^1.0.0" - parse-entities "^2.0.0" - repeat-string "^1.5.4" - state-toggle "^1.0.0" - trim "0.0.1" - trim-trailing-lines "^1.0.0" - unherit "^1.0.4" - unist-util-remove-position "^2.0.0" - vfile-location "^3.0.0" - xtend "^4.0.1" + "ccount" "^1.0.0" + "collapse-white-space" "^1.0.2" + "is-alphabetical" "^1.0.0" + "is-decimal" "^1.0.0" + "is-whitespace-character" "^1.0.0" + "is-word-character" "^1.0.0" + "markdown-escapes" "^1.0.0" + "parse-entities" "^2.0.0" + "repeat-string" "^1.5.4" + "state-toggle" "^1.0.0" + "trim" "0.0.1" + "trim-trailing-lines" "^1.0.0" + "unherit" "^1.0.4" + "unist-util-remove-position" "^2.0.0" + "vfile-location" "^3.0.0" + "xtend" "^4.0.1" -remark-squeeze-paragraphs@4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz" - integrity sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw== +"remark-squeeze-paragraphs@4.0.0": + "integrity" "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==" + "resolved" "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz" + "version" "4.0.0" dependencies: - mdast-squeeze-paragraphs "^4.0.0" + "mdast-squeeze-paragraphs" "^4.0.0" -renderkid@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz" - integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== +"renderkid@^3.0.0": + "integrity" "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==" + "resolved" "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz" + "version" "3.0.0" dependencies: - css-select "^4.1.3" - dom-converter "^0.2.0" - htmlparser2 "^6.1.0" - lodash "^4.17.21" - strip-ansi "^6.0.1" + "css-select" "^4.1.3" + "dom-converter" "^0.2.0" + "htmlparser2" "^6.1.0" + "lodash" "^4.17.21" + "strip-ansi" "^6.0.1" -repeat-string@^1.5.4: - version "1.6.1" - resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" - integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== +"repeat-string@^1.5.4": + "integrity" "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" + "resolved" "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" + "version" "1.6.1" -require-from-string@^2.0.2: - version "2.0.2" - resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" - integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== +"require-from-string@^2.0.2": + "integrity" "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + "resolved" "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" + "version" "2.0.2" "require-like@>= 0.1.1": - version "0.1.2" - resolved "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz" - integrity sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A== + "integrity" "sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==" + "resolved" "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz" + "version" "0.1.2" -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" - integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== +"requires-port@^1.0.0": + "integrity" "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + "resolved" "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" + "version" "1.0.0" -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== +"resolve-from@^4.0.0": + "integrity" "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" + "version" "4.0.0" -resolve-pathname@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz" - integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng== +"resolve-pathname@^3.0.0": + "integrity" "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + "resolved" "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz" + "version" "3.0.0" -resolve@^1.1.6, resolve@^1.14.2, resolve@^1.3.2: - version "1.22.1" - resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== +"resolve@^1.1.6", "resolve@^1.14.2", "resolve@^1.3.2": + "integrity" "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==" + "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz" + "version" "1.22.1" dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" + "is-core-module" "^2.9.0" + "path-parse" "^1.0.7" + "supports-preserve-symlinks-flag" "^1.0.0" -responselike@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz" - integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec= +"responselike@^1.0.2": + "integrity" "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=" + "resolved" "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz" + "version" "1.0.2" dependencies: - lowercase-keys "^1.0.0" + "lowercase-keys" "^1.0.0" -retry@^0.13.1: - version "0.13.1" - resolved "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz" - integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== +"retry@^0.13.1": + "integrity" "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + "resolved" "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz" + "version" "0.13.1" -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== +"reusify@^1.0.4": + "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + "resolved" "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" + "version" "1.0.4" -rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== +"rimraf@^3.0.2": + "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" + "version" "3.0.2" dependencies: - glob "^7.1.3" + "glob" "^7.1.3" -rtl-detect@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/rtl-detect/-/rtl-detect-1.0.4.tgz" - integrity sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ== +"rtl-detect@^1.0.4": + "integrity" "sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==" + "resolved" "https://registry.npmjs.org/rtl-detect/-/rtl-detect-1.0.4.tgz" + "version" "1.0.4" -rtlcss@^3.5.0: - version "3.5.0" - resolved "https://registry.npmjs.org/rtlcss/-/rtlcss-3.5.0.tgz" - integrity sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A== +"rtlcss@^3.5.0": + "integrity" "sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==" + "resolved" "https://registry.npmjs.org/rtlcss/-/rtlcss-3.5.0.tgz" + "version" "3.5.0" dependencies: - find-up "^5.0.0" - picocolors "^1.0.0" - postcss "^8.3.11" - strip-json-comments "^3.1.1" + "find-up" "^5.0.0" + "picocolors" "^1.0.0" + "postcss" "^8.3.11" + "strip-json-comments" "^3.1.1" -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== +"run-parallel@^1.1.9": + "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + "resolved" "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" + "version" "1.2.0" dependencies: - queue-microtask "^1.2.2" + "queue-microtask" "^1.2.2" -rxjs@^7.5.4: - version "7.5.5" - resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz" - integrity sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw== +"rxjs@^7.5.4": + "integrity" "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==" + "resolved" "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz" + "version" "7.5.5" dependencies: - tslib "^2.1.0" + "tslib" "^2.1.0" -safe-buffer@5.1.2, safe-buffer@>=5.1.0, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== +"safe-buffer@^5.1.0": + "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" + "version" "5.2.1" -safe-buffer@5.2.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +"safe-buffer@>=5.1.0", "safe-buffer@~5.1.0", "safe-buffer@~5.1.1", "safe-buffer@5.1.2": + "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" + "version" "5.1.2" + +"safe-buffer@~5.2.0": + "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" + "version" "5.2.1" + +"safe-buffer@5.2.1": + "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" + "version" "5.2.1" "safer-buffer@>= 2.1.2 < 3": - version "2.1.2" - resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" - integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" + "version" "2.1.2" -sax@^1.2.4: - version "1.2.4" - resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== +"sax@^1.2.4": + "integrity" "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + "resolved" "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" + "version" "1.2.4" -scheduler@^0.20.2: - version "0.20.2" - resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz" - integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== +"scheduler@^0.20.2": + "integrity" "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==" + "resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz" + "version" "0.20.2" dependencies: - loose-envify "^1.1.0" - object-assign "^4.1.1" + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" -schema-utils@2.7.0: - version "2.7.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz" - integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== - dependencies: - "@types/json-schema" "^7.0.4" - ajv "^6.12.2" - ajv-keywords "^3.4.1" - -schema-utils@^2.6.5: - version "2.7.1" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" - integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== +"schema-utils@^2.6.5": + "integrity" "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" + "version" "2.7.1" dependencies: "@types/json-schema" "^7.0.5" - ajv "^6.12.4" - ajv-keywords "^3.5.2" + "ajv" "^6.12.4" + "ajv-keywords" "^3.5.2" -schema-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz" - integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA== +"schema-utils@^3.0.0": + "integrity" "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz" + "version" "3.0.0" dependencies: "@types/json-schema" "^7.0.6" - ajv "^6.12.5" - ajv-keywords "^3.5.2" + "ajv" "^6.12.5" + "ajv-keywords" "^3.5.2" -schema-utils@^3.1.0, schema-utils@^3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" - integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== +"schema-utils@^3.1.0": + "integrity" "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" + "version" "3.1.1" dependencies: "@types/json-schema" "^7.0.8" - ajv "^6.12.5" - ajv-keywords "^3.5.2" + "ajv" "^6.12.5" + "ajv-keywords" "^3.5.2" -schema-utils@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz" - integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg== +"schema-utils@^3.1.1": + "integrity" "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" + "version" "3.1.1" + dependencies: + "@types/json-schema" "^7.0.8" + "ajv" "^6.12.5" + "ajv-keywords" "^3.5.2" + +"schema-utils@^4.0.0": + "integrity" "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz" + "version" "4.0.0" dependencies: "@types/json-schema" "^7.0.9" - ajv "^8.8.0" - ajv-formats "^2.1.1" - ajv-keywords "^5.0.0" + "ajv" "^8.8.0" + "ajv-formats" "^2.1.1" + "ajv-keywords" "^5.0.0" -section-matter@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz" - integrity sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA== +"schema-utils@2.7.0": + "integrity" "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz" + "version" "2.7.0" dependencies: - extend-shallow "^2.0.1" - kind-of "^6.0.0" + "@types/json-schema" "^7.0.4" + "ajv" "^6.12.2" + "ajv-keywords" "^3.4.1" -select-hose@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz" - integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== +"search-insights@>= 1 < 3": + "integrity" "sha512-bkWW9nIHOFkLwjQ1xqVaMbjjO5vhP26ERsH9Y3pKr8imthofEFIxlnOabkmGcw6ksRj9jWidcI65vvjJH/nTGg==" + "resolved" "https://registry.npmjs.org/search-insights/-/search-insights-2.9.0.tgz" + "version" "2.9.0" -selfsigned@^2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz" - integrity sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ== +"section-matter@^1.0.0": + "integrity" "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==" + "resolved" "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz" + "version" "1.0.0" dependencies: - node-forge "^1" + "extend-shallow" "^2.0.1" + "kind-of" "^6.0.0" -semver-diff@^3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz" - integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== +"select-hose@^2.0.0": + "integrity" "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + "resolved" "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz" + "version" "2.0.0" + +"selfsigned@^2.0.1": + "integrity" "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==" + "resolved" "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz" + "version" "2.0.1" dependencies: - semver "^6.3.0" + "node-forge" "^1" -semver@7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" - integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== - -semver@^5.4.1: - version "5.7.2" - resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" - integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== - -semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.3.2, semver@^7.3.4, semver@^7.3.5: - version "7.3.5" - resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" - integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== +"semver-diff@^3.1.1": + "integrity" "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==" + "resolved" "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz" + "version" "3.1.1" dependencies: - lru-cache "^6.0.0" + "semver" "^6.3.0" -semver@^7.3.7: - version "7.3.7" - resolved "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz" - integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== +"semver@^5.4.1": + "integrity" "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" + "version" "5.7.2" + +"semver@^6.0.0", "semver@^6.1.1", "semver@^6.1.2", "semver@^6.2.0", "semver@^6.3.0": + "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" + "version" "6.3.0" + +"semver@^7.3.2": + "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" + "version" "7.3.5" dependencies: - lru-cache "^6.0.0" + "lru-cache" "^6.0.0" -send@0.18.0: - version "0.18.0" - resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== +"semver@^7.3.4": + "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" + "version" "7.3.5" dependencies: - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" - mime "1.6.0" - ms "2.1.3" - on-finished "2.4.1" - range-parser "~1.2.1" - statuses "2.0.1" + "lru-cache" "^6.0.0" -serialize-javascript@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz" - integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== +"semver@^7.3.5": + "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" + "version" "7.3.5" dependencies: - randombytes "^2.1.0" + "lru-cache" "^6.0.0" -serve-handler@^6.1.3: - version "6.1.3" - resolved "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.3.tgz" - integrity sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w== +"semver@^7.3.7": + "integrity" "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz" + "version" "7.3.7" dependencies: - bytes "3.0.0" - content-disposition "0.5.2" - fast-url-parser "1.1.3" - mime-types "2.1.18" - minimatch "3.0.4" - path-is-inside "1.0.2" - path-to-regexp "2.2.1" - range-parser "1.2.0" + "lru-cache" "^6.0.0" -serve-index@^1.9.1: - version "1.9.1" - resolved "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz" - integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== +"semver@7.0.0": + "integrity" "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" + "version" "7.0.0" + +"send@0.18.0": + "integrity" "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" + "resolved" "https://registry.npmjs.org/send/-/send-0.18.0.tgz" + "version" "0.18.0" dependencies: - accepts "~1.3.4" - batch "0.6.1" - debug "2.6.9" - escape-html "~1.0.3" - http-errors "~1.6.2" - mime-types "~2.1.17" - parseurl "~1.3.2" + "debug" "2.6.9" + "depd" "2.0.0" + "destroy" "1.2.0" + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "etag" "~1.8.1" + "fresh" "0.5.2" + "http-errors" "2.0.0" + "mime" "1.6.0" + "ms" "2.1.3" + "on-finished" "2.4.1" + "range-parser" "~1.2.1" + "statuses" "2.0.1" -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== +"serialize-javascript@^6.0.0": + "integrity" "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==" + "resolved" "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz" + "version" "6.0.0" dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.18.0" + "randombytes" "^2.1.0" -setimmediate@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" - integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== - -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== - -setprototypeof@1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - -shallow-clone@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" - integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== +"serve-handler@^6.1.3": + "integrity" "sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==" + "resolved" "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.3.tgz" + "version" "6.1.3" dependencies: - kind-of "^6.0.2" + "bytes" "3.0.0" + "content-disposition" "0.5.2" + "fast-url-parser" "1.1.3" + "mime-types" "2.1.18" + "minimatch" "3.0.4" + "path-is-inside" "1.0.2" + "path-to-regexp" "2.2.1" + "range-parser" "1.2.0" -shallowequal@^1.1.0: - version "1.1.0" - resolved "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz" - integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== +"serve-index@^1.9.1": + "integrity" "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" + "resolved" "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz" + "version" "1.9.1" dependencies: - shebang-regex "^3.0.0" + "accepts" "~1.3.4" + "batch" "0.6.1" + "debug" "2.6.9" + "escape-html" "~1.0.3" + "http-errors" "~1.6.2" + "mime-types" "~2.1.17" + "parseurl" "~1.3.2" -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -shell-quote@^1.7.3: - version "1.7.3" - resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz" - integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== - -shelljs@^0.8.5: - version "0.8.5" - resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz" - integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== +"serve-static@1.15.0": + "integrity" "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" + "resolved" "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz" + "version" "1.15.0" dependencies: - glob "^7.0.0" - interpret "^1.0.0" - rechoir "^0.6.2" + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "parseurl" "~1.3.3" + "send" "0.18.0" -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== +"setimmediate@^1.0.5": + "integrity" "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + "resolved" "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" + "version" "1.0.5" + +"setprototypeof@1.1.0": + "integrity" "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" + "version" "1.1.0" + +"setprototypeof@1.2.0": + "integrity" "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" + "version" "1.2.0" + +"shallow-clone@^3.0.0": + "integrity" "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + "resolved" "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" + "version" "3.0.1" dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" + "kind-of" "^6.0.2" -signal-exit@^3.0.2, signal-exit@^3.0.3: - version "3.0.3" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz" - integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== +"shallowequal@^1.1.0": + "integrity" "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + "resolved" "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz" + "version" "1.1.0" -sirv@^1.0.7: - version "1.0.11" - resolved "https://registry.npmjs.org/sirv/-/sirv-1.0.11.tgz" - integrity sha512-SR36i3/LSWja7AJNRBz4fF/Xjpn7lQFI30tZ434dIy+bitLYSP+ZEenHg36i23V2SGEz+kqjksg0uOGZ5LPiqg== +"shebang-command@^2.0.0": + "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "shebang-regex" "^3.0.0" + +"shebang-regex@^3.0.0": + "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" + "version" "3.0.0" + +"shell-quote@^1.7.3": + "integrity" "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==" + "resolved" "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz" + "version" "1.7.3" + +"shelljs@^0.8.5": + "integrity" "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==" + "resolved" "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz" + "version" "0.8.5" + dependencies: + "glob" "^7.0.0" + "interpret" "^1.0.0" + "rechoir" "^0.6.2" + +"side-channel@^1.0.4": + "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "call-bind" "^1.0.0" + "get-intrinsic" "^1.0.2" + "object-inspect" "^1.9.0" + +"signal-exit@^3.0.2", "signal-exit@^3.0.3": + "integrity" "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + "resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz" + "version" "3.0.3" + +"sirv@^1.0.7": + "integrity" "sha512-SR36i3/LSWja7AJNRBz4fF/Xjpn7lQFI30tZ434dIy+bitLYSP+ZEenHg36i23V2SGEz+kqjksg0uOGZ5LPiqg==" + "resolved" "https://registry.npmjs.org/sirv/-/sirv-1.0.11.tgz" + "version" "1.0.11" dependencies: "@polka/url" "^1.0.0-next.9" - mime "^2.3.1" - totalist "^1.0.0" + "mime" "^2.3.1" + "totalist" "^1.0.0" -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== +"sisteransi@^1.0.5": + "integrity" "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + "resolved" "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" + "version" "1.0.5" -sitemap@^7.1.1: - version "7.1.1" - resolved "https://registry.npmjs.org/sitemap/-/sitemap-7.1.1.tgz" - integrity sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg== +"sitemap@^7.1.1": + "integrity" "sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==" + "resolved" "https://registry.npmjs.org/sitemap/-/sitemap-7.1.1.tgz" + "version" "7.1.1" dependencies: "@types/node" "^17.0.5" "@types/sax" "^1.2.1" - arg "^5.0.0" - sax "^1.2.4" + "arg" "^5.0.0" + "sax" "^1.2.4" -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== +"slash@^3.0.0": + "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + "resolved" "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" + "version" "3.0.0" -slash@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz" - integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== +"slash@^4.0.0": + "integrity" "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + "resolved" "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz" + "version" "4.0.0" -sockjs@^0.3.24: - version "0.3.24" - resolved "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz" - integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== +"sockjs@^0.3.24": + "integrity" "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" + "resolved" "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz" + "version" "0.3.24" dependencies: - faye-websocket "^0.11.3" - uuid "^8.3.2" - websocket-driver "^0.7.4" + "faye-websocket" "^0.11.3" + "uuid" "^8.3.2" + "websocket-driver" "^0.7.4" -sort-css-media-queries@2.1.0: - version "2.1.0" - resolved "https://registry.npmjs.org/sort-css-media-queries/-/sort-css-media-queries-2.1.0.tgz" - integrity sha512-IeWvo8NkNiY2vVYdPa27MCQiR0MN0M80johAYFVxWWXQ44KU84WNxjslwBHmc/7ZL2ccwkM7/e6S5aiKZXm7jA== +"sort-css-media-queries@2.1.0": + "integrity" "sha512-IeWvo8NkNiY2vVYdPa27MCQiR0MN0M80johAYFVxWWXQ44KU84WNxjslwBHmc/7ZL2ccwkM7/e6S5aiKZXm7jA==" + "resolved" "https://registry.npmjs.org/sort-css-media-queries/-/sort-css-media-queries-2.1.0.tgz" + "version" "2.1.0" -source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +"source-map-js@^1.0.2": + "integrity" "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + "resolved" "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" + "version" "1.0.2" -source-map-support@~0.5.20: - version "0.5.20" - resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz" - integrity sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw== +"source-map-support@~0.5.20": + "integrity" "sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==" + "resolved" "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz" + "version" "0.5.20" dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" + "buffer-from" "^1.0.0" + "source-map" "^0.6.0" -source-map@^0.5.0: - version "0.5.7" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== +"source-map@^0.5.0": + "integrity" "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + "version" "0.5.7" -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0: - version "0.6.1" - resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +"source-map@^0.6.0", "source-map@^0.6.1", "source-map@~0.6.0": + "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + "version" "0.6.1" -space-separated-tokens@^1.0.0: - version "1.1.5" - resolved "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz" - integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== +"space-separated-tokens@^1.0.0": + "integrity" "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==" + "resolved" "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz" + "version" "1.1.5" -spdy-transport@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz" - integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== +"spdy-transport@^3.0.0": + "integrity" "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + "resolved" "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz" + "version" "3.0.0" dependencies: - debug "^4.1.0" - detect-node "^2.0.4" - hpack.js "^2.1.6" - obuf "^1.1.2" - readable-stream "^3.0.6" - wbuf "^1.7.3" + "debug" "^4.1.0" + "detect-node" "^2.0.4" + "hpack.js" "^2.1.6" + "obuf" "^1.1.2" + "readable-stream" "^3.0.6" + "wbuf" "^1.7.3" -spdy@^4.0.2: - version "4.0.2" - resolved "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz" - integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== +"spdy@^4.0.2": + "integrity" "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + "resolved" "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz" + "version" "4.0.2" dependencies: - debug "^4.1.0" - handle-thing "^2.0.0" - http-deceiver "^1.2.7" - select-hose "^2.0.0" - spdy-transport "^3.0.0" + "debug" "^4.1.0" + "handle-thing" "^2.0.0" + "http-deceiver" "^1.2.7" + "select-hose" "^2.0.0" + "spdy-transport" "^3.0.0" -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== +"sprintf-js@~1.0.2": + "integrity" "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + "resolved" "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" + "version" "1.0.3" -stable@^0.1.8: - version "0.1.8" - resolved "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz" - integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== +"stable@^0.1.8": + "integrity" "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + "resolved" "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz" + "version" "0.1.8" -state-toggle@^1.0.0: - version "1.0.3" - resolved "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz" - integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== - -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== +"state-toggle@^1.0.0": + "integrity" "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==" + "resolved" "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz" + "version" "1.0.3" "statuses@>= 1.4.0 < 2": - version "1.5.0" - resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" - integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + "integrity" "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + "resolved" "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" + "version" "1.5.0" -std-env@^3.0.1: - version "3.0.1" - resolved "https://registry.npmjs.org/std-env/-/std-env-3.0.1.tgz" - integrity sha512-mC1Ps9l77/97qeOZc+HrOL7TIaOboHqMZ24dGVQrlxFcpPpfCHpH+qfUT7Dz+6mlG8+JPA1KfBQo19iC/+Ngcw== +"statuses@2.0.1": + "integrity" "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + "resolved" "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" + "version" "2.0.1" -string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0: - version "4.2.2" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz" - integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== +"std-env@^3.0.1": + "integrity" "sha512-mC1Ps9l77/97qeOZc+HrOL7TIaOboHqMZ24dGVQrlxFcpPpfCHpH+qfUT7Dz+6mlG8+JPA1KfBQo19iC/+Ngcw==" + "resolved" "https://registry.npmjs.org/std-env/-/std-env-3.0.1.tgz" + "version" "3.0.1" + +"string_decoder@^1.1.1": + "integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" + "version" "1.3.0" dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.0" + "safe-buffer" "~5.2.0" -string-width@^5.0.1: - version "5.1.2" - resolved "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" - integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== +"string_decoder@~1.1.1": + "integrity" "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + "version" "1.1.1" dependencies: - eastasianwidth "^0.2.0" - emoji-regex "^9.2.2" - strip-ansi "^7.0.1" + "safe-buffer" "~5.1.0" -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== +"string-width@^4.0.0", "string-width@^4.1.0", "string-width@^4.2.0": + "integrity" "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==" + "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz" + "version" "4.2.2" dependencies: - safe-buffer "~5.2.0" + "emoji-regex" "^8.0.0" + "is-fullwidth-code-point" "^3.0.0" + "strip-ansi" "^6.0.0" -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== +"string-width@^5.0.1": + "integrity" "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + "resolved" "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" + "version" "5.1.2" dependencies: - safe-buffer "~5.1.0" + "eastasianwidth" "^0.2.0" + "emoji-regex" "^9.2.2" + "strip-ansi" "^7.0.1" -stringify-object@^3.3.0: - version "3.3.0" - resolved "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz" - integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== +"stringify-object@^3.3.0": + "integrity" "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" + "resolved" "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz" + "version" "3.3.0" dependencies: - get-own-enumerable-property-symbols "^3.0.0" - is-obj "^1.0.1" - is-regexp "^1.0.0" + "get-own-enumerable-property-symbols" "^3.0.0" + "is-obj" "^1.0.1" + "is-regexp" "^1.0.0" -strip-ansi@^6.0.0: - version "6.0.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz" - integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== +"strip-ansi@^6.0.0": + "integrity" "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz" + "version" "6.0.0" dependencies: - ansi-regex "^5.0.0" + "ansi-regex" "^5.0.0" -strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== +"strip-ansi@^6.0.1": + "integrity" "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" + "version" "6.0.1" dependencies: - ansi-regex "^5.0.1" + "ansi-regex" "^5.0.1" -strip-ansi@^7.0.1: - version "7.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz" - integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== +"strip-ansi@^7.0.1": + "integrity" "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz" + "version" "7.0.1" dependencies: - ansi-regex "^6.0.1" + "ansi-regex" "^6.0.1" -strip-bom-string@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz" - integrity sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g== +"strip-bom-string@^1.0.0": + "integrity" "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==" + "resolved" "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz" + "version" "1.0.0" -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== +"strip-final-newline@^2.0.0": + "integrity" "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + "resolved" "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" + "version" "2.0.0" -strip-json-comments@^3.1.1: - 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== +"strip-json-comments@^3.1.1": + "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" + "version" "3.1.1" -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= +"strip-json-comments@~2.0.1": + "integrity" "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" + "version" "2.0.1" -style-to-object@0.3.0, style-to-object@^0.3.0: - version "0.3.0" - resolved "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz" - integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA== +"style-to-object@^0.3.0", "style-to-object@0.3.0": + "integrity" "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==" + "resolved" "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz" + "version" "0.3.0" dependencies: - inline-style-parser "0.1.1" + "inline-style-parser" "0.1.1" -stylehacks@^5.1.1: - version "5.1.1" - resolved "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz" - integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== +"stylehacks@^5.1.1": + "integrity" "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==" + "resolved" "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz" + "version" "5.1.1" dependencies: - browserslist "^4.21.4" - postcss-selector-parser "^6.0.4" + "browserslist" "^4.21.4" + "postcss-selector-parser" "^6.0.4" -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== +"supports-color@^5.3.0": + "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" + "version" "5.5.0" dependencies: - has-flag "^3.0.0" + "has-flag" "^3.0.0" -supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== +"supports-color@^7.1.0": + "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + "version" "7.2.0" dependencies: - has-flag "^4.0.0" + "has-flag" "^4.0.0" -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== +"supports-color@^8.0.0": + "integrity" "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" + "version" "8.1.1" dependencies: - has-flag "^4.0.0" + "has-flag" "^4.0.0" -supports-preserve-symlinks-flag@^1.0.0: - 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== +"supports-preserve-symlinks-flag@^1.0.0": + "integrity" "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + "resolved" "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" + "version" "1.0.0" -svg-parser@^2.0.2: - version "2.0.4" - resolved "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz" - integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== +"svg-parser@^2.0.2": + "integrity" "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + "resolved" "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz" + "version" "2.0.4" -svgo@^2.5.0, svgo@^2.7.0: - version "2.8.0" - resolved "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz" - integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== +"svgo@^2.5.0", "svgo@^2.7.0": + "integrity" "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" + "resolved" "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz" + "version" "2.8.0" dependencies: "@trysound/sax" "0.2.0" - commander "^7.2.0" - css-select "^4.1.3" - css-tree "^1.1.3" - csso "^4.2.0" - picocolors "^1.0.0" - stable "^0.1.8" + "commander" "^7.2.0" + "css-select" "^4.1.3" + "css-tree" "^1.1.3" + "csso" "^4.2.0" + "picocolors" "^1.0.0" + "stable" "^0.1.8" -tapable@^1.0.0: - version "1.1.3" - resolved "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz" - integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== +"tapable@^1.0.0": + "integrity" "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + "resolved" "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz" + "version" "1.1.3" -tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: - version "2.2.1" - resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" - integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== +"tapable@^2.0.0", "tapable@^2.1.1", "tapable@^2.2.0": + "integrity" "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + "resolved" "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" + "version" "2.2.1" -terser-webpack-plugin@^5.1.3, terser-webpack-plugin@^5.3.3: - version "5.3.5" - resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.5.tgz" - integrity sha512-AOEDLDxD2zylUGf/wxHxklEkOe2/r+seuyOWujejFrIxHf11brA1/dWQNIgXa1c6/Wkxgu7zvv0JhOWfc2ELEA== +"terser-webpack-plugin@^5.1.3", "terser-webpack-plugin@^5.3.3": + "integrity" "sha512-AOEDLDxD2zylUGf/wxHxklEkOe2/r+seuyOWujejFrIxHf11brA1/dWQNIgXa1c6/Wkxgu7zvv0JhOWfc2ELEA==" + "resolved" "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.5.tgz" + "version" "5.3.5" dependencies: "@jridgewell/trace-mapping" "^0.3.14" - jest-worker "^27.4.5" - schema-utils "^3.1.1" - serialize-javascript "^6.0.0" - terser "^5.14.1" + "jest-worker" "^27.4.5" + "schema-utils" "^3.1.1" + "serialize-javascript" "^6.0.0" + "terser" "^5.14.1" -terser@^5.10.0, terser@^5.14.1: - version "5.15.0" - resolved "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz" - integrity sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA== +"terser@^5.10.0", "terser@^5.14.1": + "integrity" "sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==" + "resolved" "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz" + "version" "5.15.0" dependencies: "@jridgewell/source-map" "^0.3.2" - acorn "^8.5.0" - commander "^2.20.0" - source-map-support "~0.5.20" + "acorn" "^8.5.0" + "commander" "^2.20.0" + "source-map-support" "~0.5.20" -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" - integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= +"text-table@^0.2.0": + "integrity" "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" + "version" "0.2.0" -thunky@^1.0.2: - version "1.1.0" - resolved "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz" - integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== +"thunky@^1.0.2": + "integrity" "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + "resolved" "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz" + "version" "1.1.0" -tiny-invariant@^1.0.2: - version "1.1.0" - resolved "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz" - integrity sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw== +"tiny-invariant@^1.0.2": + "integrity" "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + "resolved" "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz" + "version" "1.1.0" -tiny-warning@^1.0.0, tiny-warning@^1.0.3: - version "1.0.3" - resolved "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz" - integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== +"tiny-warning@^1.0.0", "tiny-warning@^1.0.3": + "integrity" "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + "resolved" "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz" + "version" "1.0.3" -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" - integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= +"to-fast-properties@^2.0.0": + "integrity" "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + "resolved" "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" + "version" "2.0.0" -to-readable-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz" - integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== +"to-readable-stream@^1.0.0": + "integrity" "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" + "resolved" "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz" + "version" "1.0.0" -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== +"to-regex-range@^5.0.1": + "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" + "version" "5.0.1" dependencies: - is-number "^7.0.0" + "is-number" "^7.0.0" -toidentifier@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== +"toidentifier@1.0.1": + "integrity" "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + "resolved" "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" + "version" "1.0.1" -totalist@^1.0.0: - version "1.1.0" - resolved "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz" - integrity sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g== +"totalist@^1.0.0": + "integrity" "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==" + "resolved" "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz" + "version" "1.1.0" -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== +"tr46@~0.0.3": + "integrity" "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + "resolved" "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" + "version" "0.0.3" -trim-trailing-lines@^1.0.0: - version "1.1.4" - resolved "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz" - integrity sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ== +"trim-trailing-lines@^1.0.0": + "integrity" "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==" + "resolved" "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz" + "version" "1.1.4" -trim@0.0.1: - version "0.0.1" - resolved "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz" - integrity sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ== +"trim@0.0.1": + "integrity" "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==" + "resolved" "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz" + "version" "0.0.1" -trough@^1.0.0: - version "1.0.5" - resolved "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz" - integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== +"trough@^1.0.0": + "integrity" "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" + "resolved" "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz" + "version" "1.0.5" -tslib@^2.0.3, tslib@^2.1.0, tslib@^2.4.0: - version "2.4.0" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" - integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== +"tslib@^2.0.3", "tslib@^2.1.0", "tslib@^2.4.0": + "integrity" "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" + "version" "2.4.0" -type-fest@^0.20.2: - 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== +"type-fest@^0.20.2": + "integrity" "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" + "version" "0.20.2" -type-fest@^2.5.0: - version "2.19.0" - resolved "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz" - integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== +"type-fest@^2.5.0": + "integrity" "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz" + "version" "2.19.0" -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== +"type-is@~1.6.18": + "integrity" "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + "resolved" "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" + "version" "1.6.18" dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" + "media-typer" "0.3.0" + "mime-types" "~2.1.24" -typedarray-to-buffer@^3.1.5: - version "3.1.5" - resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== +"typedarray-to-buffer@^3.1.5": + "integrity" "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" + "resolved" "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" + "version" "3.1.5" dependencies: - is-typedarray "^1.0.0" + "is-typedarray" "^1.0.0" -ua-parser-js@^1.0.35: - version "1.0.35" - resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.35.tgz" - integrity sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA== +"typescript@>= 2.7": + "integrity" "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==" + "resolved" "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz" + "version" "4.7.4" -unherit@^1.0.4: - version "1.1.3" - resolved "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz" - integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== +"ua-parser-js@^1.0.35": + "integrity" "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" + "resolved" "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz" + "version" "1.0.37" + +"unherit@^1.0.4": + "integrity" "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==" + "resolved" "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz" + "version" "1.1.3" dependencies: - inherits "^2.0.0" - xtend "^4.0.0" + "inherits" "^2.0.0" + "xtend" "^4.0.0" -unicode-canonical-property-names-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz" - integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== +"unicode-canonical-property-names-ecmascript@^2.0.0": + "integrity" "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + "resolved" "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz" + "version" "2.0.0" -unicode-match-property-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" - integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== +"unicode-match-property-ecmascript@^2.0.0": + "integrity" "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" + "resolved" "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" + "version" "2.0.0" dependencies: - unicode-canonical-property-names-ecmascript "^2.0.0" - unicode-property-aliases-ecmascript "^2.0.0" + "unicode-canonical-property-names-ecmascript" "^2.0.0" + "unicode-property-aliases-ecmascript" "^2.0.0" -unicode-match-property-value-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz" - integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== +"unicode-match-property-value-ecmascript@^2.0.0": + "integrity" "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==" + "resolved" "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz" + "version" "2.0.0" -unicode-property-aliases-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz" - integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ== +"unicode-property-aliases-ecmascript@^2.0.0": + "integrity" "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==" + "resolved" "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz" + "version" "2.0.0" -unified@9.2.0: - version "9.2.0" - resolved "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz" - integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg== +"unified@^9.2.2": + "integrity" "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==" + "resolved" "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz" + "version" "9.2.2" dependencies: - bail "^1.0.0" - extend "^3.0.0" - is-buffer "^2.0.0" - is-plain-obj "^2.0.0" - trough "^1.0.0" - vfile "^4.0.0" + "bail" "^1.0.0" + "extend" "^3.0.0" + "is-buffer" "^2.0.0" + "is-plain-obj" "^2.0.0" + "trough" "^1.0.0" + "vfile" "^4.0.0" -unified@^9.2.2: - version "9.2.2" - resolved "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz" - integrity sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ== +"unified@9.2.0": + "integrity" "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==" + "resolved" "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz" + "version" "9.2.0" dependencies: - bail "^1.0.0" - extend "^3.0.0" - is-buffer "^2.0.0" - is-plain-obj "^2.0.0" - trough "^1.0.0" - vfile "^4.0.0" + "bail" "^1.0.0" + "extend" "^3.0.0" + "is-buffer" "^2.0.0" + "is-plain-obj" "^2.0.0" + "trough" "^1.0.0" + "vfile" "^4.0.0" -unique-string@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz" - integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== +"unique-string@^2.0.0": + "integrity" "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" + "resolved" "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz" + "version" "2.0.0" dependencies: - crypto-random-string "^2.0.0" + "crypto-random-string" "^2.0.0" -unist-builder@2.0.3, unist-builder@^2.0.0: - version "2.0.3" - resolved "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz" - integrity sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw== +"unist-builder@^2.0.0", "unist-builder@2.0.3": + "integrity" "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==" + "resolved" "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz" + "version" "2.0.3" -unist-util-generated@^1.0.0: - version "1.1.6" - resolved "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz" - integrity sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg== +"unist-util-generated@^1.0.0": + "integrity" "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==" + "resolved" "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz" + "version" "1.1.6" -unist-util-is@^4.0.0: - version "4.1.0" - resolved "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz" - integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== +"unist-util-is@^4.0.0": + "integrity" "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==" + "resolved" "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz" + "version" "4.1.0" -unist-util-position@^3.0.0: - version "3.1.0" - resolved "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz" - integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA== +"unist-util-position@^3.0.0": + "integrity" "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==" + "resolved" "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz" + "version" "3.1.0" -unist-util-remove-position@^2.0.0: - version "2.0.1" - resolved "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz" - integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA== +"unist-util-remove-position@^2.0.0": + "integrity" "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==" + "resolved" "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz" + "version" "2.0.1" dependencies: - unist-util-visit "^2.0.0" + "unist-util-visit" "^2.0.0" -unist-util-remove@^2.0.0: - version "2.1.0" - resolved "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.1.0.tgz" - integrity sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q== +"unist-util-remove@^2.0.0": + "integrity" "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==" + "resolved" "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.1.0.tgz" + "version" "2.1.0" dependencies: - unist-util-is "^4.0.0" + "unist-util-is" "^4.0.0" -unist-util-stringify-position@^2.0.0: - version "2.0.3" - resolved "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz" - integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== +"unist-util-stringify-position@^2.0.0": + "integrity" "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==" + "resolved" "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz" + "version" "2.0.3" dependencies: "@types/unist" "^2.0.2" -unist-util-visit-parents@^3.0.0: - version "3.1.1" - resolved "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz" - integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== +"unist-util-visit-parents@^3.0.0": + "integrity" "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==" + "resolved" "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz" + "version" "3.1.1" dependencies: "@types/unist" "^2.0.0" - unist-util-is "^4.0.0" + "unist-util-is" "^4.0.0" -unist-util-visit@2.0.3, unist-util-visit@^2.0.0, unist-util-visit@^2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz" - integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== +"unist-util-visit@^2.0.0", "unist-util-visit@^2.0.3", "unist-util-visit@2.0.3": + "integrity" "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==" + "resolved" "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz" + "version" "2.0.3" dependencies: "@types/unist" "^2.0.0" - unist-util-is "^4.0.0" - unist-util-visit-parents "^3.0.0" + "unist-util-is" "^4.0.0" + "unist-util-visit-parents" "^3.0.0" -universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== +"universalify@^2.0.0": + "integrity" "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + "resolved" "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz" + "version" "2.0.0" -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" - integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== +"unpipe@~1.0.0", "unpipe@1.0.0": + "integrity" "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + "resolved" "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" + "version" "1.0.0" -update-browserslist-db@^1.0.11: - version "1.0.11" - resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz" - integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== +"update-browserslist-db@^1.0.11": + "integrity" "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==" + "resolved" "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz" + "version" "1.0.11" dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" + "escalade" "^3.1.1" + "picocolors" "^1.0.0" -update-notifier@^5.1.0: - version "5.1.0" - resolved "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz" - integrity sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== +"update-notifier@^5.1.0": + "integrity" "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==" + "resolved" "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz" + "version" "5.1.0" dependencies: - boxen "^5.0.0" - chalk "^4.1.0" - configstore "^5.0.1" - has-yarn "^2.1.0" - import-lazy "^2.1.0" - is-ci "^2.0.0" - is-installed-globally "^0.4.0" - is-npm "^5.0.0" - is-yarn-global "^0.3.0" - latest-version "^5.1.0" - pupa "^2.1.1" - semver "^7.3.4" - semver-diff "^3.1.1" - xdg-basedir "^4.0.0" + "boxen" "^5.0.0" + "chalk" "^4.1.0" + "configstore" "^5.0.1" + "has-yarn" "^2.1.0" + "import-lazy" "^2.1.0" + "is-ci" "^2.0.0" + "is-installed-globally" "^0.4.0" + "is-npm" "^5.0.0" + "is-yarn-global" "^0.3.0" + "latest-version" "^5.1.0" + "pupa" "^2.1.1" + "semver" "^7.3.4" + "semver-diff" "^3.1.1" + "xdg-basedir" "^4.0.0" -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== +"uri-js@^4.2.2": + "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" + "version" "4.4.1" dependencies: - punycode "^2.1.0" + "punycode" "^2.1.0" -url-loader@^4.1.1: - version "4.1.1" - resolved "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz" - integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== +"url-loader@^4.1.1": + "integrity" "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==" + "resolved" "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz" + "version" "4.1.1" dependencies: - loader-utils "^2.0.0" - mime-types "^2.1.27" - schema-utils "^3.0.0" + "loader-utils" "^2.0.0" + "mime-types" "^2.1.27" + "schema-utils" "^3.0.0" -url-parse-lax@^3.0.0: - version "3.0.0" - resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz" - integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= +"url-parse-lax@^3.0.0": + "integrity" "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=" + "resolved" "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz" + "version" "3.0.0" dependencies: - prepend-http "^2.0.0" + "prepend-http" "^2.0.0" -use-composed-ref@^1.3.0: - version "1.3.0" - resolved "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz" - integrity sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ== +"use-composed-ref@^1.3.0": + "integrity" "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==" + "resolved" "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz" + "version" "1.3.0" -use-isomorphic-layout-effect@^1.1.1: - version "1.1.2" - resolved "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz" - integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA== +"use-isomorphic-layout-effect@^1.1.1": + "integrity" "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==" + "resolved" "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz" + "version" "1.1.2" -use-latest@^1.2.1: - version "1.2.1" - resolved "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz" - integrity sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw== +"use-latest@^1.2.1": + "integrity" "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==" + "resolved" "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz" + "version" "1.2.1" dependencies: - use-isomorphic-layout-effect "^1.1.1" + "use-isomorphic-layout-effect" "^1.1.1" -use-sync-external-store@^1.2.0: - version "1.2.0" - resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz" - integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== +"use-sync-external-store@^1.2.0": + "integrity" "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==" + "resolved" "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz" + "version" "1.2.0" -util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: - version "1.0.2" - resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= +"util-deprecate@^1.0.1", "util-deprecate@^1.0.2", "util-deprecate@~1.0.1": + "integrity" "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + "version" "1.0.2" -utila@~0.4: - version "0.4.0" - resolved "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz" - integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw= +"utila@~0.4": + "integrity" "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + "resolved" "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz" + "version" "0.4.0" -utility-types@^3.10.0: - version "3.10.0" - resolved "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz" - integrity sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg== +"utility-types@^3.10.0": + "integrity" "sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==" + "resolved" "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz" + "version" "3.10.0" -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" - integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== +"utils-merge@1.0.1": + "integrity" "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + "resolved" "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" + "version" "1.0.1" -uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== +"uuid@^8.3.2": + "integrity" "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + "resolved" "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" + "version" "8.3.2" -value-equal@^1.0.1: - version "1.0.1" - resolved "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz" - integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== +"value-equal@^1.0.1": + "integrity" "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + "resolved" "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz" + "version" "1.0.1" -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" - integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== +"vary@~1.1.2": + "integrity" "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + "resolved" "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" + "version" "1.1.2" -vfile-location@^3.0.0, vfile-location@^3.2.0: - version "3.2.0" - resolved "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz" - integrity sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA== +"vfile-location@^3.0.0", "vfile-location@^3.2.0": + "integrity" "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==" + "resolved" "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz" + "version" "3.2.0" -vfile-message@^2.0.0: - version "2.0.4" - resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz" - integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ== +"vfile-message@^2.0.0": + "integrity" "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==" + "resolved" "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz" + "version" "2.0.4" dependencies: "@types/unist" "^2.0.0" - unist-util-stringify-position "^2.0.0" + "unist-util-stringify-position" "^2.0.0" -vfile@^4.0.0: - version "4.2.1" - resolved "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz" - integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA== +"vfile@^4.0.0": + "integrity" "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==" + "resolved" "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz" + "version" "4.2.1" dependencies: "@types/unist" "^2.0.0" - is-buffer "^2.0.0" - unist-util-stringify-position "^2.0.0" - vfile-message "^2.0.0" + "is-buffer" "^2.0.0" + "unist-util-stringify-position" "^2.0.0" + "vfile-message" "^2.0.0" -wait-on@^6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/wait-on/-/wait-on-6.0.1.tgz" - integrity sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw== +"wait-on@^6.0.1": + "integrity" "sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==" + "resolved" "https://registry.npmjs.org/wait-on/-/wait-on-6.0.1.tgz" + "version" "6.0.1" dependencies: - axios "^0.25.0" - joi "^17.6.0" - lodash "^4.17.21" - minimist "^1.2.5" - rxjs "^7.5.4" + "axios" "^0.25.0" + "joi" "^17.6.0" + "lodash" "^4.17.21" + "minimist" "^1.2.5" + "rxjs" "^7.5.4" -watchpack@^2.4.0: - version "2.4.0" - resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz" - integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== +"watchpack@^2.4.0": + "integrity" "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" + "resolved" "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz" + "version" "2.4.0" dependencies: - glob-to-regexp "^0.4.1" - graceful-fs "^4.1.2" + "glob-to-regexp" "^0.4.1" + "graceful-fs" "^4.1.2" -wbuf@^1.1.0, wbuf@^1.7.3: - version "1.7.3" - resolved "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz" - integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== +"wbuf@^1.1.0", "wbuf@^1.7.3": + "integrity" "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + "resolved" "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz" + "version" "1.7.3" dependencies: - minimalistic-assert "^1.0.0" + "minimalistic-assert" "^1.0.0" -web-namespaces@^1.0.0: - version "1.1.4" - resolved "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz" - integrity sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw== +"web-namespaces@^1.0.0": + "integrity" "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==" + "resolved" "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz" + "version" "1.1.4" -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== +"webidl-conversions@^3.0.0": + "integrity" "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" + "version" "3.0.1" -webpack-bundle-analyzer@^4.5.0: - version "4.5.0" - resolved "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz" - integrity sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ== +"webpack-bundle-analyzer@^4.5.0": + "integrity" "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==" + "resolved" "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz" + "version" "4.5.0" dependencies: - acorn "^8.0.4" - acorn-walk "^8.0.0" - chalk "^4.1.0" - commander "^7.2.0" - gzip-size "^6.0.0" - lodash "^4.17.20" - opener "^1.5.2" - sirv "^1.0.7" - ws "^7.3.1" + "acorn" "^8.0.4" + "acorn-walk" "^8.0.0" + "chalk" "^4.1.0" + "commander" "^7.2.0" + "gzip-size" "^6.0.0" + "lodash" "^4.17.20" + "opener" "^1.5.2" + "sirv" "^1.0.7" + "ws" "^7.3.1" -webpack-dev-middleware@^5.3.1: - version "5.3.3" - resolved "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz" - integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== +"webpack-dev-middleware@^5.3.1": + "integrity" "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" + "resolved" "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz" + "version" "5.3.3" dependencies: - colorette "^2.0.10" - memfs "^3.4.3" - mime-types "^2.1.31" - range-parser "^1.2.1" - schema-utils "^4.0.0" + "colorette" "^2.0.10" + "memfs" "^3.4.3" + "mime-types" "^2.1.31" + "range-parser" "^1.2.1" + "schema-utils" "^4.0.0" -webpack-dev-server@^4.9.3: - version "4.10.0" - resolved "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.10.0.tgz" - integrity sha512-7dezwAs+k6yXVFZ+MaL8VnE+APobiO3zvpp3rBHe/HmWQ+avwh0Q3d0xxacOiBybZZ3syTZw9HXzpa3YNbAZDQ== +"webpack-dev-server@^4.9.3": + "integrity" "sha512-7dezwAs+k6yXVFZ+MaL8VnE+APobiO3zvpp3rBHe/HmWQ+avwh0Q3d0xxacOiBybZZ3syTZw9HXzpa3YNbAZDQ==" + "resolved" "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.10.0.tgz" + "version" "4.10.0" dependencies: "@types/bonjour" "^3.5.9" "@types/connect-history-api-fallback" "^1.3.5" @@ -7304,213 +7383,213 @@ webpack-dev-server@^4.9.3: "@types/serve-static" "^1.13.10" "@types/sockjs" "^0.3.33" "@types/ws" "^8.5.1" - ansi-html-community "^0.0.8" - bonjour-service "^1.0.11" - chokidar "^3.5.3" - colorette "^2.0.10" - compression "^1.7.4" - connect-history-api-fallback "^2.0.0" - default-gateway "^6.0.3" - express "^4.17.3" - graceful-fs "^4.2.6" - html-entities "^2.3.2" - http-proxy-middleware "^2.0.3" - ipaddr.js "^2.0.1" - open "^8.0.9" - p-retry "^4.5.0" - rimraf "^3.0.2" - schema-utils "^4.0.0" - selfsigned "^2.0.1" - serve-index "^1.9.1" - sockjs "^0.3.24" - spdy "^4.0.2" - webpack-dev-middleware "^5.3.1" - ws "^8.4.2" + "ansi-html-community" "^0.0.8" + "bonjour-service" "^1.0.11" + "chokidar" "^3.5.3" + "colorette" "^2.0.10" + "compression" "^1.7.4" + "connect-history-api-fallback" "^2.0.0" + "default-gateway" "^6.0.3" + "express" "^4.17.3" + "graceful-fs" "^4.2.6" + "html-entities" "^2.3.2" + "http-proxy-middleware" "^2.0.3" + "ipaddr.js" "^2.0.1" + "open" "^8.0.9" + "p-retry" "^4.5.0" + "rimraf" "^3.0.2" + "schema-utils" "^4.0.0" + "selfsigned" "^2.0.1" + "serve-index" "^1.9.1" + "sockjs" "^0.3.24" + "spdy" "^4.0.2" + "webpack-dev-middleware" "^5.3.1" + "ws" "^8.4.2" -webpack-merge@^5.8.0: - version "5.8.0" - resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz" - integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== +"webpack-merge@^5.8.0": + "integrity" "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==" + "resolved" "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz" + "version" "5.8.0" dependencies: - clone-deep "^4.0.1" - wildcard "^2.0.0" + "clone-deep" "^4.0.1" + "wildcard" "^2.0.0" -webpack-sources@^3.2.2, webpack-sources@^3.2.3: - version "3.2.3" - resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz" - integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== +"webpack-sources@^3.2.2", "webpack-sources@^3.2.3": + "integrity" "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + "resolved" "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz" + "version" "3.2.3" -webpack@^5.73.0: - version "5.74.0" - resolved "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz" - integrity sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA== +"webpack@^4.0.0 || ^5.0.0", "webpack@^4.37.0 || ^5.0.0", "webpack@^5.0.0", "webpack@^5.1.0", "webpack@^5.20.0", "webpack@^5.73.0", "webpack@>= 4", "webpack@>=2", "webpack@>=4.41.1 || 5.x", "webpack@3 || 4 || 5": + "integrity" "sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==" + "resolved" "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz" + "version" "5.74.0" dependencies: "@types/eslint-scope" "^3.7.3" "@types/estree" "^0.0.51" "@webassemblyjs/ast" "1.11.1" "@webassemblyjs/wasm-edit" "1.11.1" "@webassemblyjs/wasm-parser" "1.11.1" - acorn "^8.7.1" - acorn-import-assertions "^1.7.6" - browserslist "^4.14.5" - chrome-trace-event "^1.0.2" - enhanced-resolve "^5.10.0" - es-module-lexer "^0.9.0" - eslint-scope "5.1.1" - events "^3.2.0" - glob-to-regexp "^0.4.1" - graceful-fs "^4.2.9" - json-parse-even-better-errors "^2.3.1" - loader-runner "^4.2.0" - mime-types "^2.1.27" - neo-async "^2.6.2" - schema-utils "^3.1.0" - tapable "^2.1.1" - terser-webpack-plugin "^5.1.3" - watchpack "^2.4.0" - webpack-sources "^3.2.3" + "acorn" "^8.7.1" + "acorn-import-assertions" "^1.7.6" + "browserslist" "^4.14.5" + "chrome-trace-event" "^1.0.2" + "enhanced-resolve" "^5.10.0" + "es-module-lexer" "^0.9.0" + "eslint-scope" "5.1.1" + "events" "^3.2.0" + "glob-to-regexp" "^0.4.1" + "graceful-fs" "^4.2.9" + "json-parse-even-better-errors" "^2.3.1" + "loader-runner" "^4.2.0" + "mime-types" "^2.1.27" + "neo-async" "^2.6.2" + "schema-utils" "^3.1.0" + "tapable" "^2.1.1" + "terser-webpack-plugin" "^5.1.3" + "watchpack" "^2.4.0" + "webpack-sources" "^3.2.3" -webpackbar@^5.0.2: - version "5.0.2" - resolved "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz" - integrity sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ== +"webpackbar@^5.0.2": + "integrity" "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==" + "resolved" "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz" + "version" "5.0.2" dependencies: - chalk "^4.1.0" - consola "^2.15.3" - pretty-time "^1.1.0" - std-env "^3.0.1" + "chalk" "^4.1.0" + "consola" "^2.15.3" + "pretty-time" "^1.1.0" + "std-env" "^3.0.1" -websocket-driver@>=0.5.1, websocket-driver@^0.7.4: - version "0.7.4" - resolved "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" - integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== +"websocket-driver@^0.7.4", "websocket-driver@>=0.5.1": + "integrity" "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + "resolved" "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" + "version" "0.7.4" dependencies: - http-parser-js ">=0.5.1" - safe-buffer ">=5.1.0" - websocket-extensions ">=0.1.1" + "http-parser-js" ">=0.5.1" + "safe-buffer" ">=5.1.0" + "websocket-extensions" ">=0.1.1" -websocket-extensions@>=0.1.1: - version "0.1.4" - resolved "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" - integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== +"websocket-extensions@>=0.1.1": + "integrity" "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + "resolved" "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" + "version" "0.1.4" -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== +"whatwg-url@^5.0.0": + "integrity" "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + "resolved" "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" + "version" "5.0.0" dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" + "tr46" "~0.0.3" + "webidl-conversions" "^3.0.0" -which@^1.3.1: - version "1.3.1" - resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== +"which@^1.3.1": + "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + "resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz" + "version" "1.3.1" dependencies: - isexe "^2.0.0" + "isexe" "^2.0.0" -which@^2.0.1: - version "2.0.2" - resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== +"which@^2.0.1": + "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + "version" "2.0.2" dependencies: - isexe "^2.0.0" + "isexe" "^2.0.0" -widest-line@^3.1.0: - version "3.1.0" - resolved "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz" - integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== +"widest-line@^3.1.0": + "integrity" "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" + "resolved" "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz" + "version" "3.1.0" dependencies: - string-width "^4.0.0" + "string-width" "^4.0.0" -widest-line@^4.0.1: - version "4.0.1" - resolved "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz" - integrity sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig== +"widest-line@^4.0.1": + "integrity" "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==" + "resolved" "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz" + "version" "4.0.1" dependencies: - string-width "^5.0.1" + "string-width" "^5.0.1" -wildcard@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" - integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== +"wildcard@^2.0.0": + "integrity" "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==" + "resolved" "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" + "version" "2.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== +"wrap-ansi@^7.0.0": + "integrity" "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" + "version" "7.0.0" dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" + "ansi-styles" "^4.0.0" + "string-width" "^4.1.0" + "strip-ansi" "^6.0.0" -wrap-ansi@^8.0.1: - version "8.0.1" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.0.1.tgz" - integrity sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g== +"wrap-ansi@^8.0.1": + "integrity" "sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g==" + "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.0.1.tgz" + "version" "8.0.1" dependencies: - ansi-styles "^6.1.0" - string-width "^5.0.1" - strip-ansi "^7.0.1" + "ansi-styles" "^6.1.0" + "string-width" "^5.0.1" + "strip-ansi" "^7.0.1" -wrappy@1: - version "1.0.2" - resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= +"wrappy@1": + "integrity" "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" + "version" "1.0.2" -write-file-atomic@^3.0.0: - version "3.0.3" - resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" - integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== +"write-file-atomic@^3.0.0": + "integrity" "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" + "resolved" "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" + "version" "3.0.3" dependencies: - imurmurhash "^0.1.4" - is-typedarray "^1.0.0" - signal-exit "^3.0.2" - typedarray-to-buffer "^3.1.5" + "imurmurhash" "^0.1.4" + "is-typedarray" "^1.0.0" + "signal-exit" "^3.0.2" + "typedarray-to-buffer" "^3.1.5" -ws@^7.3.1: - version "7.4.5" - resolved "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz" - integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g== +"ws@^7.3.1": + "integrity" "sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==" + "resolved" "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz" + "version" "7.4.5" -ws@^8.4.2: - version "8.8.1" - resolved "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz" - integrity sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA== +"ws@^8.4.2": + "integrity" "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==" + "resolved" "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz" + "version" "8.8.1" -xdg-basedir@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz" - integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== +"xdg-basedir@^4.0.0": + "integrity" "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" + "resolved" "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz" + "version" "4.0.0" -xml-js@^1.6.11: - version "1.6.11" - resolved "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz" - integrity sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g== +"xml-js@^1.6.11": + "integrity" "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" + "resolved" "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz" + "version" "1.6.11" dependencies: - sax "^1.2.4" + "sax" "^1.2.4" -xtend@^4.0.0, xtend@^4.0.1: - version "4.0.2" - resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== +"xtend@^4.0.0", "xtend@^4.0.1": + "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + "resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" + "version" "4.0.2" -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== +"yallist@^4.0.0": + "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" + "version" "4.0.0" -yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: - version "1.10.2" - resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" - integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== +"yaml@^1.10.0", "yaml@^1.10.2", "yaml@^1.7.2": + "integrity" "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + "resolved" "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" + "version" "1.10.2" -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== +"yocto-queue@^0.1.0": + "integrity" "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + "resolved" "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" + "version" "0.1.0" -zwitch@^1.0.0: - version "1.0.5" - resolved "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz" - integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw== +"zwitch@^1.0.0": + "integrity" "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==" + "resolved" "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz" + "version" "1.0.5" From ab084b323e66db60f4471982de77ca0c4703bcd3 Mon Sep 17 00:00:00 2001 From: Shubhendra Date: Thu, 2 Nov 2023 15:13:20 +0530 Subject: [PATCH 18/63] [doc]testing plugin --- docs/docs/widgets/file-picker.md | 2 +- docs/versions.json | 26 ++------------------------ 2 files changed, 3 insertions(+), 25 deletions(-) diff --git a/docs/docs/widgets/file-picker.md b/docs/docs/widgets/file-picker.md index 8db3ca7b04..e428b9acec 100644 --- a/docs/docs/widgets/file-picker.md +++ b/docs/docs/widgets/file-picker.md @@ -76,7 +76,7 @@ The maximum accepted number of files The default value is `2`. ### Accept file types -By providing types, you can make the dropzone accept specific file types and reject the others. +By providing types, you can make the dropzone accept specific file types and reject the others. Example: `{{"image/*,application/pdf,application/msword"}}` ### Max size limit diff --git a/docs/versions.json b/docs/versions.json index 52aea8527b..aa21efd140 100644 --- a/docs/versions.json +++ b/docs/versions.json @@ -1,25 +1,3 @@ [ - "2.22.0", - "2.19.0", - "2.18.0", - "2.17.0", - "2.16.0", - "2.15.0", - "2.14.0", - "2.13.0", - "2.12.0", - "2.11.0", - "2.10.0", - "2.9.4", - "2.9.0", - "2.8.0", - "2.7.0", - "2.6.0", - "2.5.0", - "2.4.0", - "2.3.0", - "2.2.0", - "2.1.0", - "2.0.0", - "1.x.x" -] + "2.22.0" +] \ No newline at end of file From 103f6f0509a880abe5b55c0005db095fc975ce41 Mon Sep 17 00:00:00 2001 From: Adish M Date: Thu, 2 Nov 2023 15:27:49 +0530 Subject: [PATCH 19/63] updating lock file --- docs/package-lock.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/package-lock.json b/docs/package-lock.json index 02f0d1291a..bcb2a31c34 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -18512,7 +18512,7 @@ }, "plugin-image-zoom": { "version": "git+ssh://git@github.com/flexanalytics/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de", - "from": "plugin-image-zoom@flexanalytics/plugin-image-zoom", + "from": "plugin-image-zoom@github:flexanalytics/plugin-image-zoom", "requires": { "medium-zoom": "^1.0.8" } From a25eabe420178a05f0c9fdf7481160d0a5454bfd Mon Sep 17 00:00:00 2001 From: Adish M Date: Thu, 2 Nov 2023 15:30:28 +0530 Subject: [PATCH 20/63] removing yarn lock file --- docs/package-lock.json | 3 +- docs/yarn.lock | 7595 ---------------------------------------- 2 files changed, 1 insertion(+), 7597 deletions(-) delete mode 100644 docs/yarn.lock diff --git a/docs/package-lock.json b/docs/package-lock.json index bcb2a31c34..acf95dd8c1 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -6402,8 +6402,7 @@ "tapable": "^1.0.0" }, "engines": { - "node": ">=10", - "yarn": ">=1.0.0" + "node": ">=10" }, "peerDependencies": { "eslint": ">= 6", diff --git a/docs/yarn.lock b/docs/yarn.lock deleted file mode 100644 index 383ab2d6ee..0000000000 --- a/docs/yarn.lock +++ /dev/null @@ -1,7595 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@algolia/autocomplete-core@1.9.3": - "integrity" "sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==" - "resolved" "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz" - "version" "1.9.3" - dependencies: - "@algolia/autocomplete-plugin-algolia-insights" "1.9.3" - "@algolia/autocomplete-shared" "1.9.3" - -"@algolia/autocomplete-plugin-algolia-insights@1.9.3": - "integrity" "sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==" - "resolved" "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.9.3.tgz" - "version" "1.9.3" - dependencies: - "@algolia/autocomplete-shared" "1.9.3" - -"@algolia/autocomplete-preset-algolia@1.9.3": - "integrity" "sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==" - "resolved" "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz" - "version" "1.9.3" - dependencies: - "@algolia/autocomplete-shared" "1.9.3" - -"@algolia/autocomplete-shared@1.9.3": - "integrity" "sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==" - "resolved" "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz" - "version" "1.9.3" - -"@algolia/cache-browser-local-storage@4.20.0": - "integrity" "sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==" - "resolved" "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/cache-common" "4.20.0" - -"@algolia/cache-common@4.20.0": - "integrity" "sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==" - "resolved" "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.20.0.tgz" - "version" "4.20.0" - -"@algolia/cache-in-memory@4.20.0": - "integrity" "sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==" - "resolved" "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/cache-common" "4.20.0" - -"@algolia/client-account@4.20.0": - "integrity" "sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==" - "resolved" "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/client-common" "4.20.0" - "@algolia/client-search" "4.20.0" - "@algolia/transporter" "4.20.0" - -"@algolia/client-analytics@4.20.0": - "integrity" "sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==" - "resolved" "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/client-common" "4.20.0" - "@algolia/client-search" "4.20.0" - "@algolia/requester-common" "4.20.0" - "@algolia/transporter" "4.20.0" - -"@algolia/client-common@4.20.0": - "integrity" "sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==" - "resolved" "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/requester-common" "4.20.0" - "@algolia/transporter" "4.20.0" - -"@algolia/client-personalization@4.20.0": - "integrity" "sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==" - "resolved" "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/client-common" "4.20.0" - "@algolia/requester-common" "4.20.0" - "@algolia/transporter" "4.20.0" - -"@algolia/client-search@>= 4.9.1 < 6", "@algolia/client-search@4.20.0": - "integrity" "sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==" - "resolved" "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/client-common" "4.20.0" - "@algolia/requester-common" "4.20.0" - "@algolia/transporter" "4.20.0" - -"@algolia/events@^4.0.1": - "integrity" "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==" - "resolved" "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz" - "version" "4.0.1" - -"@algolia/logger-common@4.20.0": - "integrity" "sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==" - "resolved" "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.20.0.tgz" - "version" "4.20.0" - -"@algolia/logger-console@4.20.0": - "integrity" "sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==" - "resolved" "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/logger-common" "4.20.0" - -"@algolia/requester-browser-xhr@4.20.0": - "integrity" "sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==" - "resolved" "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/requester-common" "4.20.0" - -"@algolia/requester-common@4.20.0": - "integrity" "sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==" - "resolved" "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.20.0.tgz" - "version" "4.20.0" - -"@algolia/requester-node-http@4.20.0": - "integrity" "sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==" - "resolved" "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/requester-common" "4.20.0" - -"@algolia/transporter@4.20.0": - "integrity" "sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==" - "resolved" "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/cache-common" "4.20.0" - "@algolia/logger-common" "4.20.0" - "@algolia/requester-common" "4.20.0" - -"@ampproject/remapping@^2.1.0": - "integrity" "sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==" - "resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.1.2.tgz" - "version" "2.1.2" - dependencies: - "@jridgewell/trace-mapping" "^0.3.0" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.8.3": - "integrity" "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==" - "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.18.8": - "integrity" "sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw==" - "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.13.tgz" - "version" "7.18.13" - -"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.11.6", "@babel/core@^7.12.0", "@babel/core@^7.13.0", "@babel/core@^7.15.5", "@babel/core@^7.18.6", "@babel/core@^7.4.0-0": - "integrity" "sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==" - "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.18.13.tgz" - "version" "7.18.13" - dependencies: - "@ampproject/remapping" "^2.1.0" - "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.18.13" - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-module-transforms" "^7.18.9" - "@babel/helpers" "^7.18.9" - "@babel/parser" "^7.18.13" - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.18.13" - "@babel/types" "^7.18.13" - "convert-source-map" "^1.7.0" - "debug" "^4.1.0" - "gensync" "^1.0.0-beta.2" - "json5" "^2.2.1" - "semver" "^6.3.0" - -"@babel/core@7.12.9": - "integrity" "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==" - "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz" - "version" "7.12.9" - dependencies: - "@babel/code-frame" "^7.10.4" - "@babel/generator" "^7.12.5" - "@babel/helper-module-transforms" "^7.12.1" - "@babel/helpers" "^7.12.5" - "@babel/parser" "^7.12.7" - "@babel/template" "^7.12.7" - "@babel/traverse" "^7.12.9" - "@babel/types" "^7.12.7" - "convert-source-map" "^1.7.0" - "debug" "^4.1.0" - "gensync" "^1.0.0-beta.1" - "json5" "^2.1.2" - "lodash" "^4.17.19" - "resolve" "^1.3.2" - "semver" "^5.4.1" - "source-map" "^0.5.0" - -"@babel/generator@^7.12.5", "@babel/generator@^7.18.13", "@babel/generator@^7.18.7": - "integrity" "sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==" - "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.18.13.tgz" - "version" "7.18.13" - dependencies: - "@babel/types" "^7.18.13" - "@jridgewell/gen-mapping" "^0.3.2" - "jsesc" "^2.5.1" - -"@babel/helper-annotate-as-pure@^7.18.6": - "integrity" "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==" - "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": - "integrity" "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==" - "resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-explode-assignable-expression" "^7.18.6" - "@babel/types" "^7.18.9" - -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9": - "integrity" "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==" - "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/compat-data" "^7.18.8" - "@babel/helper-validator-option" "^7.18.6" - "browserslist" "^4.20.2" - "semver" "^6.3.0" - -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.18.9": - "integrity" "sha512-hDvXp+QYxSRL+23mpAlSGxHMDyIGChm0/AwTfTAAK5Ufe40nCsyNdaYCGuK91phn/fVu9kqayImRDkvNAgdrsA==" - "resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.13.tgz" - "version" "7.18.13" - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.18.9" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.9" - "@babel/helper-split-export-declaration" "^7.18.6" - -"@babel/helper-create-regexp-features-plugin@^7.18.6": - "integrity" "sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==" - "resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "regexpu-core" "^5.1.0" - -"@babel/helper-define-polyfill-provider@^0.3.2": - "integrity" "sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==" - "resolved" "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz" - "version" "0.3.2" - dependencies: - "@babel/helper-compilation-targets" "^7.17.7" - "@babel/helper-plugin-utils" "^7.16.7" - "debug" "^4.1.1" - "lodash.debounce" "^4.0.8" - "resolve" "^1.14.2" - "semver" "^6.1.2" - -"@babel/helper-environment-visitor@^7.18.9": - "integrity" "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" - "resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz" - "version" "7.18.9" - -"@babel/helper-explode-assignable-expression@^7.18.6": - "integrity" "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==" - "resolved" "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-function-name@^7.18.9": - "integrity" "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==" - "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/template" "^7.18.6" - "@babel/types" "^7.18.9" - -"@babel/helper-hoist-variables@^7.18.6": - "integrity" "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==" - "resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-member-expression-to-functions@^7.18.9": - "integrity" "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==" - "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/types" "^7.18.9" - -"@babel/helper-module-imports@^7.18.6": - "integrity" "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==" - "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.18.9": - "integrity" "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==" - "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-simple-access" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.18.6" - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-optimise-call-expression@^7.18.6": - "integrity" "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==" - "resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - "integrity" "sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==" - "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.9.tgz" - "version" "7.18.9" - -"@babel/helper-plugin-utils@7.10.4": - "integrity" "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" - "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz" - "version" "7.10.4" - -"@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9": - "integrity" "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==" - "resolved" "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-wrap-function" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9": - "integrity" "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==" - "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.18.9" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/helper-simple-access@^7.18.6": - "integrity" "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==" - "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-skip-transparent-expression-wrappers@^7.18.9": - "integrity" "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==" - "resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/types" "^7.18.9" - -"@babel/helper-split-export-declaration@^7.18.6": - "integrity" "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==" - "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-string-parser@^7.18.10": - "integrity" "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==" - "resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz" - "version" "7.18.10" - -"@babel/helper-validator-identifier@^7.18.6": - "integrity" "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz" - "version" "7.18.6" - -"@babel/helper-validator-option@^7.18.6": - "integrity" "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" - "resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz" - "version" "7.18.6" - -"@babel/helper-wrap-function@^7.18.9": - "integrity" "sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==" - "resolved" "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.11.tgz" - "version" "7.18.11" - dependencies: - "@babel/helper-function-name" "^7.18.9" - "@babel/template" "^7.18.10" - "@babel/traverse" "^7.18.11" - "@babel/types" "^7.18.10" - -"@babel/helpers@^7.12.5", "@babel/helpers@^7.18.9": - "integrity" "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==" - "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.9" - "@babel/types" "^7.18.9" - -"@babel/highlight@^7.18.6": - "integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==" - "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - "chalk" "^2.0.0" - "js-tokens" "^4.0.0" - -"@babel/parser@^7.12.7", "@babel/parser@^7.18.10", "@babel/parser@^7.18.13", "@babel/parser@^7.18.8": - "integrity" "sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==" - "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz" - "version" "7.18.13" - -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": - "integrity" "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": - "integrity" "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" - "@babel/plugin-proposal-optional-chaining" "^7.18.9" - -"@babel/plugin-proposal-async-generator-functions@^7.18.10": - "integrity" "sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.10.tgz" - "version" "7.18.10" - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-remap-async-to-generator" "^7.18.9" - "@babel/plugin-syntax-async-generators" "^7.8.4" - -"@babel/plugin-proposal-class-properties@^7.18.6": - "integrity" "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-class-static-block@^7.18.6": - "integrity" "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-proposal-dynamic-import@^7.18.6": - "integrity" "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - -"@babel/plugin-proposal-export-namespace-from@^7.18.9": - "integrity" "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-proposal-json-strings@^7.18.6": - "integrity" "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-proposal-logical-assignment-operators@^7.18.9": - "integrity" "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": - "integrity" "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - -"@babel/plugin-proposal-numeric-separator@^7.18.6": - "integrity" "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-proposal-object-rest-spread@^7.18.9": - "integrity" "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/compat-data" "^7.18.8" - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.18.8" - -"@babel/plugin-proposal-object-rest-spread@7.12.1": - "integrity" "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz" - "version" "7.12.1" - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-transform-parameters" "^7.12.1" - -"@babel/plugin-proposal-optional-catch-binding@^7.18.6": - "integrity" "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - -"@babel/plugin-proposal-optional-chaining@^7.18.9": - "integrity" "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - -"@babel/plugin-proposal-private-methods@^7.18.6": - "integrity" "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-private-property-in-object@^7.18.6": - "integrity" "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - -"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": - "integrity" "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==" - "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-syntax-async-generators@^7.8.4": - "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" - "version" "7.8.4" - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13": - "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" - "version" "7.12.13" - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-class-static-block@^7.14.5": - "integrity" "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" - "version" "7.14.5" - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-dynamic-import@^7.8.3": - "integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" - "version" "7.8.3" - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - "integrity" "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" - "version" "7.8.3" - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - -"@babel/plugin-syntax-import-assertions@^7.18.6": - "integrity" "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-syntax-json-strings@^7.8.3": - "integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" - "version" "7.8.3" - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-jsx@^7.18.6": - "integrity" "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-syntax-jsx@7.12.1": - "integrity" "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz" - "version" "7.12.1" - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": - "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" - "version" "7.10.4" - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" - "version" "7.8.3" - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.10.4": - "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" - "version" "7.10.4" - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3", "@babel/plugin-syntax-object-rest-spread@7.8.3": - "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" - "version" "7.8.3" - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" - "version" "7.8.3" - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" - "version" "7.8.3" - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-private-property-in-object@^7.14.5": - "integrity" "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" - "version" "7.14.5" - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-top-level-await@^7.14.5": - "integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" - "version" "7.14.5" - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.18.6": - "integrity" "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-arrow-functions@^7.18.6": - "integrity" "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-async-to-generator@^7.18.6": - "integrity" "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-remap-async-to-generator" "^7.18.6" - -"@babel/plugin-transform-block-scoped-functions@^7.18.6": - "integrity" "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-block-scoping@^7.18.9": - "integrity" "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-classes@^7.18.9": - "integrity" "sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-replace-supers" "^7.18.9" - "@babel/helper-split-export-declaration" "^7.18.6" - "globals" "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.18.9": - "integrity" "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-destructuring@^7.18.9": - "integrity" "sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz" - "version" "7.18.13" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": - "integrity" "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-duplicate-keys@^7.18.9": - "integrity" "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-exponentiation-operator@^7.18.6": - "integrity" "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-for-of@^7.18.8": - "integrity" "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz" - "version" "7.18.8" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-function-name@^7.18.9": - "integrity" "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-literals@^7.18.9": - "integrity" "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-member-expression-literals@^7.18.6": - "integrity" "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-modules-amd@^7.18.6": - "integrity" "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "babel-plugin-dynamic-import-node" "^2.3.3" - -"@babel/plugin-transform-modules-commonjs@^7.18.6": - "integrity" "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-simple-access" "^7.18.6" - "babel-plugin-dynamic-import-node" "^2.3.3" - -"@babel/plugin-transform-modules-systemjs@^7.18.9": - "integrity" "sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-module-transforms" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-validator-identifier" "^7.18.6" - "babel-plugin-dynamic-import-node" "^2.3.3" - -"@babel/plugin-transform-modules-umd@^7.18.6": - "integrity" "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.18.6": - "integrity" "sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-new-target@^7.18.6": - "integrity" "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-object-super@^7.18.6": - "integrity" "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.6" - -"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.18.8": - "integrity" "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz" - "version" "7.18.8" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-property-literals@^7.18.6": - "integrity" "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-react-constant-elements@^7.14.5": - "integrity" "sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.17.6.tgz" - "version" "7.17.6" - dependencies: - "@babel/helper-plugin-utils" "^7.16.7" - -"@babel/plugin-transform-react-display-name@^7.18.6": - "integrity" "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-react-jsx-development@^7.18.6": - "integrity" "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/plugin-transform-react-jsx" "^7.18.6" - -"@babel/plugin-transform-react-jsx@^7.18.6": - "integrity" "sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.10.tgz" - "version" "7.18.10" - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-jsx" "^7.18.6" - "@babel/types" "^7.18.10" - -"@babel/plugin-transform-react-pure-annotations@^7.18.6": - "integrity" "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-regenerator@^7.18.6": - "integrity" "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "regenerator-transform" "^0.15.0" - -"@babel/plugin-transform-reserved-words@^7.18.6": - "integrity" "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-runtime@^7.18.6": - "integrity" "sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.10.tgz" - "version" "7.18.10" - dependencies: - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.9" - "babel-plugin-polyfill-corejs2" "^0.3.2" - "babel-plugin-polyfill-corejs3" "^0.5.3" - "babel-plugin-polyfill-regenerator" "^0.4.0" - "semver" "^6.3.0" - -"@babel/plugin-transform-shorthand-properties@^7.18.6": - "integrity" "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-spread@^7.18.9": - "integrity" "sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" - -"@babel/plugin-transform-sticky-regex@^7.18.6": - "integrity" "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-template-literals@^7.18.9": - "integrity" "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-typeof-symbol@^7.18.9": - "integrity" "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-typescript@^7.18.6": - "integrity" "sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.12.tgz" - "version" "7.18.12" - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/plugin-syntax-typescript" "^7.18.6" - -"@babel/plugin-transform-unicode-escapes@^7.18.10": - "integrity" "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz" - "version" "7.18.10" - dependencies: - "@babel/helper-plugin-utils" "^7.18.9" - -"@babel/plugin-transform-unicode-regex@^7.18.6": - "integrity" "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==" - "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/preset-env@^7.15.6", "@babel/preset-env@^7.18.6": - "integrity" "sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==" - "resolved" "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.10.tgz" - "version" "7.18.10" - dependencies: - "@babel/compat-data" "^7.18.8" - "@babel/helper-compilation-targets" "^7.18.9" - "@babel/helper-plugin-utils" "^7.18.9" - "@babel/helper-validator-option" "^7.18.6" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9" - "@babel/plugin-proposal-async-generator-functions" "^7.18.10" - "@babel/plugin-proposal-class-properties" "^7.18.6" - "@babel/plugin-proposal-class-static-block" "^7.18.6" - "@babel/plugin-proposal-dynamic-import" "^7.18.6" - "@babel/plugin-proposal-export-namespace-from" "^7.18.9" - "@babel/plugin-proposal-json-strings" "^7.18.6" - "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" - "@babel/plugin-proposal-numeric-separator" "^7.18.6" - "@babel/plugin-proposal-object-rest-spread" "^7.18.9" - "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" - "@babel/plugin-proposal-optional-chaining" "^7.18.9" - "@babel/plugin-proposal-private-methods" "^7.18.6" - "@babel/plugin-proposal-private-property-in-object" "^7.18.6" - "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-class-properties" "^7.12.13" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.18.6" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" - "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-transform-arrow-functions" "^7.18.6" - "@babel/plugin-transform-async-to-generator" "^7.18.6" - "@babel/plugin-transform-block-scoped-functions" "^7.18.6" - "@babel/plugin-transform-block-scoping" "^7.18.9" - "@babel/plugin-transform-classes" "^7.18.9" - "@babel/plugin-transform-computed-properties" "^7.18.9" - "@babel/plugin-transform-destructuring" "^7.18.9" - "@babel/plugin-transform-dotall-regex" "^7.18.6" - "@babel/plugin-transform-duplicate-keys" "^7.18.9" - "@babel/plugin-transform-exponentiation-operator" "^7.18.6" - "@babel/plugin-transform-for-of" "^7.18.8" - "@babel/plugin-transform-function-name" "^7.18.9" - "@babel/plugin-transform-literals" "^7.18.9" - "@babel/plugin-transform-member-expression-literals" "^7.18.6" - "@babel/plugin-transform-modules-amd" "^7.18.6" - "@babel/plugin-transform-modules-commonjs" "^7.18.6" - "@babel/plugin-transform-modules-systemjs" "^7.18.9" - "@babel/plugin-transform-modules-umd" "^7.18.6" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.18.6" - "@babel/plugin-transform-new-target" "^7.18.6" - "@babel/plugin-transform-object-super" "^7.18.6" - "@babel/plugin-transform-parameters" "^7.18.8" - "@babel/plugin-transform-property-literals" "^7.18.6" - "@babel/plugin-transform-regenerator" "^7.18.6" - "@babel/plugin-transform-reserved-words" "^7.18.6" - "@babel/plugin-transform-shorthand-properties" "^7.18.6" - "@babel/plugin-transform-spread" "^7.18.9" - "@babel/plugin-transform-sticky-regex" "^7.18.6" - "@babel/plugin-transform-template-literals" "^7.18.9" - "@babel/plugin-transform-typeof-symbol" "^7.18.9" - "@babel/plugin-transform-unicode-escapes" "^7.18.10" - "@babel/plugin-transform-unicode-regex" "^7.18.6" - "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.18.10" - "babel-plugin-polyfill-corejs2" "^0.3.2" - "babel-plugin-polyfill-corejs3" "^0.5.3" - "babel-plugin-polyfill-regenerator" "^0.4.0" - "core-js-compat" "^3.22.1" - "semver" "^6.3.0" - -"@babel/preset-modules@^0.1.5": - "integrity" "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==" - "resolved" "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz" - "version" "0.1.5" - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/types" "^7.4.4" - "esutils" "^2.0.2" - -"@babel/preset-react@^7.14.5", "@babel/preset-react@^7.18.6": - "integrity" "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==" - "resolved" "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-validator-option" "^7.18.6" - "@babel/plugin-transform-react-display-name" "^7.18.6" - "@babel/plugin-transform-react-jsx" "^7.18.6" - "@babel/plugin-transform-react-jsx-development" "^7.18.6" - "@babel/plugin-transform-react-pure-annotations" "^7.18.6" - -"@babel/preset-typescript@^7.15.0", "@babel/preset-typescript@^7.18.6": - "integrity" "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==" - "resolved" "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz" - "version" "7.18.6" - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - "@babel/helper-validator-option" "^7.18.6" - "@babel/plugin-transform-typescript" "^7.18.6" - -"@babel/runtime-corejs3@^7.18.6": - "integrity" "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==" - "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz" - "version" "7.18.9" - dependencies: - "core-js-pure" "^3.20.2" - "regenerator-runtime" "^0.13.4" - -"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.6", "@babel/runtime@^7.20.13", "@babel/runtime@^7.8.4": - "integrity" "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==" - "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz" - "version" "7.22.6" - dependencies: - "regenerator-runtime" "^0.13.11" - -"@babel/template@^7.12.7", "@babel/template@^7.18.10", "@babel/template@^7.18.6": - "integrity" "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==" - "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz" - "version" "7.18.10" - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.18.10" - "@babel/types" "^7.18.10" - -"@babel/traverse@^7.12.9", "@babel/traverse@^7.18.11", "@babel/traverse@^7.18.13", "@babel/traverse@^7.18.8", "@babel/traverse@^7.18.9": - "integrity" "sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA==" - "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.13.tgz" - "version" "7.18.13" - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.18.13" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.18.9" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.18.13" - "@babel/types" "^7.18.13" - "debug" "^4.1.0" - "globals" "^11.1.0" - -"@babel/types@^7.12.7", "@babel/types@^7.15.6", "@babel/types@^7.18.10", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.4.4": - "integrity" "sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ==" - "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.18.13.tgz" - "version" "7.18.13" - dependencies: - "@babel/helper-string-parser" "^7.18.10" - "@babel/helper-validator-identifier" "^7.18.6" - "to-fast-properties" "^2.0.0" - -"@colors/colors@1.5.0": - "integrity" "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" - "resolved" "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz" - "version" "1.5.0" - -"@docsearch/css@3.5.2": - "integrity" "sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==" - "resolved" "https://registry.npmjs.org/@docsearch/css/-/css-3.5.2.tgz" - "version" "3.5.2" - -"@docsearch/react@^3.1.1": - "integrity" "sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==" - "resolved" "https://registry.npmjs.org/@docsearch/react/-/react-3.5.2.tgz" - "version" "3.5.2" - dependencies: - "@algolia/autocomplete-core" "1.9.3" - "@algolia/autocomplete-preset-algolia" "1.9.3" - "@docsearch/css" "3.5.2" - "algoliasearch" "^4.19.1" - -"@docusaurus/core@^2.4.3", "@docusaurus/core@2.4.3": - "integrity" "sha512-dWH5P7cgeNSIg9ufReX6gaCl/TmrGKD38Orbwuz05WPhAQtFXHd5B8Qym1TiXfvUNvwoYKkAJOJuGe8ou0Z7PA==" - "resolved" "https://registry.npmjs.org/@docusaurus/core/-/core-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@babel/core" "^7.18.6" - "@babel/generator" "^7.18.7" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-transform-runtime" "^7.18.6" - "@babel/preset-env" "^7.18.6" - "@babel/preset-react" "^7.18.6" - "@babel/preset-typescript" "^7.18.6" - "@babel/runtime" "^7.18.6" - "@babel/runtime-corejs3" "^7.18.6" - "@babel/traverse" "^7.18.8" - "@docusaurus/cssnano-preset" "2.4.3" - "@docusaurus/logger" "2.4.3" - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/react-loadable" "5.5.2" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-common" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "@slorber/static-site-generator-webpack-plugin" "^4.0.7" - "@svgr/webpack" "^6.2.1" - "autoprefixer" "^10.4.7" - "babel-loader" "^8.2.5" - "babel-plugin-dynamic-import-node" "^2.3.3" - "boxen" "^6.2.1" - "chalk" "^4.1.2" - "chokidar" "^3.5.3" - "clean-css" "^5.3.0" - "cli-table3" "^0.6.2" - "combine-promises" "^1.1.0" - "commander" "^5.1.0" - "copy-webpack-plugin" "^11.0.0" - "core-js" "^3.23.3" - "css-loader" "^6.7.1" - "css-minimizer-webpack-plugin" "^4.0.0" - "cssnano" "^5.1.12" - "del" "^6.1.1" - "detect-port" "^1.3.0" - "escape-html" "^1.0.3" - "eta" "^2.0.0" - "file-loader" "^6.2.0" - "fs-extra" "^10.1.0" - "html-minifier-terser" "^6.1.0" - "html-tags" "^3.2.0" - "html-webpack-plugin" "^5.5.0" - "import-fresh" "^3.3.0" - "leven" "^3.1.0" - "lodash" "^4.17.21" - "mini-css-extract-plugin" "^2.6.1" - "postcss" "^8.4.14" - "postcss-loader" "^7.0.0" - "prompts" "^2.4.2" - "react-dev-utils" "^12.0.1" - "react-helmet-async" "^1.3.0" - "react-loadable" "npm:@docusaurus/react-loadable@5.5.2" - "react-loadable-ssr-addon-v5-slorber" "^1.0.1" - "react-router" "^5.3.3" - "react-router-config" "^5.1.1" - "react-router-dom" "^5.3.3" - "rtl-detect" "^1.0.4" - "semver" "^7.3.7" - "serve-handler" "^6.1.3" - "shelljs" "^0.8.5" - "terser-webpack-plugin" "^5.3.3" - "tslib" "^2.4.0" - "update-notifier" "^5.1.0" - "url-loader" "^4.1.1" - "wait-on" "^6.0.1" - "webpack" "^5.73.0" - "webpack-bundle-analyzer" "^4.5.0" - "webpack-dev-server" "^4.9.3" - "webpack-merge" "^5.8.0" - "webpackbar" "^5.0.2" - -"@docusaurus/cssnano-preset@2.4.3": - "integrity" "sha512-ZvGSRCi7z9wLnZrXNPG6DmVPHdKGd8dIn9pYbEOFiYihfv4uDR3UtxogmKf+rT8ZlKFf5Lqne8E8nt08zNM8CA==" - "resolved" "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "cssnano-preset-advanced" "^5.3.8" - "postcss" "^8.4.14" - "postcss-sort-media-queries" "^4.2.1" - "tslib" "^2.4.0" - -"@docusaurus/logger@2.4.3": - "integrity" "sha512-Zxws7r3yLufk9xM1zq9ged0YHs65mlRmtsobnFkdZTxWXdTYlWWLWdKyNKAsVC+D7zg+pv2fGbyabdOnyZOM3w==" - "resolved" "https://registry.npmjs.org/@docusaurus/logger/-/logger-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "chalk" "^4.1.2" - "tslib" "^2.4.0" - -"@docusaurus/mdx-loader@2.4.3": - "integrity" "sha512-b1+fDnWtl3GiqkL0BRjYtc94FZrcDDBV1j8446+4tptB9BAOlePwG2p/pK6vGvfL53lkOsszXMghr2g67M0vCw==" - "resolved" "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@babel/parser" "^7.18.8" - "@babel/traverse" "^7.18.8" - "@docusaurus/logger" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@mdx-js/mdx" "^1.6.22" - "escape-html" "^1.0.3" - "file-loader" "^6.2.0" - "fs-extra" "^10.1.0" - "image-size" "^1.0.1" - "mdast-util-to-string" "^2.0.0" - "remark-emoji" "^2.2.0" - "stringify-object" "^3.3.0" - "tslib" "^2.4.0" - "unified" "^9.2.2" - "unist-util-visit" "^2.0.3" - "url-loader" "^4.1.1" - "webpack" "^5.73.0" - -"@docusaurus/module-type-aliases@2.4.3": - "integrity" "sha512-cwkBkt1UCiduuvEAo7XZY01dJfRn7UR/75mBgOdb1hKknhrabJZ8YH+7savd/y9kLExPyrhe0QwdS9GuzsRRIA==" - "resolved" "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/react-loadable" "5.5.2" - "@docusaurus/types" "2.4.3" - "@types/history" "^4.7.11" - "@types/react" "*" - "@types/react-router-config" "*" - "@types/react-router-dom" "*" - "react-helmet-async" "*" - "react-loadable" "npm:@docusaurus/react-loadable@5.5.2" - -"@docusaurus/plugin-content-blog@2.4.3": - "integrity" "sha512-PVhypqaA0t98zVDpOeTqWUTvRqCEjJubtfFUQ7zJNYdbYTbS/E/ytq6zbLVsN/dImvemtO/5JQgjLxsh8XLo8Q==" - "resolved" "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/logger" "2.4.3" - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-common" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "cheerio" "^1.0.0-rc.12" - "feed" "^4.2.2" - "fs-extra" "^10.1.0" - "lodash" "^4.17.21" - "reading-time" "^1.5.0" - "tslib" "^2.4.0" - "unist-util-visit" "^2.0.3" - "utility-types" "^3.10.0" - "webpack" "^5.73.0" - -"@docusaurus/plugin-content-docs@2.4.3": - "integrity" "sha512-N7Po2LSH6UejQhzTCsvuX5NOzlC+HiXOVvofnEPj0WhMu1etpLEXE6a4aTxrtg95lQ5kf0xUIdjX9sh3d3G76A==" - "resolved" "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/logger" "2.4.3" - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/module-type-aliases" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "@types/react-router-config" "^5.0.6" - "combine-promises" "^1.1.0" - "fs-extra" "^10.1.0" - "import-fresh" "^3.3.0" - "js-yaml" "^4.1.0" - "lodash" "^4.17.21" - "tslib" "^2.4.0" - "utility-types" "^3.10.0" - "webpack" "^5.73.0" - -"@docusaurus/plugin-content-pages@2.4.3": - "integrity" "sha512-txtDVz7y3zGk67q0HjG0gRttVPodkHqE0bpJ+7dOaTH40CQFLSh7+aBeGnPOTl+oCPG+hxkim4SndqPqXjQ8Bg==" - "resolved" "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "fs-extra" "^10.1.0" - "tslib" "^2.4.0" - "webpack" "^5.73.0" - -"@docusaurus/plugin-debug@2.4.3": - "integrity" "sha512-LkUbuq3zCmINlFb+gAd4ZvYr+bPAzMC0hwND4F7V9bZ852dCX8YoWyovVUBKq4er1XsOwSQaHmNGtObtn8Av8Q==" - "resolved" "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "fs-extra" "^10.1.0" - "react-json-view" "^1.21.3" - "tslib" "^2.4.0" - -"@docusaurus/plugin-google-analytics@2.4.3": - "integrity" "sha512-KzBV3k8lDkWOhg/oYGxlK5o9bOwX7KpPc/FTWoB+SfKhlHfhq7qcQdMi1elAaVEIop8tgK6gD1E58Q+XC6otSQ==" - "resolved" "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "tslib" "^2.4.0" - -"@docusaurus/plugin-google-gtag@^2.4.3", "@docusaurus/plugin-google-gtag@2.4.3": - "integrity" "sha512-5FMg0rT7sDy4i9AGsvJC71MQrqQZwgLNdDetLEGDHLfSHLvJhQbTCUGbGXknUgWXQJckcV/AILYeJy+HhxeIFA==" - "resolved" "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "tslib" "^2.4.0" - -"@docusaurus/plugin-google-tag-manager@2.4.3": - "integrity" "sha512-1jTzp71yDGuQiX9Bi0pVp3alArV0LSnHXempvQTxwCGAEzUWWaBg4d8pocAlTpbP9aULQQqhgzrs8hgTRPOM0A==" - "resolved" "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "tslib" "^2.4.0" - -"@docusaurus/plugin-sitemap@^2.4.3", "@docusaurus/plugin-sitemap@2.4.3": - "integrity" "sha512-LRQYrK1oH1rNfr4YvWBmRzTL0LN9UAPxBbghgeFRBm5yloF6P+zv1tm2pe2hQTX/QP5bSKdnajCvfnScgKXMZQ==" - "resolved" "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/logger" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-common" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "fs-extra" "^10.1.0" - "sitemap" "^7.1.1" - "tslib" "^2.4.0" - -"@docusaurus/preset-classic@^2.4.3": - "integrity" "sha512-tRyMliepY11Ym6hB1rAFSNGwQDpmszvWYJvlK1E+md4SW8i6ylNHtpZjaYFff9Mdk3i/Pg8ItQq9P0daOJAvQw==" - "resolved" "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/plugin-content-blog" "2.4.3" - "@docusaurus/plugin-content-docs" "2.4.3" - "@docusaurus/plugin-content-pages" "2.4.3" - "@docusaurus/plugin-debug" "2.4.3" - "@docusaurus/plugin-google-analytics" "2.4.3" - "@docusaurus/plugin-google-gtag" "2.4.3" - "@docusaurus/plugin-google-tag-manager" "2.4.3" - "@docusaurus/plugin-sitemap" "2.4.3" - "@docusaurus/theme-classic" "2.4.3" - "@docusaurus/theme-common" "2.4.3" - "@docusaurus/theme-search-algolia" "2.4.3" - "@docusaurus/types" "2.4.3" - -"@docusaurus/react-loadable@5.5.2": - "integrity" "sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==" - "resolved" "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz" - "version" "5.5.2" - dependencies: - "@types/react" "*" - "prop-types" "^15.6.2" - -"@docusaurus/theme-classic@2.4.3": - "integrity" "sha512-QKRAJPSGPfDY2yCiPMIVyr+MqwZCIV2lxNzqbyUW0YkrlmdzzP3WuQJPMGLCjWgQp/5c9kpWMvMxjhpZx1R32Q==" - "resolved" "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/core" "2.4.3" - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/module-type-aliases" "2.4.3" - "@docusaurus/plugin-content-blog" "2.4.3" - "@docusaurus/plugin-content-docs" "2.4.3" - "@docusaurus/plugin-content-pages" "2.4.3" - "@docusaurus/theme-common" "2.4.3" - "@docusaurus/theme-translations" "2.4.3" - "@docusaurus/types" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-common" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "@mdx-js/react" "^1.6.22" - "clsx" "^1.2.1" - "copy-text-to-clipboard" "^3.0.1" - "infima" "0.2.0-alpha.43" - "lodash" "^4.17.21" - "nprogress" "^0.2.0" - "postcss" "^8.4.14" - "prism-react-renderer" "^1.3.5" - "prismjs" "^1.28.0" - "react-router-dom" "^5.3.3" - "rtlcss" "^3.5.0" - "tslib" "^2.4.0" - "utility-types" "^3.10.0" - -"@docusaurus/theme-common@2.4.3": - "integrity" "sha512-7KaDJBXKBVGXw5WOVt84FtN8czGWhM0lbyWEZXGp8AFfL6sZQfRTluFp4QriR97qwzSyOfQb+nzcDZZU4tezUw==" - "resolved" "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/mdx-loader" "2.4.3" - "@docusaurus/module-type-aliases" "2.4.3" - "@docusaurus/plugin-content-blog" "2.4.3" - "@docusaurus/plugin-content-docs" "2.4.3" - "@docusaurus/plugin-content-pages" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-common" "2.4.3" - "@types/history" "^4.7.11" - "@types/react" "*" - "@types/react-router-config" "*" - "clsx" "^1.2.1" - "parse-numeric-range" "^1.3.0" - "prism-react-renderer" "^1.3.5" - "tslib" "^2.4.0" - "use-sync-external-store" "^1.2.0" - "utility-types" "^3.10.0" - -"@docusaurus/theme-search-algolia@2.4.3": - "integrity" "sha512-jziq4f6YVUB5hZOB85ELATwnxBz/RmSLD3ksGQOLDPKVzat4pmI8tddNWtriPpxR04BNT+ZfpPUMFkNFetSW1Q==" - "resolved" "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docsearch/react" "^3.1.1" - "@docusaurus/core" "2.4.3" - "@docusaurus/logger" "2.4.3" - "@docusaurus/plugin-content-docs" "2.4.3" - "@docusaurus/theme-common" "2.4.3" - "@docusaurus/theme-translations" "2.4.3" - "@docusaurus/utils" "2.4.3" - "@docusaurus/utils-validation" "2.4.3" - "algoliasearch" "^4.13.1" - "algoliasearch-helper" "^3.10.0" - "clsx" "^1.2.1" - "eta" "^2.0.0" - "fs-extra" "^10.1.0" - "lodash" "^4.17.21" - "tslib" "^2.4.0" - "utility-types" "^3.10.0" - -"@docusaurus/theme-translations@2.4.3": - "integrity" "sha512-H4D+lbZbjbKNS/Zw1Lel64PioUAIT3cLYYJLUf3KkuO/oc9e0QCVhIYVtUI2SfBCF2NNdlyhBDQEEMygsCedIg==" - "resolved" "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "fs-extra" "^10.1.0" - "tslib" "^2.4.0" - -"@docusaurus/types@*", "@docusaurus/types@2.4.3": - "integrity" "sha512-W6zNLGQqfrp/EoPD0bhb9n7OobP+RHpmvVzpA+Z/IuU3Q63njJM24hmT0GYboovWcDtFmnIJC9wcyx4RVPQscw==" - "resolved" "https://registry.npmjs.org/@docusaurus/types/-/types-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@types/history" "^4.7.11" - "@types/react" "*" - "commander" "^5.1.0" - "joi" "^17.6.0" - "react-helmet-async" "^1.3.0" - "utility-types" "^3.10.0" - "webpack" "^5.73.0" - "webpack-merge" "^5.8.0" - -"@docusaurus/utils-common@2.4.3": - "integrity" "sha512-/jascp4GbLQCPVmcGkPzEQjNaAk3ADVfMtudk49Ggb+131B1WDD6HqlSmDf8MxGdy7Dja2gc+StHf01kiWoTDQ==" - "resolved" "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "tslib" "^2.4.0" - -"@docusaurus/utils-validation@2.4.3": - "integrity" "sha512-G2+Vt3WR5E/9drAobP+hhZQMaswRwDlp6qOMi7o7ZypB+VO7N//DZWhZEwhcRGepMDJGQEwtPv7UxtYwPL9PBw==" - "resolved" "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/logger" "2.4.3" - "@docusaurus/utils" "2.4.3" - "joi" "^17.6.0" - "js-yaml" "^4.1.0" - "tslib" "^2.4.0" - -"@docusaurus/utils@2.4.3": - "integrity" "sha512-fKcXsjrD86Smxv8Pt0TBFqYieZZCPh4cbf9oszUq/AMhZn3ujwpKaVYZACPX8mmjtYx0JOgNx52CREBfiGQB4A==" - "resolved" "https://registry.npmjs.org/@docusaurus/utils/-/utils-2.4.3.tgz" - "version" "2.4.3" - dependencies: - "@docusaurus/logger" "2.4.3" - "@svgr/webpack" "^6.2.1" - "escape-string-regexp" "^4.0.0" - "file-loader" "^6.2.0" - "fs-extra" "^10.1.0" - "github-slugger" "^1.4.0" - "globby" "^11.1.0" - "gray-matter" "^4.0.3" - "js-yaml" "^4.1.0" - "lodash" "^4.17.21" - "micromatch" "^4.0.5" - "resolve-pathname" "^3.0.0" - "shelljs" "^0.8.5" - "tslib" "^2.4.0" - "url-loader" "^4.1.1" - "webpack" "^5.73.0" - -"@hapi/hoek@^9.0.0": - "integrity" "sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug==" - "resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz" - "version" "9.2.0" - -"@hapi/topo@^5.0.0": - "integrity" "sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw==" - "resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "@hapi/hoek" "^9.0.0" - -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": - "integrity" "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==" - "resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz" - "version" "0.3.2" - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@^3.0.3": - "integrity" "sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==" - "resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz" - "version" "3.0.5" - -"@jridgewell/set-array@^1.0.1": - "integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - "resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" - "version" "1.1.2" - -"@jridgewell/source-map@^0.3.2": - "integrity" "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==" - "resolved" "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz" - "version" "0.3.2" - dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/sourcemap-codec@^1.4.10": - "integrity" "sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==" - "resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz" - "version" "1.4.11" - -"@jridgewell/trace-mapping@^0.3.0", "@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9": - "integrity" "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==" - "resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz" - "version" "0.3.15" - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@leichtgewicht/ip-codec@^2.0.1": - "integrity" "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" - "resolved" "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz" - "version" "2.0.4" - -"@mdx-js/mdx@^1.6.22": - "integrity" "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==" - "resolved" "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-1.6.22.tgz" - "version" "1.6.22" - dependencies: - "@babel/core" "7.12.9" - "@babel/plugin-syntax-jsx" "7.12.1" - "@babel/plugin-syntax-object-rest-spread" "7.8.3" - "@mdx-js/util" "1.6.22" - "babel-plugin-apply-mdx-type-prop" "1.6.22" - "babel-plugin-extract-import-names" "1.6.22" - "camelcase-css" "2.0.1" - "detab" "2.0.4" - "hast-util-raw" "6.0.1" - "lodash.uniq" "4.5.0" - "mdast-util-to-hast" "10.0.1" - "remark-footnotes" "2.0.0" - "remark-mdx" "1.6.22" - "remark-parse" "8.0.3" - "remark-squeeze-paragraphs" "4.0.0" - "style-to-object" "0.3.0" - "unified" "9.2.0" - "unist-builder" "2.0.3" - "unist-util-visit" "2.0.3" - -"@mdx-js/react@^1.6.22": - "integrity" "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==" - "resolved" "https://registry.npmjs.org/@mdx-js/react/-/react-1.6.22.tgz" - "version" "1.6.22" - -"@mdx-js/util@1.6.22": - "integrity" "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==" - "resolved" "https://registry.npmjs.org/@mdx-js/util/-/util-1.6.22.tgz" - "version" "1.6.22" - -"@nodelib/fs.scandir@2.1.4": - "integrity" "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==" - "resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz" - "version" "2.1.4" - dependencies: - "@nodelib/fs.stat" "2.0.4" - "run-parallel" "^1.1.9" - -"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.4": - "integrity" "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==" - "resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz" - "version" "2.0.4" - -"@nodelib/fs.walk@^1.2.3": - "integrity" "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==" - "resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz" - "version" "1.2.6" - dependencies: - "@nodelib/fs.scandir" "2.1.4" - "fastq" "^1.6.0" - -"@polka/url@^1.0.0-next.9": - "integrity" "sha512-6RglhutqrGFMO1MNUXp95RBuYIuc8wTnMAV5MUhLmjTOy78ncwOw7RgeQ/HeymkKXRhZd0s2DNrM1rL7unk3MQ==" - "resolved" "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.12.tgz" - "version" "1.0.0-next.12" - -"@sideway/address@^4.1.3": - "integrity" "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==" - "resolved" "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz" - "version" "4.1.4" - dependencies: - "@hapi/hoek" "^9.0.0" - -"@sideway/formula@^3.0.0": - "integrity" "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==" - "resolved" "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz" - "version" "3.0.0" - -"@sideway/pinpoint@^2.0.0": - "integrity" "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" - "resolved" "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz" - "version" "2.0.0" - -"@sindresorhus/is@^0.14.0": - "integrity" "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" - "resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz" - "version" "0.14.0" - -"@slorber/static-site-generator-webpack-plugin@^4.0.7": - "integrity" "sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==" - "resolved" "https://registry.npmjs.org/@slorber/static-site-generator-webpack-plugin/-/static-site-generator-webpack-plugin-4.0.7.tgz" - "version" "4.0.7" - dependencies: - "eval" "^0.1.8" - "p-map" "^4.0.0" - "webpack-sources" "^3.2.2" - -"@svgr/babel-plugin-add-jsx-attribute@^6.0.0": - "integrity" "sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==" - "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.0.0.tgz" - "version" "6.0.0" - -"@svgr/babel-plugin-remove-jsx-attribute@^6.0.0": - "integrity" "sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==" - "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.0.0.tgz" - "version" "6.0.0" - -"@svgr/babel-plugin-remove-jsx-empty-expression@^6.0.0": - "integrity" "sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==" - "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.0.0.tgz" - "version" "6.0.0" - -"@svgr/babel-plugin-replace-jsx-attribute-value@^6.0.0": - "integrity" "sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==" - "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.0.0.tgz" - "version" "6.0.0" - -"@svgr/babel-plugin-svg-dynamic-title@^6.0.0": - "integrity" "sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==" - "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.0.0.tgz" - "version" "6.0.0" - -"@svgr/babel-plugin-svg-em-dimensions@^6.0.0": - "integrity" "sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==" - "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.0.0.tgz" - "version" "6.0.0" - -"@svgr/babel-plugin-transform-react-native-svg@^6.0.0": - "integrity" "sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==" - "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.0.0.tgz" - "version" "6.0.0" - -"@svgr/babel-plugin-transform-svg-component@^6.2.0": - "integrity" "sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==" - "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.2.0.tgz" - "version" "6.2.0" - -"@svgr/babel-preset@^6.2.0": - "integrity" "sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==" - "resolved" "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.2.0.tgz" - "version" "6.2.0" - dependencies: - "@svgr/babel-plugin-add-jsx-attribute" "^6.0.0" - "@svgr/babel-plugin-remove-jsx-attribute" "^6.0.0" - "@svgr/babel-plugin-remove-jsx-empty-expression" "^6.0.0" - "@svgr/babel-plugin-replace-jsx-attribute-value" "^6.0.0" - "@svgr/babel-plugin-svg-dynamic-title" "^6.0.0" - "@svgr/babel-plugin-svg-em-dimensions" "^6.0.0" - "@svgr/babel-plugin-transform-react-native-svg" "^6.0.0" - "@svgr/babel-plugin-transform-svg-component" "^6.2.0" - -"@svgr/core@^6.0.0", "@svgr/core@^6.2.1": - "integrity" "sha512-NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJAA==" - "resolved" "https://registry.npmjs.org/@svgr/core/-/core-6.2.1.tgz" - "version" "6.2.1" - dependencies: - "@svgr/plugin-jsx" "^6.2.1" - "camelcase" "^6.2.0" - "cosmiconfig" "^7.0.1" - -"@svgr/hast-util-to-babel-ast@^6.2.1": - "integrity" "sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ==" - "resolved" "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.2.1.tgz" - "version" "6.2.1" - dependencies: - "@babel/types" "^7.15.6" - "entities" "^3.0.1" - -"@svgr/plugin-jsx@^6.2.1": - "integrity" "sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g==" - "resolved" "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.2.1.tgz" - "version" "6.2.1" - dependencies: - "@babel/core" "^7.15.5" - "@svgr/babel-preset" "^6.2.0" - "@svgr/hast-util-to-babel-ast" "^6.2.1" - "svg-parser" "^2.0.2" - -"@svgr/plugin-svgo@^6.2.0": - "integrity" "sha512-oDdMQONKOJEbuKwuy4Np6VdV6qoaLLvoY86hjvQEgU82Vx1MSWRyYms6Sl0f+NtqxLI/rDVufATbP/ev996k3Q==" - "resolved" "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.2.0.tgz" - "version" "6.2.0" - dependencies: - "cosmiconfig" "^7.0.1" - "deepmerge" "^4.2.2" - "svgo" "^2.5.0" - -"@svgr/webpack@^6.2.1": - "integrity" "sha512-h09ngMNd13hnePwgXa+Y5CgOjzlCvfWLHg+MBnydEedAnuLRzUHUJmGS3o2OsrhxTOOqEsPOFt5v/f6C5Qulcw==" - "resolved" "https://registry.npmjs.org/@svgr/webpack/-/webpack-6.2.1.tgz" - "version" "6.2.1" - dependencies: - "@babel/core" "^7.15.5" - "@babel/plugin-transform-react-constant-elements" "^7.14.5" - "@babel/preset-env" "^7.15.6" - "@babel/preset-react" "^7.14.5" - "@babel/preset-typescript" "^7.15.0" - "@svgr/core" "^6.2.1" - "@svgr/plugin-jsx" "^6.2.1" - "@svgr/plugin-svgo" "^6.2.0" - -"@szmarczak/http-timer@^1.1.2": - "integrity" "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==" - "resolved" "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz" - "version" "1.1.2" - dependencies: - "defer-to-connect" "^1.0.1" - -"@trysound/sax@0.2.0": - "integrity" "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - "resolved" "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz" - "version" "0.2.0" - -"@types/body-parser@*": - "integrity" "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==" - "resolved" "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz" - "version" "1.19.2" - dependencies: - "@types/connect" "*" - "@types/node" "*" - -"@types/bonjour@^3.5.9": - "integrity" "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==" - "resolved" "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz" - "version" "3.5.10" - dependencies: - "@types/node" "*" - -"@types/connect-history-api-fallback@^1.3.5": - "integrity" "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==" - "resolved" "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz" - "version" "1.3.5" - dependencies: - "@types/express-serve-static-core" "*" - "@types/node" "*" - -"@types/connect@*": - "integrity" "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==" - "resolved" "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz" - "version" "3.4.35" - dependencies: - "@types/node" "*" - -"@types/eslint-scope@^3.7.3": - "integrity" "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==" - "resolved" "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz" - "version" "3.7.3" - dependencies: - "@types/eslint" "*" - "@types/estree" "*" - -"@types/eslint@*": - "integrity" "sha512-Z1nseZON+GEnFjJc04sv4NSALGjhFwy6K0HXt7qsn5ArfAKtb63dXNJHf+1YW6IpOIYRBGUbu3GwJdj8DGnCjA==" - "resolved" "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.2.tgz" - "version" "8.4.2" - dependencies: - "@types/estree" "*" - "@types/json-schema" "*" - -"@types/estree@*", "@types/estree@^0.0.51": - "integrity" "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - "resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz" - "version" "0.0.51" - -"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18": - "integrity" "sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==" - "resolved" "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz" - "version" "4.17.30" - dependencies: - "@types/node" "*" - "@types/qs" "*" - "@types/range-parser" "*" - -"@types/express@*", "@types/express@^4.17.13": - "integrity" "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==" - "resolved" "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz" - "version" "4.17.13" - dependencies: - "@types/body-parser" "*" - "@types/express-serve-static-core" "^4.17.18" - "@types/qs" "*" - "@types/serve-static" "*" - -"@types/hast@^2.0.0": - "integrity" "sha512-EVLigw5zInURhzfXUM65eixfadfsHKomGKUakToXo84t8gGIJuTcD2xooM2See7GyQ7DRtYjhCHnSUQez8JaLw==" - "resolved" "https://registry.npmjs.org/@types/hast/-/hast-2.3.7.tgz" - "version" "2.3.7" - dependencies: - "@types/unist" "^2" - -"@types/history@^4.7.11": - "integrity" "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" - "resolved" "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz" - "version" "4.7.11" - -"@types/html-minifier-terser@^6.0.0": - "integrity" "sha512-NZwaaynfs1oIoLAV1vg18e7QMVDvw+6SQrdJc8w3BwUaoroVSf6EBj/Sk4PBWGxsq0dzhA2drbsuMC1/6C6KgQ==" - "resolved" "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.0.0.tgz" - "version" "6.0.0" - -"@types/http-proxy@^1.17.8": - "integrity" "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==" - "resolved" "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz" - "version" "1.17.9" - dependencies: - "@types/node" "*" - -"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - "integrity" "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" - "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz" - "version" "7.0.11" - -"@types/mdast@^3.0.0": - "integrity" "sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==" - "resolved" "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.14.tgz" - "version" "3.0.14" - dependencies: - "@types/unist" "^2" - -"@types/mime@*": - "integrity" "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" - "resolved" "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz" - "version" "3.0.1" - -"@types/node@*", "@types/node@^17.0.5": - "integrity" "sha512-vu1SrqBjbbZ3J6vwY17jBs8Sr/BKA+/a/WtjRG+whKg1iuLFOosq872EXS0eXWILdO36DHQQeku/ZcL6hz2fpg==" - "resolved" "https://registry.npmjs.org/@types/node/-/node-17.0.35.tgz" - "version" "17.0.35" - -"@types/parse-json@^4.0.0": - "integrity" "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - "resolved" "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz" - "version" "4.0.0" - -"@types/parse5@^5.0.0": - "integrity" "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" - "resolved" "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz" - "version" "5.0.3" - -"@types/prop-types@*": - "integrity" "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==" - "resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz" - "version" "15.7.4" - -"@types/qs@*": - "integrity" "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" - "resolved" "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz" - "version" "6.9.7" - -"@types/range-parser@*": - "integrity" "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" - "resolved" "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz" - "version" "1.2.4" - -"@types/react-router-config@*", "@types/react-router-config@^5.0.6": - "integrity" "sha512-a7zOj9yVUtM3Ns5stoseQAAsmppNxZpXDv6tZiFV5qlRmV4W96u53on1vApBX1eRSc8mrFOiB54Hc0Pk1J8GFg==" - "resolved" "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.9.tgz" - "version" "5.0.9" - dependencies: - "@types/history" "^4.7.11" - "@types/react" "*" - "@types/react-router" "^5.1.0" - -"@types/react-router-dom@*": - "integrity" "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==" - "resolved" "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz" - "version" "5.3.3" - dependencies: - "@types/history" "^4.7.11" - "@types/react" "*" - "@types/react-router" "*" - -"@types/react-router@*", "@types/react-router@^5.1.0": - "integrity" "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==" - "resolved" "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz" - "version" "5.1.20" - dependencies: - "@types/history" "^4.7.11" - "@types/react" "*" - -"@types/react@*", "@types/react@>= 16.8.0 < 19.0.0": - "integrity" "sha512-r3C8/TJuri/SLZiiwwxQoLAoavaczARfT9up9b4Jr65+ErAUX3MIkU0oMOQnrpfgHme8zIqZLX7O5nnjm5Wayw==" - "resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.35.tgz" - "version" "17.0.35" - dependencies: - "@types/prop-types" "*" - "@types/scheduler" "*" - "csstype" "^3.0.2" - -"@types/retry@0.12.0": - "integrity" "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - "resolved" "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz" - "version" "0.12.0" - -"@types/sax@^1.2.1": - "integrity" "sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==" - "resolved" "https://registry.npmjs.org/@types/sax/-/sax-1.2.4.tgz" - "version" "1.2.4" - dependencies: - "@types/node" "*" - -"@types/scheduler@*": - "integrity" "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" - "resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" - "version" "0.16.2" - -"@types/serve-index@^1.9.1": - "integrity" "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==" - "resolved" "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz" - "version" "1.9.1" - dependencies: - "@types/express" "*" - -"@types/serve-static@*", "@types/serve-static@^1.13.10": - "integrity" "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==" - "resolved" "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz" - "version" "1.15.0" - dependencies: - "@types/mime" "*" - "@types/node" "*" - -"@types/sockjs@^0.3.33": - "integrity" "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==" - "resolved" "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz" - "version" "0.3.33" - dependencies: - "@types/node" "*" - -"@types/unist@^2", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": - "integrity" "sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ==" - "resolved" "https://registry.npmjs.org/@types/unist/-/unist-2.0.9.tgz" - "version" "2.0.9" - -"@types/ws@^8.5.1": - "integrity" "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==" - "resolved" "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz" - "version" "8.5.3" - dependencies: - "@types/node" "*" - -"@webassemblyjs/ast@1.11.1": - "integrity" "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz" - "version" "1.11.1" - dependencies: - "@webassemblyjs/helper-numbers" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - -"@webassemblyjs/floating-point-hex-parser@1.11.1": - "integrity" "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz" - "version" "1.11.1" - -"@webassemblyjs/helper-api-error@1.11.1": - "integrity" "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz" - "version" "1.11.1" - -"@webassemblyjs/helper-buffer@1.11.1": - "integrity" "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz" - "version" "1.11.1" - -"@webassemblyjs/helper-numbers@1.11.1": - "integrity" "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz" - "version" "1.11.1" - dependencies: - "@webassemblyjs/floating-point-hex-parser" "1.11.1" - "@webassemblyjs/helper-api-error" "1.11.1" - "@xtuc/long" "4.2.2" - -"@webassemblyjs/helper-wasm-bytecode@1.11.1": - "integrity" "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz" - "version" "1.11.1" - -"@webassemblyjs/helper-wasm-section@1.11.1": - "integrity" "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz" - "version" "1.11.1" - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - -"@webassemblyjs/ieee754@1.11.1": - "integrity" "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz" - "version" "1.11.1" - dependencies: - "@xtuc/ieee754" "^1.2.0" - -"@webassemblyjs/leb128@1.11.1": - "integrity" "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz" - "version" "1.11.1" - dependencies: - "@xtuc/long" "4.2.2" - -"@webassemblyjs/utf8@1.11.1": - "integrity" "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz" - "version" "1.11.1" - -"@webassemblyjs/wasm-edit@1.11.1": - "integrity" "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz" - "version" "1.11.1" - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/helper-wasm-section" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - "@webassemblyjs/wasm-opt" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - "@webassemblyjs/wast-printer" "1.11.1" - -"@webassemblyjs/wasm-gen@1.11.1": - "integrity" "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz" - "version" "1.11.1" - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/ieee754" "1.11.1" - "@webassemblyjs/leb128" "1.11.1" - "@webassemblyjs/utf8" "1.11.1" - -"@webassemblyjs/wasm-opt@1.11.1": - "integrity" "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz" - "version" "1.11.1" - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-buffer" "1.11.1" - "@webassemblyjs/wasm-gen" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - -"@webassemblyjs/wasm-parser@1.11.1": - "integrity" "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz" - "version" "1.11.1" - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/helper-api-error" "1.11.1" - "@webassemblyjs/helper-wasm-bytecode" "1.11.1" - "@webassemblyjs/ieee754" "1.11.1" - "@webassemblyjs/leb128" "1.11.1" - "@webassemblyjs/utf8" "1.11.1" - -"@webassemblyjs/wast-printer@1.11.1": - "integrity" "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==" - "resolved" "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz" - "version" "1.11.1" - dependencies: - "@webassemblyjs/ast" "1.11.1" - "@xtuc/long" "4.2.2" - -"@xtuc/ieee754@^1.2.0": - "integrity" "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - "resolved" "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz" - "version" "1.2.0" - -"@xtuc/long@4.2.2": - "integrity" "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - "resolved" "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" - "version" "4.2.2" - -"accepts@~1.3.4", "accepts@~1.3.5", "accepts@~1.3.8": - "integrity" "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" - "resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" - "version" "1.3.8" - dependencies: - "mime-types" "~2.1.34" - "negotiator" "0.6.3" - -"acorn-import-assertions@^1.7.6": - "integrity" "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==" - "resolved" "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz" - "version" "1.8.0" - -"acorn-walk@^8.0.0": - "integrity" "sha512-+bpA9MJsHdZ4bgfDcpk0ozQyhhVct7rzOmO0s1IIr0AGGgKBljss8n2zp11rRP2wid5VGeh04CgeKzgat5/25A==" - "resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.0.2.tgz" - "version" "8.0.2" - -"acorn@^8", "acorn@^8.0.4", "acorn@^8.5.0", "acorn@^8.7.1": - "integrity" "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==" - "resolved" "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz" - "version" "8.8.0" - -"address@^1.0.1", "address@^1.1.2": - "integrity" "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" - "resolved" "https://registry.npmjs.org/address/-/address-1.1.2.tgz" - "version" "1.1.2" - -"aggregate-error@^3.0.0": - "integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - "resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" - "version" "3.1.0" - dependencies: - "clean-stack" "^2.0.0" - "indent-string" "^4.0.0" - -"ajv-formats@^2.1.1": - "integrity" "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" - "resolved" "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" - "version" "2.1.1" - dependencies: - "ajv" "^8.0.0" - -"ajv-keywords@^3.4.1", "ajv-keywords@^3.5.2": - "integrity" "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - "resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz" - "version" "3.5.2" - -"ajv-keywords@^5.0.0": - "integrity" "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" - "resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "fast-deep-equal" "^3.1.3" - -"ajv@^6.12.2", "ajv@^6.12.4", "ajv@^6.12.5", "ajv@^6.9.1": - "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" - "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" - "version" "6.12.6" - 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" - -"ajv@^8.0.0": - "integrity" "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==" - "resolved" "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz" - "version" "8.11.0" - dependencies: - "fast-deep-equal" "^3.1.1" - "json-schema-traverse" "^1.0.0" - "require-from-string" "^2.0.2" - "uri-js" "^4.2.2" - -"ajv@^8.8.0", "ajv@^8.8.2": - "integrity" "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==" - "resolved" "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz" - "version" "8.11.0" - dependencies: - "fast-deep-equal" "^3.1.1" - "json-schema-traverse" "^1.0.0" - "require-from-string" "^2.0.2" - "uri-js" "^4.2.2" - -"algoliasearch-helper@^3.10.0": - "integrity" "sha512-DGUnK3TGtDQsaUE4ayF/LjSN0DGsuYThB8WBgnnDY0Wq04K6lNVruO3LfqJOgSfDiezp+Iyt8Tj4YKHi+/ivSA==" - "resolved" "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.15.0.tgz" - "version" "3.15.0" - dependencies: - "@algolia/events" "^4.0.1" - -"algoliasearch@^4.13.1", "algoliasearch@^4.19.1", "algoliasearch@>= 3.1 < 6", "algoliasearch@>= 4.9.1 < 6": - "integrity" "sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==" - "resolved" "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.20.0.tgz" - "version" "4.20.0" - dependencies: - "@algolia/cache-browser-local-storage" "4.20.0" - "@algolia/cache-common" "4.20.0" - "@algolia/cache-in-memory" "4.20.0" - "@algolia/client-account" "4.20.0" - "@algolia/client-analytics" "4.20.0" - "@algolia/client-common" "4.20.0" - "@algolia/client-personalization" "4.20.0" - "@algolia/client-search" "4.20.0" - "@algolia/logger-common" "4.20.0" - "@algolia/logger-console" "4.20.0" - "@algolia/requester-browser-xhr" "4.20.0" - "@algolia/requester-common" "4.20.0" - "@algolia/requester-node-http" "4.20.0" - "@algolia/transporter" "4.20.0" - -"ansi-align@^3.0.0", "ansi-align@^3.0.1": - "integrity" "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==" - "resolved" "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz" - "version" "3.0.1" - dependencies: - "string-width" "^4.1.0" - -"ansi-html-community@^0.0.8": - "integrity" "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" - "resolved" "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz" - "version" "0.0.8" - -"ansi-regex@^5.0.0": - "integrity" "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" - "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz" - "version" "5.0.0" - -"ansi-regex@^5.0.1": - "integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" - "version" "5.0.1" - -"ansi-regex@^6.0.1": - "integrity" "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz" - "version" "6.0.1" - -"ansi-styles@^3.2.1": - "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" - "version" "3.2.1" - dependencies: - "color-convert" "^1.9.0" - -"ansi-styles@^4.0.0", "ansi-styles@^4.1.0": - "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" - "version" "4.3.0" - dependencies: - "color-convert" "^2.0.1" - -"ansi-styles@^6.1.0": - "integrity" "sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==" - "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.1.0.tgz" - "version" "6.1.0" - -"anymatch@~3.1.2": - "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==" - "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz" - "version" "3.1.2" - dependencies: - "normalize-path" "^3.0.0" - "picomatch" "^2.0.4" - -"arg@^5.0.0": - "integrity" "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" - "resolved" "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz" - "version" "5.0.1" - -"argparse@^1.0.7": - "integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - "resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" - "version" "1.0.10" - dependencies: - "sprintf-js" "~1.0.2" - -"argparse@^2.0.1": - "integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - "resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" - "version" "2.0.1" - -"array-flatten@^2.1.2": - "integrity" "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" - "resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz" - "version" "2.1.2" - -"array-flatten@1.1.1": - "integrity" "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - "resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" - "version" "1.1.1" - -"array-union@^2.1.0": - "integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" - "version" "2.1.0" - -"asap@~2.0.3": - "integrity" "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" - "resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" - "version" "2.0.6" - -"at-least-node@^1.0.0": - "integrity" "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - "resolved" "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" - "version" "1.0.0" - -"autoprefixer@^10.4.12", "autoprefixer@^10.4.7": - "integrity" "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==" - "resolved" "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz" - "version" "10.4.16" - dependencies: - "browserslist" "^4.21.10" - "caniuse-lite" "^1.0.30001538" - "fraction.js" "^4.3.6" - "normalize-range" "^0.1.2" - "picocolors" "^1.0.0" - "postcss-value-parser" "^4.2.0" - -"axios@^0.25.0": - "integrity" "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==" - "resolved" "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz" - "version" "0.25.0" - dependencies: - "follow-redirects" "^1.14.7" - -"babel-loader@^8.2.5": - "integrity" "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==" - "resolved" "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz" - "version" "8.2.5" - dependencies: - "find-cache-dir" "^3.3.1" - "loader-utils" "^2.0.0" - "make-dir" "^3.1.0" - "schema-utils" "^2.6.5" - -"babel-plugin-apply-mdx-type-prop@1.6.22": - "integrity" "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==" - "resolved" "https://registry.npmjs.org/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz" - "version" "1.6.22" - dependencies: - "@babel/helper-plugin-utils" "7.10.4" - "@mdx-js/util" "1.6.22" - -"babel-plugin-dynamic-import-node@^2.3.3": - "integrity" "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==" - "resolved" "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" - "version" "2.3.3" - dependencies: - "object.assign" "^4.1.0" - -"babel-plugin-extract-import-names@1.6.22": - "integrity" "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==" - "resolved" "https://registry.npmjs.org/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz" - "version" "1.6.22" - dependencies: - "@babel/helper-plugin-utils" "7.10.4" - -"babel-plugin-polyfill-corejs2@^0.3.2": - "integrity" "sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==" - "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.2.tgz" - "version" "0.3.2" - dependencies: - "@babel/compat-data" "^7.17.7" - "@babel/helper-define-polyfill-provider" "^0.3.2" - "semver" "^6.1.1" - -"babel-plugin-polyfill-corejs3@^0.5.3": - "integrity" "sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==" - "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz" - "version" "0.5.3" - dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.2" - "core-js-compat" "^3.21.0" - -"babel-plugin-polyfill-regenerator@^0.4.0": - "integrity" "sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==" - "resolved" "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.0.tgz" - "version" "0.4.0" - dependencies: - "@babel/helper-define-polyfill-provider" "^0.3.2" - -"bail@^1.0.0": - "integrity" "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" - "resolved" "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz" - "version" "1.0.5" - -"balanced-match@^1.0.0": - "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" - "version" "1.0.2" - -"base16@^1.0.0": - "integrity" "sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==" - "resolved" "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz" - "version" "1.0.0" - -"batch@0.6.1": - "integrity" "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" - "resolved" "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz" - "version" "0.6.1" - -"big.js@^5.2.2": - "integrity" "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - "resolved" "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz" - "version" "5.2.2" - -"binary-extensions@^2.0.0": - "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" - "version" "2.2.0" - -"body-parser@1.20.0": - "integrity" "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==" - "resolved" "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz" - "version" "1.20.0" - dependencies: - "bytes" "3.1.2" - "content-type" "~1.0.4" - "debug" "2.6.9" - "depd" "2.0.0" - "destroy" "1.2.0" - "http-errors" "2.0.0" - "iconv-lite" "0.4.24" - "on-finished" "2.4.1" - "qs" "6.10.3" - "raw-body" "2.5.1" - "type-is" "~1.6.18" - "unpipe" "1.0.0" - -"bonjour-service@^1.0.11": - "integrity" "sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==" - "resolved" "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.13.tgz" - "version" "1.0.13" - dependencies: - "array-flatten" "^2.1.2" - "dns-equal" "^1.0.0" - "fast-deep-equal" "^3.1.3" - "multicast-dns" "^7.2.5" - -"boolbase@^1.0.0": - "integrity" "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" - "resolved" "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" - "version" "1.0.0" - -"boxen@^5.0.0": - "integrity" "sha512-49VBlw+PrWEF51aCmy7QIteYPIFZxSpvqBdP/2itCPPlJ49kj9zg/XPRFrdkne2W+CfwXUls8exMvu1RysZpKA==" - "resolved" "https://registry.npmjs.org/boxen/-/boxen-5.0.1.tgz" - "version" "5.0.1" - dependencies: - "ansi-align" "^3.0.0" - "camelcase" "^6.2.0" - "chalk" "^4.1.0" - "cli-boxes" "^2.2.1" - "string-width" "^4.2.0" - "type-fest" "^0.20.2" - "widest-line" "^3.1.0" - "wrap-ansi" "^7.0.0" - -"boxen@^6.2.1": - "integrity" "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==" - "resolved" "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz" - "version" "6.2.1" - dependencies: - "ansi-align" "^3.0.1" - "camelcase" "^6.2.0" - "chalk" "^4.1.2" - "cli-boxes" "^3.0.0" - "string-width" "^5.0.1" - "type-fest" "^2.5.0" - "widest-line" "^4.0.1" - "wrap-ansi" "^8.0.1" - -"brace-expansion@^1.1.7": - "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" - "version" "1.1.11" - dependencies: - "balanced-match" "^1.0.0" - "concat-map" "0.0.1" - -"braces@^3.0.2", "braces@~3.0.2": - "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" - "version" "3.0.2" - dependencies: - "fill-range" "^7.0.1" - -"browserslist@^4.0.0", "browserslist@^4.14.5", "browserslist@^4.18.1", "browserslist@^4.20.2", "browserslist@^4.21.10", "browserslist@^4.21.3", "browserslist@^4.21.4", "browserslist@>= 4.21.0": - "integrity" "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==" - "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz" - "version" "4.21.10" - dependencies: - "caniuse-lite" "^1.0.30001517" - "electron-to-chromium" "^1.4.477" - "node-releases" "^2.0.13" - "update-browserslist-db" "^1.0.11" - -"buffer-from@^1.0.0": - "integrity" "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" - "resolved" "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz" - "version" "1.1.1" - -"bytes@3.0.0": - "integrity" "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" - "version" "3.0.0" - -"bytes@3.1.2": - "integrity" "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" - "version" "3.1.2" - -"cacheable-request@^6.0.0": - "integrity" "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==" - "resolved" "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz" - "version" "6.1.0" - dependencies: - "clone-response" "^1.0.2" - "get-stream" "^5.1.0" - "http-cache-semantics" "^4.0.0" - "keyv" "^3.0.0" - "lowercase-keys" "^2.0.0" - "normalize-url" "^4.1.0" - "responselike" "^1.0.2" - -"call-bind@^1.0.0": - "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" - "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" - "version" "1.0.2" - dependencies: - "function-bind" "^1.1.1" - "get-intrinsic" "^1.0.2" - -"callsites@^3.0.0": - "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - "resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" - "version" "3.1.0" - -"camel-case@^4.1.2": - "integrity" "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" - "resolved" "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "pascal-case" "^3.1.2" - "tslib" "^2.0.3" - -"camelcase-css@2.0.1": - "integrity" "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" - "resolved" "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" - "version" "2.0.1" - -"camelcase@^6.2.0": - "integrity" "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" - "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" - "version" "6.2.0" - -"caniuse-api@^3.0.0": - "integrity" "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" - "resolved" "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "browserslist" "^4.0.0" - "caniuse-lite" "^1.0.0" - "lodash.memoize" "^4.1.2" - "lodash.uniq" "^4.5.0" - -"caniuse-lite@^1.0.0", "caniuse-lite@^1.0.30001517", "caniuse-lite@^1.0.30001538": - "integrity" "sha512-cPiMKZgqgkg5LY3/ntGeLFUpi6tzddBNS58A4tnTgQw1zON7u2sZMU7SzOeVH4tj20++9ggL+V6FDOFMTaFFYA==" - "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001559.tgz" - "version" "1.0.30001559" - -"ccount@^1.0.0": - "integrity" "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==" - "resolved" "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz" - "version" "1.1.0" - -"chalk@^2.0.0": - "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" - "version" "2.4.2" - dependencies: - "ansi-styles" "^3.2.1" - "escape-string-regexp" "^1.0.5" - "supports-color" "^5.3.0" - -"chalk@^4.1.0", "chalk@^4.1.2": - "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "ansi-styles" "^4.1.0" - "supports-color" "^7.1.0" - -"character-entities-legacy@^1.0.0": - "integrity" "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==" - "resolved" "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz" - "version" "1.1.4" - -"character-entities@^1.0.0": - "integrity" "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==" - "resolved" "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz" - "version" "1.2.4" - -"character-reference-invalid@^1.0.0": - "integrity" "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==" - "resolved" "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz" - "version" "1.1.4" - -"cheerio-select@^2.1.0": - "integrity" "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==" - "resolved" "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "boolbase" "^1.0.0" - "css-select" "^5.1.0" - "css-what" "^6.1.0" - "domelementtype" "^2.3.0" - "domhandler" "^5.0.3" - "domutils" "^3.0.1" - -"cheerio@^1.0.0-rc.12": - "integrity" "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==" - "resolved" "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz" - "version" "1.0.0-rc.12" - dependencies: - "cheerio-select" "^2.1.0" - "dom-serializer" "^2.0.0" - "domhandler" "^5.0.3" - "domutils" "^3.0.1" - "htmlparser2" "^8.0.1" - "parse5" "^7.0.0" - "parse5-htmlparser2-tree-adapter" "^7.0.0" - -"chokidar@^3.4.2", "chokidar@^3.5.3": - "integrity" "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" - "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" - "version" "3.5.3" - dependencies: - "anymatch" "~3.1.2" - "braces" "~3.0.2" - "glob-parent" "~5.1.2" - "is-binary-path" "~2.1.0" - "is-glob" "~4.0.1" - "normalize-path" "~3.0.0" - "readdirp" "~3.6.0" - optionalDependencies: - "fsevents" "~2.3.2" - -"chrome-trace-event@^1.0.2": - "integrity" "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" - "resolved" "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz" - "version" "1.0.3" - -"ci-info@^2.0.0": - "integrity" "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" - "resolved" "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" - "version" "2.0.0" - -"clean-css@^5.2.2", "clean-css@^5.3.0": - "integrity" "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==" - "resolved" "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz" - "version" "5.3.0" - dependencies: - "source-map" "~0.6.0" - -"clean-stack@^2.0.0": - "integrity" "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - "resolved" "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" - "version" "2.2.0" - -"cli-boxes@^2.2.1": - "integrity" "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" - "resolved" "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz" - "version" "2.2.1" - -"cli-boxes@^3.0.0": - "integrity" "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==" - "resolved" "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz" - "version" "3.0.0" - -"cli-table3@^0.6.2": - "integrity" "sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==" - "resolved" "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.2.tgz" - "version" "0.6.2" - dependencies: - "string-width" "^4.2.0" - optionalDependencies: - "@colors/colors" "1.5.0" - -"clone-deep@^4.0.1": - "integrity" "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - "resolved" "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" - "version" "4.0.1" - dependencies: - "is-plain-object" "^2.0.4" - "kind-of" "^6.0.2" - "shallow-clone" "^3.0.0" - -"clone-response@^1.0.2": - "integrity" "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" - "resolved" "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz" - "version" "1.0.2" - dependencies: - "mimic-response" "^1.0.0" - -"clsx@^1.2.1": - "integrity" "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==" - "resolved" "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz" - "version" "1.2.1" - -"collapse-white-space@^1.0.2": - "integrity" "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==" - "resolved" "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz" - "version" "1.0.6" - -"color-convert@^1.9.0": - "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" - "version" "1.9.3" - dependencies: - "color-name" "1.1.3" - -"color-convert@^2.0.1": - "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "color-name" "~1.1.4" - -"color-name@~1.1.4": - "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" - "version" "1.1.4" - -"color-name@1.1.3": - "integrity" "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" - "version" "1.1.3" - -"colord@^2.9.1": - "integrity" "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - "resolved" "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz" - "version" "2.9.3" - -"colorette@^2.0.10": - "integrity" "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==" - "resolved" "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz" - "version" "2.0.19" - -"combine-promises@^1.1.0": - "integrity" "sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==" - "resolved" "https://registry.npmjs.org/combine-promises/-/combine-promises-1.1.0.tgz" - "version" "1.1.0" - -"comma-separated-tokens@^1.0.0": - "integrity" "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==" - "resolved" "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz" - "version" "1.0.8" - -"commander@^2.20.0": - "integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - "resolved" "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" - "version" "2.20.3" - -"commander@^5.1.0": - "integrity" "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" - "resolved" "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz" - "version" "5.1.0" - -"commander@^7.2.0": - "integrity" "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - "resolved" "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" - "version" "7.2.0" - -"commander@^8.3.0": - "integrity" "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" - "resolved" "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz" - "version" "8.3.0" - -"commondir@^1.0.1": - "integrity" "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" - "resolved" "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" - "version" "1.0.1" - -"compressible@~2.0.16": - "integrity" "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" - "resolved" "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" - "version" "2.0.18" - dependencies: - "mime-db" ">= 1.43.0 < 2" - -"compression@^1.7.4": - "integrity" "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" - "resolved" "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" - "version" "1.7.4" - dependencies: - "accepts" "~1.3.5" - "bytes" "3.0.0" - "compressible" "~2.0.16" - "debug" "2.6.9" - "on-headers" "~1.0.2" - "safe-buffer" "5.1.2" - "vary" "~1.1.2" - -"concat-map@0.0.1": - "integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" - "version" "0.0.1" - -"configstore@^5.0.1": - "integrity" "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==" - "resolved" "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz" - "version" "5.0.1" - dependencies: - "dot-prop" "^5.2.0" - "graceful-fs" "^4.1.2" - "make-dir" "^3.0.0" - "unique-string" "^2.0.0" - "write-file-atomic" "^3.0.0" - "xdg-basedir" "^4.0.0" - -"connect-history-api-fallback@^2.0.0": - "integrity" "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" - "resolved" "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz" - "version" "2.0.0" - -"consola@^2.15.3": - "integrity" "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" - "resolved" "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz" - "version" "2.15.3" - -"content-disposition@0.5.2": - "integrity" "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" - "resolved" "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz" - "version" "0.5.2" - -"content-disposition@0.5.4": - "integrity" "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" - "resolved" "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz" - "version" "0.5.4" - dependencies: - "safe-buffer" "5.2.1" - -"content-type@~1.0.4": - "integrity" "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - "resolved" "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz" - "version" "1.0.4" - -"convert-source-map@^1.7.0": - "integrity" "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==" - "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz" - "version" "1.7.0" - dependencies: - "safe-buffer" "~5.1.1" - -"cookie-signature@1.0.6": - "integrity" "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - "resolved" "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" - "version" "1.0.6" - -"cookie@0.5.0": - "integrity" "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - "resolved" "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz" - "version" "0.5.0" - -"copy-text-to-clipboard@^3.0.1": - "integrity" "sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==" - "resolved" "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz" - "version" "3.2.0" - -"copy-webpack-plugin@^11.0.0": - "integrity" "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==" - "resolved" "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz" - "version" "11.0.0" - dependencies: - "fast-glob" "^3.2.11" - "glob-parent" "^6.0.1" - "globby" "^13.1.1" - "normalize-path" "^3.0.0" - "schema-utils" "^4.0.0" - "serialize-javascript" "^6.0.0" - -"core-js-compat@^3.21.0", "core-js-compat@^3.22.1": - "integrity" "sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw==" - "resolved" "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.24.1.tgz" - "version" "3.24.1" - dependencies: - "browserslist" "^4.21.3" - "semver" "7.0.0" - -"core-js-pure@^3.20.2": - "integrity" "sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg==" - "resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.24.1.tgz" - "version" "3.24.1" - -"core-js@^3.23.3": - "integrity" "sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg==" - "resolved" "https://registry.npmjs.org/core-js/-/core-js-3.24.1.tgz" - "version" "3.24.1" - -"core-util-is@~1.0.0": - "integrity" "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - "resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" - "version" "1.0.3" - -"cosmiconfig@^6.0.0": - "integrity" "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" - "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "@types/parse-json" "^4.0.0" - "import-fresh" "^3.1.0" - "parse-json" "^5.0.0" - "path-type" "^4.0.0" - "yaml" "^1.7.2" - -"cosmiconfig@^7.0.0", "cosmiconfig@^7.0.1": - "integrity" "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==" - "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz" - "version" "7.0.1" - dependencies: - "@types/parse-json" "^4.0.0" - "import-fresh" "^3.2.1" - "parse-json" "^5.0.0" - "path-type" "^4.0.0" - "yaml" "^1.10.0" - -"cross-fetch@^3.1.5": - "integrity" "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==" - "resolved" "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz" - "version" "3.1.8" - dependencies: - "node-fetch" "^2.6.12" - -"cross-spawn@^7.0.3": - "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" - "version" "7.0.3" - dependencies: - "path-key" "^3.1.0" - "shebang-command" "^2.0.0" - "which" "^2.0.1" - -"crypto-random-string@^2.0.0": - "integrity" "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" - "resolved" "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz" - "version" "2.0.0" - -"css-declaration-sorter@^6.3.1": - "integrity" "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==" - "resolved" "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz" - "version" "6.4.1" - -"css-loader@^6.7.1": - "integrity" "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==" - "resolved" "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz" - "version" "6.7.1" - dependencies: - "icss-utils" "^5.1.0" - "postcss" "^8.4.7" - "postcss-modules-extract-imports" "^3.0.0" - "postcss-modules-local-by-default" "^4.0.0" - "postcss-modules-scope" "^3.0.0" - "postcss-modules-values" "^4.0.0" - "postcss-value-parser" "^4.2.0" - "semver" "^7.3.5" - -"css-minimizer-webpack-plugin@^4.0.0": - "integrity" "sha512-7ZXXRzRHvofv3Uac5Y+RkWRNo0ZMlcg8e9/OtrqUYmwDWJo+qs67GvdeFrXLsFb7czKNwjQhPkM0avlIYl+1nA==" - "resolved" "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "cssnano" "^5.1.8" - "jest-worker" "^27.5.1" - "postcss" "^8.4.13" - "schema-utils" "^4.0.0" - "serialize-javascript" "^6.0.0" - "source-map" "^0.6.1" - -"css-select@^4.1.3": - "integrity" "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==" - "resolved" "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz" - "version" "4.1.3" - dependencies: - "boolbase" "^1.0.0" - "css-what" "^5.0.0" - "domhandler" "^4.2.0" - "domutils" "^2.6.0" - "nth-check" "^2.0.0" - -"css-select@^5.1.0": - "integrity" "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" - "resolved" "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "boolbase" "^1.0.0" - "css-what" "^6.1.0" - "domhandler" "^5.0.2" - "domutils" "^3.0.1" - "nth-check" "^2.0.1" - -"css-tree@^1.1.2", "css-tree@^1.1.3": - "integrity" "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" - "resolved" "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz" - "version" "1.1.3" - dependencies: - "mdn-data" "2.0.14" - "source-map" "^0.6.1" - -"css-what@^5.0.0": - "integrity" "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==" - "resolved" "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz" - "version" "5.1.0" - -"css-what@^6.1.0": - "integrity" "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - "resolved" "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz" - "version" "6.1.0" - -"cssesc@^3.0.0": - "integrity" "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - "resolved" "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" - "version" "3.0.0" - -"cssnano-preset-advanced@^5.3.8": - "integrity" "sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==" - "resolved" "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.10.tgz" - "version" "5.3.10" - dependencies: - "autoprefixer" "^10.4.12" - "cssnano-preset-default" "^5.2.14" - "postcss-discard-unused" "^5.1.0" - "postcss-merge-idents" "^5.1.1" - "postcss-reduce-idents" "^5.2.0" - "postcss-zindex" "^5.1.0" - -"cssnano-preset-default@^5.2.12", "cssnano-preset-default@^5.2.14": - "integrity" "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==" - "resolved" "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz" - "version" "5.2.14" - dependencies: - "css-declaration-sorter" "^6.3.1" - "cssnano-utils" "^3.1.0" - "postcss-calc" "^8.2.3" - "postcss-colormin" "^5.3.1" - "postcss-convert-values" "^5.1.3" - "postcss-discard-comments" "^5.1.2" - "postcss-discard-duplicates" "^5.1.0" - "postcss-discard-empty" "^5.1.1" - "postcss-discard-overridden" "^5.1.0" - "postcss-merge-longhand" "^5.1.7" - "postcss-merge-rules" "^5.1.4" - "postcss-minify-font-values" "^5.1.0" - "postcss-minify-gradients" "^5.1.1" - "postcss-minify-params" "^5.1.4" - "postcss-minify-selectors" "^5.2.1" - "postcss-normalize-charset" "^5.1.0" - "postcss-normalize-display-values" "^5.1.0" - "postcss-normalize-positions" "^5.1.1" - "postcss-normalize-repeat-style" "^5.1.1" - "postcss-normalize-string" "^5.1.0" - "postcss-normalize-timing-functions" "^5.1.0" - "postcss-normalize-unicode" "^5.1.1" - "postcss-normalize-url" "^5.1.0" - "postcss-normalize-whitespace" "^5.1.1" - "postcss-ordered-values" "^5.1.3" - "postcss-reduce-initial" "^5.1.2" - "postcss-reduce-transforms" "^5.1.0" - "postcss-svgo" "^5.1.0" - "postcss-unique-selectors" "^5.1.1" - -"cssnano-utils@^3.1.0": - "integrity" "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" - "resolved" "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz" - "version" "3.1.0" - -"cssnano@^5.1.12", "cssnano@^5.1.8": - "integrity" "sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==" - "resolved" "https://registry.npmjs.org/cssnano/-/cssnano-5.1.13.tgz" - "version" "5.1.13" - dependencies: - "cssnano-preset-default" "^5.2.12" - "lilconfig" "^2.0.3" - "yaml" "^1.10.2" - -"csso@^4.2.0": - "integrity" "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" - "resolved" "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz" - "version" "4.2.0" - dependencies: - "css-tree" "^1.1.2" - -"csstype@^3.0.2": - "integrity" "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==" - "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz" - "version" "3.0.10" - -"debug@^2.6.0": - "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" - "version" "2.6.9" - dependencies: - "ms" "2.0.0" - -"debug@^4.1.0", "debug@^4.1.1": - "integrity" "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==" - "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz" - "version" "4.3.1" - dependencies: - "ms" "2.1.2" - -"debug@2.6.9": - "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" - "version" "2.6.9" - dependencies: - "ms" "2.0.0" - -"decompress-response@^3.3.0": - "integrity" "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=" - "resolved" "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz" - "version" "3.3.0" - dependencies: - "mimic-response" "^1.0.0" - -"deep-extend@^0.6.0": - "integrity" "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - "resolved" "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" - "version" "0.6.0" - -"deepmerge@^4.2.2": - "integrity" "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" - "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" - "version" "4.2.2" - -"default-gateway@^6.0.3": - "integrity" "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" - "resolved" "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz" - "version" "6.0.3" - dependencies: - "execa" "^5.0.0" - -"defer-to-connect@^1.0.1": - "integrity" "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" - "resolved" "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz" - "version" "1.1.3" - -"define-lazy-prop@^2.0.0": - "integrity" "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - "resolved" "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" - "version" "2.0.0" - -"define-properties@^1.1.3": - "integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" - "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" - "version" "1.1.3" - dependencies: - "object-keys" "^1.0.12" - -"del@^6.1.1": - "integrity" "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==" - "resolved" "https://registry.npmjs.org/del/-/del-6.1.1.tgz" - "version" "6.1.1" - dependencies: - "globby" "^11.0.1" - "graceful-fs" "^4.2.4" - "is-glob" "^4.0.1" - "is-path-cwd" "^2.2.0" - "is-path-inside" "^3.0.2" - "p-map" "^4.0.0" - "rimraf" "^3.0.2" - "slash" "^3.0.0" - -"depd@~1.1.2": - "integrity" "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" - "resolved" "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" - "version" "1.1.2" - -"depd@2.0.0": - "integrity" "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - "resolved" "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" - "version" "2.0.0" - -"destroy@1.2.0": - "integrity" "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - "resolved" "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" - "version" "1.2.0" - -"detab@2.0.4": - "integrity" "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==" - "resolved" "https://registry.npmjs.org/detab/-/detab-2.0.4.tgz" - "version" "2.0.4" - dependencies: - "repeat-string" "^1.5.4" - -"detect-node@^2.0.4": - "integrity" "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" - "resolved" "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz" - "version" "2.1.0" - -"detect-port-alt@^1.1.6": - "integrity" "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==" - "resolved" "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz" - "version" "1.1.6" - dependencies: - "address" "^1.0.1" - "debug" "^2.6.0" - -"detect-port@^1.3.0": - "integrity" "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==" - "resolved" "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz" - "version" "1.3.0" - dependencies: - "address" "^1.0.1" - "debug" "^2.6.0" - -"dir-glob@^3.0.1": - "integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - "resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" - "version" "3.0.1" - dependencies: - "path-type" "^4.0.0" - -"dns-equal@^1.0.0": - "integrity" "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" - "resolved" "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz" - "version" "1.0.0" - -"dns-packet@^5.2.2": - "integrity" "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==" - "resolved" "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz" - "version" "5.4.0" - dependencies: - "@leichtgewicht/ip-codec" "^2.0.1" - -"dom-converter@^0.2.0": - "integrity" "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" - "resolved" "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz" - "version" "0.2.0" - dependencies: - "utila" "~0.4" - -"dom-serializer@^1.0.1": - "integrity" "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==" - "resolved" "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz" - "version" "1.3.2" - dependencies: - "domelementtype" "^2.0.1" - "domhandler" "^4.2.0" - "entities" "^2.0.0" - -"dom-serializer@^2.0.0": - "integrity" "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" - "resolved" "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "domelementtype" "^2.3.0" - "domhandler" "^5.0.2" - "entities" "^4.2.0" - -"domelementtype@^2.0.1", "domelementtype@^2.2.0", "domelementtype@^2.3.0": - "integrity" "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - "resolved" "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz" - "version" "2.3.0" - -"domhandler@^4.0.0", "domhandler@^4.2.0": - "integrity" "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==" - "resolved" "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz" - "version" "4.2.2" - dependencies: - "domelementtype" "^2.2.0" - -"domhandler@^5.0.2", "domhandler@^5.0.3": - "integrity" "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" - "resolved" "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz" - "version" "5.0.3" - dependencies: - "domelementtype" "^2.3.0" - -"domutils@^2.5.2", "domutils@^2.6.0": - "integrity" "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" - "resolved" "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz" - "version" "2.8.0" - dependencies: - "dom-serializer" "^1.0.1" - "domelementtype" "^2.2.0" - "domhandler" "^4.2.0" - -"domutils@^3.0.1": - "integrity" "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" - "resolved" "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz" - "version" "3.1.0" - dependencies: - "dom-serializer" "^2.0.0" - "domelementtype" "^2.3.0" - "domhandler" "^5.0.3" - -"dot-case@^3.0.4": - "integrity" "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" - "resolved" "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "no-case" "^3.0.4" - "tslib" "^2.0.3" - -"dot-prop@^5.2.0": - "integrity" "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" - "resolved" "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz" - "version" "5.3.0" - dependencies: - "is-obj" "^2.0.0" - -"duplexer@^0.1.2": - "integrity" "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - "resolved" "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" - "version" "0.1.2" - -"duplexer3@^0.1.4": - "integrity" "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" - "resolved" "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz" - "version" "0.1.4" - -"eastasianwidth@^0.2.0": - "integrity" "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - "resolved" "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" - "version" "0.2.0" - -"ee-first@1.1.1": - "integrity" "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - "resolved" "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" - "version" "1.1.1" - -"electron-to-chromium@^1.4.477": - "integrity" "sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw==" - "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.477.tgz" - "version" "1.4.477" - -"emoji-regex@^8.0.0": - "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" - "version" "8.0.0" - -"emoji-regex@^9.2.2": - "integrity" "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" - "version" "9.2.2" - -"emojis-list@^3.0.0": - "integrity" "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - "resolved" "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" - "version" "3.0.0" - -"emoticon@^3.2.0": - "integrity" "sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg==" - "resolved" "https://registry.npmjs.org/emoticon/-/emoticon-3.2.0.tgz" - "version" "3.2.0" - -"encodeurl@~1.0.2": - "integrity" "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - "resolved" "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" - "version" "1.0.2" - -"end-of-stream@^1.1.0": - "integrity" "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" - "resolved" "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" - "version" "1.4.4" - dependencies: - "once" "^1.4.0" - -"enhanced-resolve@^5.10.0": - "integrity" "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==" - "resolved" "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz" - "version" "5.10.0" - dependencies: - "graceful-fs" "^4.2.4" - "tapable" "^2.2.0" - -"entities@^2.0.0": - "integrity" "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" - "resolved" "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" - "version" "2.2.0" - -"entities@^3.0.1": - "integrity" "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==" - "resolved" "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz" - "version" "3.0.1" - -"entities@^4.2.0", "entities@^4.4.0": - "integrity" "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" - "resolved" "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" - "version" "4.5.0" - -"error-ex@^1.3.1": - "integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - "resolved" "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" - "version" "1.3.2" - dependencies: - "is-arrayish" "^0.2.1" - -"es-module-lexer@^0.9.0": - "integrity" "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" - "resolved" "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz" - "version" "0.9.3" - -"escalade@^3.1.1": - "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" - "version" "3.1.1" - -"escape-goat@^2.0.0": - "integrity" "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==" - "resolved" "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz" - "version" "2.1.1" - -"escape-html@^1.0.3", "escape-html@~1.0.3": - "integrity" "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - "resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" - "version" "1.0.3" - -"escape-string-regexp@^1.0.5": - "integrity" "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" - "version" "1.0.5" - -"escape-string-regexp@^4.0.0": - "integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" - "version" "4.0.0" - -"eslint-scope@5.1.1": - "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "esrecurse" "^4.3.0" - "estraverse" "^4.1.1" - -"esprima@^4.0.0": - "integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - "resolved" "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" - "version" "4.0.1" - -"esrecurse@^4.3.0": - "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" - "version" "4.3.0" - dependencies: - "estraverse" "^5.2.0" - -"estraverse@^4.1.1": - "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" - "version" "4.3.0" - -"estraverse@^5.2.0": - "integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" - "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" - "version" "5.2.0" - -"esutils@^2.0.2": - "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" - "version" "2.0.3" - -"eta@^2.0.0": - "integrity" "sha512-UVQ72Rqjy/ZKQalzV5dCCJP80GrmPrMxh6NlNf+erV6ObL0ZFkhCstWRawS85z3smdr3d2wXPsZEY7rDPfGd2g==" - "resolved" "https://registry.npmjs.org/eta/-/eta-2.2.0.tgz" - "version" "2.2.0" - -"etag@~1.8.1": - "integrity" "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - "resolved" "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" - "version" "1.8.1" - -"eval@^0.1.8": - "integrity" "sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==" - "resolved" "https://registry.npmjs.org/eval/-/eval-0.1.8.tgz" - "version" "0.1.8" - dependencies: - "@types/node" "*" - "require-like" ">= 0.1.1" - -"eventemitter3@^4.0.0": - "integrity" "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - "resolved" "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz" - "version" "4.0.7" - -"events@^3.2.0": - "integrity" "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - "resolved" "https://registry.npmjs.org/events/-/events-3.3.0.tgz" - "version" "3.3.0" - -"execa@^5.0.0": - "integrity" "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" - "resolved" "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "cross-spawn" "^7.0.3" - "get-stream" "^6.0.0" - "human-signals" "^2.1.0" - "is-stream" "^2.0.0" - "merge-stream" "^2.0.0" - "npm-run-path" "^4.0.1" - "onetime" "^5.1.2" - "signal-exit" "^3.0.3" - "strip-final-newline" "^2.0.0" - -"express@^4.17.3": - "integrity" "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==" - "resolved" "https://registry.npmjs.org/express/-/express-4.18.1.tgz" - "version" "4.18.1" - dependencies: - "accepts" "~1.3.8" - "array-flatten" "1.1.1" - "body-parser" "1.20.0" - "content-disposition" "0.5.4" - "content-type" "~1.0.4" - "cookie" "0.5.0" - "cookie-signature" "1.0.6" - "debug" "2.6.9" - "depd" "2.0.0" - "encodeurl" "~1.0.2" - "escape-html" "~1.0.3" - "etag" "~1.8.1" - "finalhandler" "1.2.0" - "fresh" "0.5.2" - "http-errors" "2.0.0" - "merge-descriptors" "1.0.1" - "methods" "~1.1.2" - "on-finished" "2.4.1" - "parseurl" "~1.3.3" - "path-to-regexp" "0.1.7" - "proxy-addr" "~2.0.7" - "qs" "6.10.3" - "range-parser" "~1.2.1" - "safe-buffer" "5.2.1" - "send" "0.18.0" - "serve-static" "1.15.0" - "setprototypeof" "1.2.0" - "statuses" "2.0.1" - "type-is" "~1.6.18" - "utils-merge" "1.0.1" - "vary" "~1.1.2" - -"extend-shallow@^2.0.1": - "integrity" "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==" - "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "is-extendable" "^0.1.0" - -"extend@^3.0.0": - "integrity" "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - "resolved" "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" - "version" "3.0.2" - -"fast-deep-equal@^3.1.1", "fast-deep-equal@^3.1.3": - "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - "resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" - "version" "3.1.3" - -"fast-glob@^3.2.11", "fast-glob@^3.2.9": - "integrity" "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==" - "resolved" "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz" - "version" "3.2.11" - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - "glob-parent" "^5.1.2" - "merge2" "^1.3.0" - "micromatch" "^4.0.4" - -"fast-json-stable-stringify@^2.0.0": - "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - "resolved" "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" - "version" "2.1.0" - -"fast-url-parser@1.1.3": - "integrity" "sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=" - "resolved" "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz" - "version" "1.1.3" - dependencies: - "punycode" "^1.3.2" - -"fastq@^1.6.0": - "integrity" "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==" - "resolved" "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz" - "version" "1.11.0" - dependencies: - "reusify" "^1.0.4" - -"faye-websocket@^0.11.3": - "integrity" "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" - "resolved" "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz" - "version" "0.11.4" - dependencies: - "websocket-driver" ">=0.5.1" - -"fbemitter@^3.0.0": - "integrity" "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==" - "resolved" "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "fbjs" "^3.0.0" - -"fbjs-css-vars@^1.0.0": - "integrity" "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" - "resolved" "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz" - "version" "1.0.2" - -"fbjs@^3.0.0", "fbjs@^3.0.1": - "integrity" "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==" - "resolved" "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz" - "version" "3.0.5" - dependencies: - "cross-fetch" "^3.1.5" - "fbjs-css-vars" "^1.0.0" - "loose-envify" "^1.0.0" - "object-assign" "^4.1.0" - "promise" "^7.1.1" - "setimmediate" "^1.0.5" - "ua-parser-js" "^1.0.35" - -"feed@^4.2.2": - "integrity" "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==" - "resolved" "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz" - "version" "4.2.2" - dependencies: - "xml-js" "^1.6.11" - -"file-loader@*", "file-loader@^6.2.0": - "integrity" "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==" - "resolved" "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz" - "version" "6.2.0" - dependencies: - "loader-utils" "^2.0.0" - "schema-utils" "^3.0.0" - -"filesize@^8.0.6": - "integrity" "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==" - "resolved" "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz" - "version" "8.0.7" - -"fill-range@^7.0.1": - "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" - "version" "7.0.1" - dependencies: - "to-regex-range" "^5.0.1" - -"finalhandler@1.2.0": - "integrity" "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" - "resolved" "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz" - "version" "1.2.0" - dependencies: - "debug" "2.6.9" - "encodeurl" "~1.0.2" - "escape-html" "~1.0.3" - "on-finished" "2.4.1" - "parseurl" "~1.3.3" - "statuses" "2.0.1" - "unpipe" "~1.0.0" - -"find-cache-dir@^3.3.1": - "integrity" "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==" - "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz" - "version" "3.3.1" - dependencies: - "commondir" "^1.0.1" - "make-dir" "^3.0.2" - "pkg-dir" "^4.1.0" - -"find-up@^3.0.0": - "integrity" "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" - "resolved" "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "locate-path" "^3.0.0" - -"find-up@^4.0.0": - "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" - "version" "4.1.0" - dependencies: - "locate-path" "^5.0.0" - "path-exists" "^4.0.0" - -"find-up@^5.0.0": - "integrity" "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - "resolved" "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "locate-path" "^6.0.0" - "path-exists" "^4.0.0" - -"flux@^4.0.1": - "integrity" "sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==" - "resolved" "https://registry.npmjs.org/flux/-/flux-4.0.4.tgz" - "version" "4.0.4" - dependencies: - "fbemitter" "^3.0.0" - "fbjs" "^3.0.1" - -"follow-redirects@^1.0.0", "follow-redirects@^1.14.7": - "integrity" "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==" - "resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz" - "version" "1.15.1" - -"fork-ts-checker-webpack-plugin@^6.5.0": - "integrity" "sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==" - "resolved" "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.0.tgz" - "version" "6.5.0" - dependencies: - "@babel/code-frame" "^7.8.3" - "@types/json-schema" "^7.0.5" - "chalk" "^4.1.0" - "chokidar" "^3.4.2" - "cosmiconfig" "^6.0.0" - "deepmerge" "^4.2.2" - "fs-extra" "^9.0.0" - "glob" "^7.1.6" - "memfs" "^3.1.2" - "minimatch" "^3.0.4" - "schema-utils" "2.7.0" - "semver" "^7.3.2" - "tapable" "^1.0.0" - -"forwarded@0.2.0": - "integrity" "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - "resolved" "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" - "version" "0.2.0" - -"fraction.js@^4.3.6": - "integrity" "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" - "resolved" "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz" - "version" "4.3.7" - -"fresh@0.5.2": - "integrity" "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - "resolved" "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" - "version" "0.5.2" - -"fs-extra@^10.1.0": - "integrity" "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" - "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz" - "version" "10.1.0" - dependencies: - "graceful-fs" "^4.2.0" - "jsonfile" "^6.0.1" - "universalify" "^2.0.0" - -"fs-extra@^9.0.0": - "integrity" "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" - "version" "9.1.0" - dependencies: - "at-least-node" "^1.0.0" - "graceful-fs" "^4.2.0" - "jsonfile" "^6.0.1" - "universalify" "^2.0.0" - -"fs-monkey@^1.0.3": - "integrity" "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" - "resolved" "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz" - "version" "1.0.3" - -"fs.realpath@^1.0.0": - "integrity" "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" - "version" "1.0.0" - -"fsevents@~2.3.2": - "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" - "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" - "version" "2.3.2" - -"function-bind@^1.1.1": - "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" - "version" "1.1.1" - -"gensync@^1.0.0-beta.1", "gensync@^1.0.0-beta.2": - "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" - "version" "1.0.0-beta.2" - -"get-intrinsic@^1.0.2": - "integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" - "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" - "version" "1.1.1" - dependencies: - "function-bind" "^1.1.1" - "has" "^1.0.3" - "has-symbols" "^1.0.1" - -"get-own-enumerable-property-symbols@^3.0.0": - "integrity" "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" - "resolved" "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz" - "version" "3.0.2" - -"get-stream@^4.1.0": - "integrity" "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" - "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" - "version" "4.1.0" - dependencies: - "pump" "^3.0.0" - -"get-stream@^5.1.0": - "integrity" "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" - "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" - "version" "5.2.0" - dependencies: - "pump" "^3.0.0" - -"get-stream@^6.0.0": - "integrity" "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" - "version" "6.0.1" - -"github-slugger@^1.4.0": - "integrity" "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==" - "resolved" "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz" - "version" "1.5.0" - -"glob-parent@^5.1.2", "glob-parent@~5.1.2": - "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" - "version" "5.1.2" - dependencies: - "is-glob" "^4.0.1" - -"glob-parent@^6.0.1": - "integrity" "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" - "version" "6.0.2" - dependencies: - "is-glob" "^4.0.3" - -"glob-to-regexp@^0.4.1": - "integrity" "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - "resolved" "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" - "version" "0.4.1" - -"glob@^7.0.0", "glob@^7.1.3", "glob@^7.1.6": - "integrity" "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==" - "resolved" "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz" - "version" "7.2.0" - dependencies: - "fs.realpath" "^1.0.0" - "inflight" "^1.0.4" - "inherits" "2" - "minimatch" "^3.0.4" - "once" "^1.3.0" - "path-is-absolute" "^1.0.0" - -"global-dirs@^3.0.0": - "integrity" "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==" - "resolved" "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "ini" "2.0.0" - -"global-modules@^2.0.0": - "integrity" "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==" - "resolved" "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "global-prefix" "^3.0.0" - -"global-prefix@^3.0.0": - "integrity" "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==" - "resolved" "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "ini" "^1.3.5" - "kind-of" "^6.0.2" - "which" "^1.3.1" - -"globals@^11.1.0": - "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - "resolved" "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" - "version" "11.12.0" - -"globby@^11.0.1", "globby@^11.0.4", "globby@^11.1.0": - "integrity" "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - "resolved" "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" - "version" "11.1.0" - dependencies: - "array-union" "^2.1.0" - "dir-glob" "^3.0.1" - "fast-glob" "^3.2.9" - "ignore" "^5.2.0" - "merge2" "^1.4.1" - "slash" "^3.0.0" - -"globby@^13.1.1": - "integrity" "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==" - "resolved" "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz" - "version" "13.1.2" - dependencies: - "dir-glob" "^3.0.1" - "fast-glob" "^3.2.11" - "ignore" "^5.2.0" - "merge2" "^1.4.1" - "slash" "^4.0.0" - -"got@^9.6.0": - "integrity" "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==" - "resolved" "https://registry.npmjs.org/got/-/got-9.6.0.tgz" - "version" "9.6.0" - dependencies: - "@sindresorhus/is" "^0.14.0" - "@szmarczak/http-timer" "^1.1.2" - "cacheable-request" "^6.0.0" - "decompress-response" "^3.3.0" - "duplexer3" "^0.1.4" - "get-stream" "^4.1.0" - "lowercase-keys" "^1.0.1" - "mimic-response" "^1.0.1" - "p-cancelable" "^1.0.0" - "to-readable-stream" "^1.0.0" - "url-parse-lax" "^3.0.0" - -"graceful-fs@^4.1.2", "graceful-fs@^4.1.6", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4", "graceful-fs@^4.2.6", "graceful-fs@^4.2.9": - "integrity" "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" - "version" "4.2.10" - -"gray-matter@^4.0.3": - "integrity" "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==" - "resolved" "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz" - "version" "4.0.3" - dependencies: - "js-yaml" "^3.13.1" - "kind-of" "^6.0.2" - "section-matter" "^1.0.0" - "strip-bom-string" "^1.0.0" - -"gzip-size@^6.0.0": - "integrity" "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" - "resolved" "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "duplexer" "^0.1.2" - -"handle-thing@^2.0.0": - "integrity" "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" - "resolved" "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz" - "version" "2.0.1" - -"has-flag@^3.0.0": - "integrity" "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" - "version" "3.0.0" - -"has-flag@^4.0.0": - "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" - "version" "4.0.0" - -"has-symbols@^1.0.1": - "integrity" "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz" - "version" "1.0.2" - -"has-yarn@^2.1.0": - "integrity" "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==" - "resolved" "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz" - "version" "2.1.0" - -"has@^1.0.3": - "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" - "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz" - "version" "1.0.3" - dependencies: - "function-bind" "^1.1.1" - -"hast-to-hyperscript@^9.0.0": - "integrity" "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==" - "resolved" "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz" - "version" "9.0.1" - dependencies: - "@types/unist" "^2.0.3" - "comma-separated-tokens" "^1.0.0" - "property-information" "^5.3.0" - "space-separated-tokens" "^1.0.0" - "style-to-object" "^0.3.0" - "unist-util-is" "^4.0.0" - "web-namespaces" "^1.0.0" - -"hast-util-from-parse5@^6.0.0": - "integrity" "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==" - "resolved" "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz" - "version" "6.0.1" - dependencies: - "@types/parse5" "^5.0.0" - "hastscript" "^6.0.0" - "property-information" "^5.0.0" - "vfile" "^4.0.0" - "vfile-location" "^3.2.0" - "web-namespaces" "^1.0.0" - -"hast-util-parse-selector@^2.0.0": - "integrity" "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" - "resolved" "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz" - "version" "2.2.5" - -"hast-util-raw@6.0.1": - "integrity" "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==" - "resolved" "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-6.0.1.tgz" - "version" "6.0.1" - dependencies: - "@types/hast" "^2.0.0" - "hast-util-from-parse5" "^6.0.0" - "hast-util-to-parse5" "^6.0.0" - "html-void-elements" "^1.0.0" - "parse5" "^6.0.0" - "unist-util-position" "^3.0.0" - "vfile" "^4.0.0" - "web-namespaces" "^1.0.0" - "xtend" "^4.0.0" - "zwitch" "^1.0.0" - -"hast-util-to-parse5@^6.0.0": - "integrity" "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==" - "resolved" "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "hast-to-hyperscript" "^9.0.0" - "property-information" "^5.0.0" - "web-namespaces" "^1.0.0" - "xtend" "^4.0.0" - "zwitch" "^1.0.0" - -"hastscript@^6.0.0": - "integrity" "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==" - "resolved" "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "@types/hast" "^2.0.0" - "comma-separated-tokens" "^1.0.0" - "hast-util-parse-selector" "^2.0.0" - "property-information" "^5.0.0" - "space-separated-tokens" "^1.0.0" - -"he@^1.2.0": - "integrity" "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - "resolved" "https://registry.npmjs.org/he/-/he-1.2.0.tgz" - "version" "1.2.0" - -"history@^4.9.0": - "integrity" "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==" - "resolved" "https://registry.npmjs.org/history/-/history-4.10.1.tgz" - "version" "4.10.1" - dependencies: - "@babel/runtime" "^7.1.2" - "loose-envify" "^1.2.0" - "resolve-pathname" "^3.0.0" - "tiny-invariant" "^1.0.2" - "tiny-warning" "^1.0.0" - "value-equal" "^1.0.1" - -"hoist-non-react-statics@^3.1.0": - "integrity" "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" - "resolved" "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" - "version" "3.3.2" - dependencies: - "react-is" "^16.7.0" - -"hpack.js@^2.1.6": - "integrity" "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" - "resolved" "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz" - "version" "2.1.6" - dependencies: - "inherits" "^2.0.1" - "obuf" "^1.0.0" - "readable-stream" "^2.0.1" - "wbuf" "^1.1.0" - -"html-entities@^2.3.2": - "integrity" "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" - "resolved" "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz" - "version" "2.3.3" - -"html-minifier-terser@^6.0.2", "html-minifier-terser@^6.1.0": - "integrity" "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==" - "resolved" "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz" - "version" "6.1.0" - dependencies: - "camel-case" "^4.1.2" - "clean-css" "^5.2.2" - "commander" "^8.3.0" - "he" "^1.2.0" - "param-case" "^3.0.4" - "relateurl" "^0.2.7" - "terser" "^5.10.0" - -"html-tags@^3.2.0": - "integrity" "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==" - "resolved" "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz" - "version" "3.2.0" - -"html-void-elements@^1.0.0": - "integrity" "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==" - "resolved" "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz" - "version" "1.0.5" - -"html-webpack-plugin@^5.5.0": - "integrity" "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==" - "resolved" "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz" - "version" "5.5.0" - dependencies: - "@types/html-minifier-terser" "^6.0.0" - "html-minifier-terser" "^6.0.2" - "lodash" "^4.17.21" - "pretty-error" "^4.0.0" - "tapable" "^2.0.0" - -"htmlparser2@^6.1.0": - "integrity" "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" - "resolved" "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz" - "version" "6.1.0" - dependencies: - "domelementtype" "^2.0.1" - "domhandler" "^4.0.0" - "domutils" "^2.5.2" - "entities" "^2.0.0" - -"htmlparser2@^8.0.1": - "integrity" "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==" - "resolved" "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz" - "version" "8.0.2" - dependencies: - "domelementtype" "^2.3.0" - "domhandler" "^5.0.3" - "domutils" "^3.0.1" - "entities" "^4.4.0" - -"http-cache-semantics@^4.0.0": - "integrity" "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" - "resolved" "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz" - "version" "4.1.0" - -"http-deceiver@^1.2.7": - "integrity" "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" - "resolved" "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz" - "version" "1.2.7" - -"http-errors@~1.6.2": - "integrity" "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" - "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" - "version" "1.6.3" - dependencies: - "depd" "~1.1.2" - "inherits" "2.0.3" - "setprototypeof" "1.1.0" - "statuses" ">= 1.4.0 < 2" - -"http-errors@2.0.0": - "integrity" "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" - "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "depd" "2.0.0" - "inherits" "2.0.4" - "setprototypeof" "1.2.0" - "statuses" "2.0.1" - "toidentifier" "1.0.1" - -"http-parser-js@>=0.5.1": - "integrity" "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" - "resolved" "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz" - "version" "0.5.8" - -"http-proxy-middleware@^2.0.3": - "integrity" "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" - "resolved" "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz" - "version" "2.0.6" - dependencies: - "@types/http-proxy" "^1.17.8" - "http-proxy" "^1.18.1" - "is-glob" "^4.0.1" - "is-plain-obj" "^3.0.0" - "micromatch" "^4.0.2" - -"http-proxy@^1.18.1": - "integrity" "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - "resolved" "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz" - "version" "1.18.1" - dependencies: - "eventemitter3" "^4.0.0" - "follow-redirects" "^1.0.0" - "requires-port" "^1.0.0" - -"human-signals@^2.1.0": - "integrity" "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - "resolved" "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" - "version" "2.1.0" - -"iconv-lite@0.4.24": - "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" - "version" "0.4.24" - dependencies: - "safer-buffer" ">= 2.1.2 < 3" - -"icss-utils@^5.0.0", "icss-utils@^5.1.0": - "integrity" "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" - "resolved" "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz" - "version" "5.1.0" - -"ignore@^5.2.0": - "integrity" "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" - "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz" - "version" "5.2.0" - -"image-size@^1.0.1": - "integrity" "sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==" - "resolved" "https://registry.npmjs.org/image-size/-/image-size-1.0.2.tgz" - "version" "1.0.2" - dependencies: - "queue" "6.0.2" - -"immer@^9.0.7": - "integrity" "sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==" - "resolved" "https://registry.npmjs.org/immer/-/immer-9.0.12.tgz" - "version" "9.0.12" - -"import-fresh@^3.1.0", "import-fresh@^3.2.1", "import-fresh@^3.3.0": - "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" - "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" - "version" "3.3.0" - dependencies: - "parent-module" "^1.0.0" - "resolve-from" "^4.0.0" - -"import-lazy@^2.1.0": - "integrity" "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" - "resolved" "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz" - "version" "2.1.0" - -"imurmurhash@^0.1.4": - "integrity" "sha1-khi5srkoojixPcT7a21XbyMUU+o=" - "resolved" "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" - "version" "0.1.4" - -"indent-string@^4.0.0": - "integrity" "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - "resolved" "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" - "version" "4.0.0" - -"infima@0.2.0-alpha.43": - "integrity" "sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==" - "resolved" "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.43.tgz" - "version" "0.2.0-alpha.43" - -"inflight@^1.0.4": - "integrity" "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" - "resolved" "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" - "version" "1.0.6" - dependencies: - "once" "^1.3.0" - "wrappy" "1" - -"inherits@^2.0.0", "inherits@^2.0.1", "inherits@^2.0.3", "inherits@~2.0.3", "inherits@2", "inherits@2.0.4": - "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" - "version" "2.0.4" - -"inherits@2.0.3": - "integrity" "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" - "version" "2.0.3" - -"ini@^1.3.5", "ini@~1.3.0": - "integrity" "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - "resolved" "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" - "version" "1.3.8" - -"ini@2.0.0": - "integrity" "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" - "resolved" "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz" - "version" "2.0.0" - -"inline-style-parser@0.1.1": - "integrity" "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" - "resolved" "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz" - "version" "0.1.1" - -"interpret@^1.0.0": - "integrity" "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" - "resolved" "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz" - "version" "1.4.0" - -"invariant@^2.2.4": - "integrity" "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" - "resolved" "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz" - "version" "2.2.4" - dependencies: - "loose-envify" "^1.0.0" - -"ipaddr.js@^2.0.1": - "integrity" "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" - "resolved" "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz" - "version" "2.0.1" - -"ipaddr.js@1.9.1": - "integrity" "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - "resolved" "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" - "version" "1.9.1" - -"is-alphabetical@^1.0.0", "is-alphabetical@1.0.4": - "integrity" "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" - "resolved" "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz" - "version" "1.0.4" - -"is-alphanumerical@^1.0.0": - "integrity" "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==" - "resolved" "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz" - "version" "1.0.4" - dependencies: - "is-alphabetical" "^1.0.0" - "is-decimal" "^1.0.0" - -"is-arrayish@^0.2.1": - "integrity" "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" - "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" - "version" "0.2.1" - -"is-binary-path@~2.1.0": - "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" - "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "binary-extensions" "^2.0.0" - -"is-buffer@^2.0.0": - "integrity" "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" - "resolved" "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz" - "version" "2.0.5" - -"is-ci@^2.0.0": - "integrity" "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" - "resolved" "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "ci-info" "^2.0.0" - -"is-core-module@^2.9.0": - "integrity" "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==" - "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz" - "version" "2.10.0" - dependencies: - "has" "^1.0.3" - -"is-decimal@^1.0.0": - "integrity" "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==" - "resolved" "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz" - "version" "1.0.4" - -"is-docker@^2.0.0", "is-docker@^2.1.1": - "integrity" "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - "resolved" "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" - "version" "2.2.1" - -"is-extendable@^0.1.0": - "integrity" "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" - "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" - "version" "0.1.1" - -"is-extglob@^2.1.1": - "integrity" "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" - "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" - "version" "2.1.1" - -"is-fullwidth-code-point@^3.0.0": - "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" - "version" "3.0.0" - -"is-glob@^4.0.1", "is-glob@^4.0.3", "is-glob@~4.0.1": - "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" - "version" "4.0.3" - dependencies: - "is-extglob" "^2.1.1" - -"is-hexadecimal@^1.0.0": - "integrity" "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==" - "resolved" "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz" - "version" "1.0.4" - -"is-installed-globally@^0.4.0": - "integrity" "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" - "resolved" "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz" - "version" "0.4.0" - dependencies: - "global-dirs" "^3.0.0" - "is-path-inside" "^3.0.2" - -"is-npm@^5.0.0": - "integrity" "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==" - "resolved" "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz" - "version" "5.0.0" - -"is-number@^7.0.0": - "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" - "version" "7.0.0" - -"is-obj@^1.0.1": - "integrity" "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==" - "resolved" "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz" - "version" "1.0.1" - -"is-obj@^2.0.0": - "integrity" "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" - "resolved" "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" - "version" "2.0.0" - -"is-path-cwd@^2.2.0": - "integrity" "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" - "resolved" "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" - "version" "2.2.0" - -"is-path-inside@^3.0.2": - "integrity" "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - "resolved" "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" - "version" "3.0.3" - -"is-plain-obj@^2.0.0": - "integrity" "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" - "resolved" "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz" - "version" "2.1.0" - -"is-plain-obj@^3.0.0": - "integrity" "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - "resolved" "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz" - "version" "3.0.0" - -"is-plain-object@^2.0.4": - "integrity" "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" - "resolved" "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" - "version" "2.0.4" - dependencies: - "isobject" "^3.0.1" - -"is-regexp@^1.0.0": - "integrity" "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" - "resolved" "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz" - "version" "1.0.0" - -"is-root@^2.1.0": - "integrity" "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" - "resolved" "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz" - "version" "2.1.0" - -"is-stream@^2.0.0": - "integrity" "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" - "version" "2.0.1" - -"is-typedarray@^1.0.0": - "integrity" "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - "resolved" "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" - "version" "1.0.0" - -"is-whitespace-character@^1.0.0": - "integrity" "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==" - "resolved" "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz" - "version" "1.0.4" - -"is-word-character@^1.0.0": - "integrity" "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==" - "resolved" "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz" - "version" "1.0.4" - -"is-wsl@^2.2.0": - "integrity" "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" - "version" "2.2.0" - dependencies: - "is-docker" "^2.0.0" - -"is-yarn-global@^0.3.0": - "integrity" "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" - "resolved" "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz" - "version" "0.3.0" - -"isarray@~1.0.0": - "integrity" "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - "resolved" "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" - "version" "1.0.0" - -"isarray@0.0.1": - "integrity" "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" - "resolved" "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" - "version" "0.0.1" - -"isexe@^2.0.0": - "integrity" "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" - "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" - "version" "2.0.0" - -"isobject@^3.0.1": - "integrity" "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - "resolved" "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" - "version" "3.0.1" - -"jest-worker@^27.4.5", "jest-worker@^27.5.1": - "integrity" "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" - "resolved" "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz" - "version" "27.5.1" - dependencies: - "@types/node" "*" - "merge-stream" "^2.0.0" - "supports-color" "^8.0.0" - -"joi@^17.6.0": - "integrity" "sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==" - "resolved" "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz" - "version" "17.6.0" - dependencies: - "@hapi/hoek" "^9.0.0" - "@hapi/topo" "^5.0.0" - "@sideway/address" "^4.1.3" - "@sideway/formula" "^3.0.0" - "@sideway/pinpoint" "^2.0.0" - -"js-tokens@^3.0.0 || ^4.0.0", "js-tokens@^4.0.0": - "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" - "version" "4.0.0" - -"js-yaml@^3.13.1": - "integrity" "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" - "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" - "version" "3.14.1" - dependencies: - "argparse" "^1.0.7" - "esprima" "^4.0.0" - -"js-yaml@^4.1.0": - "integrity" "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" - "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" - "version" "4.1.0" - dependencies: - "argparse" "^2.0.1" - -"jsesc@^2.5.1": - "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" - "version" "2.5.2" - -"jsesc@~0.5.0": - "integrity" "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" - "version" "0.5.0" - -"json-buffer@3.0.0": - "integrity" "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" - "resolved" "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz" - "version" "3.0.0" - -"json-parse-even-better-errors@^2.3.0", "json-parse-even-better-errors@^2.3.1": - "integrity" "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - "resolved" "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" - "version" "2.3.1" - -"json-schema-traverse@^0.4.1": - "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" - "version" "0.4.1" - -"json-schema-traverse@^1.0.0": - "integrity" "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" - "version" "1.0.0" - -"json5@^2.1.2", "json5@^2.2.1": - "integrity" "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==" - "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz" - "version" "2.2.1" - -"jsonfile@^6.0.1": - "integrity" "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" - "version" "6.1.0" - dependencies: - "universalify" "^2.0.0" - optionalDependencies: - "graceful-fs" "^4.1.6" - -"keyv@^3.0.0": - "integrity" "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==" - "resolved" "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz" - "version" "3.1.0" - dependencies: - "json-buffer" "3.0.0" - -"kind-of@^6.0.0", "kind-of@^6.0.2": - "integrity" "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" - "version" "6.0.3" - -"kleur@^3.0.3": - "integrity" "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - "resolved" "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" - "version" "3.0.3" - -"klona@^2.0.5": - "integrity" "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" - "resolved" "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz" - "version" "2.0.5" - -"latest-version@^5.1.0": - "integrity" "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==" - "resolved" "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "package-json" "^6.3.0" - -"leven@^3.1.0": - "integrity" "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" - "resolved" "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" - "version" "3.1.0" - -"lilconfig@^2.0.3": - "integrity" "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" - "resolved" "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz" - "version" "2.0.6" - -"lines-and-columns@^1.1.6": - "integrity" "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" - "resolved" "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz" - "version" "1.1.6" - -"loader-runner@^4.2.0": - "integrity" "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==" - "resolved" "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz" - "version" "4.2.0" - -"loader-utils@^2.0.0": - "integrity" "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==" - "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "big.js" "^5.2.2" - "emojis-list" "^3.0.0" - "json5" "^2.1.2" - -"loader-utils@^3.2.0": - "integrity" "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==" - "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz" - "version" "3.2.0" - -"locate-path@^3.0.0": - "integrity" "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" - "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "p-locate" "^3.0.0" - "path-exists" "^3.0.0" - -"locate-path@^5.0.0": - "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "p-locate" "^4.1.0" - -"locate-path@^6.0.0": - "integrity" "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "p-locate" "^5.0.0" - -"lodash.curry@^4.0.1": - "integrity" "sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==" - "resolved" "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz" - "version" "4.1.1" - -"lodash.debounce@^4.0.8": - "integrity" "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - "resolved" "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" - "version" "4.0.8" - -"lodash.flow@^3.3.0": - "integrity" "sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==" - "resolved" "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz" - "version" "3.5.0" - -"lodash.memoize@^4.1.2": - "integrity" "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - "resolved" "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" - "version" "4.1.2" - -"lodash.uniq@^4.5.0", "lodash.uniq@4.5.0": - "integrity" "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - "resolved" "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" - "version" "4.5.0" - -"lodash@^4.17.19", "lodash@^4.17.20", "lodash@^4.17.21": - "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" - "version" "4.17.21" - -"loose-envify@^1.0.0", "loose-envify@^1.1.0", "loose-envify@^1.2.0", "loose-envify@^1.3.1", "loose-envify@^1.4.0": - "integrity" "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" - "resolved" "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" - "version" "1.4.0" - dependencies: - "js-tokens" "^3.0.0 || ^4.0.0" - -"lower-case@^2.0.2": - "integrity" "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" - "resolved" "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz" - "version" "2.0.2" - dependencies: - "tslib" "^2.0.3" - -"lowercase-keys@^1.0.0", "lowercase-keys@^1.0.1": - "integrity" "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" - "resolved" "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz" - "version" "1.0.1" - -"lowercase-keys@^2.0.0": - "integrity" "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - "resolved" "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz" - "version" "2.0.0" - -"lru-cache@^6.0.0": - "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" - "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "yallist" "^4.0.0" - -"make-dir@^3.0.0", "make-dir@^3.0.2", "make-dir@^3.1.0": - "integrity" "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" - "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" - "version" "3.1.0" - dependencies: - "semver" "^6.0.0" - -"markdown-escapes@^1.0.0": - "integrity" "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==" - "resolved" "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz" - "version" "1.0.4" - -"mdast-squeeze-paragraphs@^4.0.0": - "integrity" "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==" - "resolved" "https://registry.npmjs.org/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "unist-util-remove" "^2.0.0" - -"mdast-util-definitions@^4.0.0": - "integrity" "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==" - "resolved" "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "unist-util-visit" "^2.0.0" - -"mdast-util-to-hast@10.0.1": - "integrity" "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==" - "resolved" "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz" - "version" "10.0.1" - dependencies: - "@types/mdast" "^3.0.0" - "@types/unist" "^2.0.0" - "mdast-util-definitions" "^4.0.0" - "mdurl" "^1.0.0" - "unist-builder" "^2.0.0" - "unist-util-generated" "^1.0.0" - "unist-util-position" "^3.0.0" - "unist-util-visit" "^2.0.0" - -"mdast-util-to-string@^2.0.0": - "integrity" "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==" - "resolved" "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz" - "version" "2.0.0" - -"mdn-data@2.0.14": - "integrity" "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - "resolved" "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" - "version" "2.0.14" - -"mdurl@^1.0.0": - "integrity" "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" - "resolved" "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz" - "version" "1.0.1" - -"media-typer@0.3.0": - "integrity" "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - "resolved" "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" - "version" "0.3.0" - -"medium-zoom@^1.0.8": - "integrity" "sha512-CjFVuFq/IfrdqesAXfg+hzlDKu6A2n80ZIq0Kl9kWjoHh9j1N9Uvk5X0/MmN0hOfm5F9YBswlClhcwnmtwz7gA==" - "resolved" "https://registry.npmjs.org/medium-zoom/-/medium-zoom-1.0.8.tgz" - "version" "1.0.8" - -"memfs@^3.1.2", "memfs@^3.4.3": - "integrity" "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==" - "resolved" "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz" - "version" "3.4.7" - dependencies: - "fs-monkey" "^1.0.3" - -"merge-descriptors@1.0.1": - "integrity" "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - "resolved" "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" - "version" "1.0.1" - -"merge-stream@^2.0.0": - "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - "resolved" "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" - "version" "2.0.0" - -"merge2@^1.3.0", "merge2@^1.4.1": - "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - "resolved" "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" - "version" "1.4.1" - -"methods@~1.1.2": - "integrity" "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - "resolved" "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" - "version" "1.1.2" - -"micromatch@^4.0.2", "micromatch@^4.0.4", "micromatch@^4.0.5": - "integrity" "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" - "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" - "version" "4.0.5" - dependencies: - "braces" "^3.0.2" - "picomatch" "^2.3.1" - -"mime-db@>= 1.43.0 < 2", "mime-db@1.52.0": - "integrity" "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" - "version" "1.52.0" - -"mime-db@~1.33.0": - "integrity" "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" - "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz" - "version" "1.33.0" - -"mime-types@^2.1.27", "mime-types@^2.1.31", "mime-types@~2.1.17", "mime-types@~2.1.24", "mime-types@~2.1.34": - "integrity" "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" - "version" "2.1.35" - dependencies: - "mime-db" "1.52.0" - -"mime-types@2.1.18": - "integrity" "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==" - "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz" - "version" "2.1.18" - dependencies: - "mime-db" "~1.33.0" - -"mime@^2.3.1": - "integrity" "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" - "resolved" "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz" - "version" "2.5.2" - -"mime@1.6.0": - "integrity" "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - "resolved" "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" - "version" "1.6.0" - -"mimic-fn@^2.1.0": - "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" - "version" "2.1.0" - -"mimic-response@^1.0.0", "mimic-response@^1.0.1": - "integrity" "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - "resolved" "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz" - "version" "1.0.1" - -"mini-create-react-context@^0.4.0": - "integrity" "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==" - "resolved" "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz" - "version" "0.4.1" - dependencies: - "@babel/runtime" "^7.12.1" - "tiny-warning" "^1.0.3" - -"mini-css-extract-plugin@^2.6.1": - "integrity" "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==" - "resolved" "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz" - "version" "2.6.1" - dependencies: - "schema-utils" "^4.0.0" - -"minimalistic-assert@^1.0.0": - "integrity" "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - "resolved" "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" - "version" "1.0.1" - -"minimatch@^3.0.4", "minimatch@3.0.4": - "integrity" "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" - "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "brace-expansion" "^1.1.7" - -"minimist@^1.2.0", "minimist@^1.2.5": - "integrity" "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz" - "version" "1.2.5" - -"ms@2.0.0": - "integrity" "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" - "version" "2.0.0" - -"ms@2.1.2": - "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" - "version" "2.1.2" - -"ms@2.1.3": - "integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" - "version" "2.1.3" - -"multicast-dns@^7.2.5": - "integrity" "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" - "resolved" "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz" - "version" "7.2.5" - dependencies: - "dns-packet" "^5.2.2" - "thunky" "^1.0.2" - -"nanoid@^3.3.6": - "integrity" "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" - "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz" - "version" "3.3.6" - -"negotiator@0.6.3": - "integrity" "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - "resolved" "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" - "version" "0.6.3" - -"neo-async@^2.6.2": - "integrity" "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - "resolved" "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" - "version" "2.6.2" - -"no-case@^3.0.4": - "integrity" "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" - "resolved" "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "lower-case" "^2.0.2" - "tslib" "^2.0.3" - -"node-emoji@^1.10.0": - "integrity" "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==" - "resolved" "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz" - "version" "1.11.0" - dependencies: - "lodash" "^4.17.21" - -"node-fetch@^2.6.12": - "integrity" "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" - "resolved" "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz" - "version" "2.7.0" - dependencies: - "whatwg-url" "^5.0.0" - -"node-forge@^1": - "integrity" "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" - "resolved" "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz" - "version" "1.3.1" - -"node-releases@^2.0.13": - "integrity" "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" - "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz" - "version" "2.0.13" - -"normalize-path@^3.0.0", "normalize-path@~3.0.0": - "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" - "version" "3.0.0" - -"normalize-range@^0.1.2": - "integrity" "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" - "resolved" "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" - "version" "0.1.2" - -"normalize-url@^4.1.0": - "integrity" "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==" - "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz" - "version" "4.5.0" - -"normalize-url@^6.0.1": - "integrity" "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz" - "version" "6.1.0" - -"npm-run-path@^4.0.1": - "integrity" "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" - "version" "4.0.1" - dependencies: - "path-key" "^3.0.0" - -"nprogress@^0.2.0": - "integrity" "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==" - "resolved" "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz" - "version" "0.2.0" - -"nth-check@^2.0.0", "nth-check@^2.0.1": - "integrity" "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" - "resolved" "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz" - "version" "2.1.1" - dependencies: - "boolbase" "^1.0.0" - -"object-assign@^4.1.0", "object-assign@^4.1.1": - "integrity" "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" - "version" "4.1.1" - -"object-inspect@^1.9.0": - "integrity" "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" - "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz" - "version" "1.12.2" - -"object-keys@^1.0.12", "object-keys@^1.1.1": - "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" - "version" "1.1.1" - -"object.assign@^4.1.0": - "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" - "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" - "version" "4.1.2" - dependencies: - "call-bind" "^1.0.0" - "define-properties" "^1.1.3" - "has-symbols" "^1.0.1" - "object-keys" "^1.1.1" - -"obuf@^1.0.0", "obuf@^1.1.2": - "integrity" "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - "resolved" "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz" - "version" "1.1.2" - -"on-finished@2.4.1": - "integrity" "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" - "resolved" "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" - "version" "2.4.1" - dependencies: - "ee-first" "1.1.1" - -"on-headers@~1.0.2": - "integrity" "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - "resolved" "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" - "version" "1.0.2" - -"once@^1.3.0", "once@^1.3.1", "once@^1.4.0": - "integrity" "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" - "resolved" "https://registry.npmjs.org/once/-/once-1.4.0.tgz" - "version" "1.4.0" - dependencies: - "wrappy" "1" - -"onetime@^5.1.2": - "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - "resolved" "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" - "version" "5.1.2" - dependencies: - "mimic-fn" "^2.1.0" - -"open@^8.0.9", "open@^8.4.0": - "integrity" "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==" - "resolved" "https://registry.npmjs.org/open/-/open-8.4.0.tgz" - "version" "8.4.0" - dependencies: - "define-lazy-prop" "^2.0.0" - "is-docker" "^2.1.1" - "is-wsl" "^2.2.0" - -"opener@^1.5.2": - "integrity" "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" - "resolved" "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz" - "version" "1.5.2" - -"p-cancelable@^1.0.0": - "integrity" "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" - "resolved" "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz" - "version" "1.1.0" - -"p-limit@^2.0.0", "p-limit@^2.2.0": - "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" - "version" "2.3.0" - dependencies: - "p-try" "^2.0.0" - -"p-limit@^3.0.2": - "integrity" "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" - "version" "3.1.0" - dependencies: - "yocto-queue" "^0.1.0" - -"p-locate@^3.0.0": - "integrity" "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" - "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "p-limit" "^2.0.0" - -"p-locate@^4.1.0": - "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" - "version" "4.1.0" - dependencies: - "p-limit" "^2.2.0" - -"p-locate@^5.0.0": - "integrity" "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "p-limit" "^3.0.2" - -"p-map@^4.0.0": - "integrity" "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" - "resolved" "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "aggregate-error" "^3.0.0" - -"p-retry@^4.5.0": - "integrity" "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" - "resolved" "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz" - "version" "4.6.2" - dependencies: - "@types/retry" "0.12.0" - "retry" "^0.13.1" - -"p-try@^2.0.0": - "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - "resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" - "version" "2.2.0" - -"package-json@^6.3.0": - "integrity" "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==" - "resolved" "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz" - "version" "6.5.0" - dependencies: - "got" "^9.6.0" - "registry-auth-token" "^4.0.0" - "registry-url" "^5.0.0" - "semver" "^6.2.0" - -"param-case@^3.0.4": - "integrity" "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" - "resolved" "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz" - "version" "3.0.4" - dependencies: - "dot-case" "^3.0.4" - "tslib" "^2.0.3" - -"parent-module@^1.0.0": - "integrity" "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - "resolved" "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" - "version" "1.0.1" - dependencies: - "callsites" "^3.0.0" - -"parse-entities@^2.0.0": - "integrity" "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==" - "resolved" "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "character-entities" "^1.0.0" - "character-entities-legacy" "^1.0.0" - "character-reference-invalid" "^1.0.0" - "is-alphanumerical" "^1.0.0" - "is-decimal" "^1.0.0" - "is-hexadecimal" "^1.0.0" - -"parse-json@^5.0.0": - "integrity" "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" - "version" "5.2.0" - 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" - -"parse-numeric-range@^1.3.0": - "integrity" "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==" - "resolved" "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz" - "version" "1.3.0" - -"parse5-htmlparser2-tree-adapter@^7.0.0": - "integrity" "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==" - "resolved" "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz" - "version" "7.0.0" - dependencies: - "domhandler" "^5.0.2" - "parse5" "^7.0.0" - -"parse5@^6.0.0": - "integrity" "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" - "resolved" "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" - "version" "6.0.1" - -"parse5@^7.0.0": - "integrity" "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - "resolved" "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz" - "version" "7.1.2" - dependencies: - "entities" "^4.4.0" - -"parseurl@~1.3.2", "parseurl@~1.3.3": - "integrity" "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - "resolved" "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" - "version" "1.3.3" - -"pascal-case@^3.1.2": - "integrity" "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" - "resolved" "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz" - "version" "3.1.2" - dependencies: - "no-case" "^3.0.4" - "tslib" "^2.0.3" - -"path-exists@^3.0.0": - "integrity" "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" - "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" - "version" "3.0.0" - -"path-exists@^4.0.0": - "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" - "version" "4.0.0" - -"path-is-absolute@^1.0.0": - "integrity" "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - "resolved" "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" - "version" "1.0.1" - -"path-is-inside@1.0.2": - "integrity" "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" - "resolved" "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz" - "version" "1.0.2" - -"path-key@^3.0.0", "path-key@^3.1.0": - "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" - "version" "3.1.1" - -"path-parse@^1.0.7": - "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" - "version" "1.0.7" - -"path-to-regexp@^1.7.0": - "integrity" "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" - "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz" - "version" "1.8.0" - dependencies: - "isarray" "0.0.1" - -"path-to-regexp@0.1.7": - "integrity" "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" - "version" "0.1.7" - -"path-to-regexp@2.2.1": - "integrity" "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==" - "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz" - "version" "2.2.1" - -"path-type@^4.0.0": - "integrity" "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - "resolved" "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" - "version" "4.0.0" - -"picocolors@^1.0.0": - "integrity" "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - "resolved" "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" - "version" "1.0.0" - -"picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.3.1": - "integrity" "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" - "version" "2.3.1" - -"pkg-dir@^4.1.0": - "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" - "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" - "version" "4.2.0" - dependencies: - "find-up" "^4.0.0" - -"pkg-up@^3.1.0": - "integrity" "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" - "resolved" "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz" - "version" "3.1.0" - dependencies: - "find-up" "^3.0.0" - -"plugin-image-zoom@github:flexanalytics/plugin-image-zoom": - "resolved" "git+ssh://git@github.com/flexanalytics/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de" - "version" "1.1.0" - dependencies: - "medium-zoom" "^1.0.8" - -"postcss-calc@^8.2.3": - "integrity" "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" - "resolved" "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz" - "version" "8.2.4" - dependencies: - "postcss-selector-parser" "^6.0.9" - "postcss-value-parser" "^4.2.0" - -"postcss-colormin@^5.3.1": - "integrity" "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==" - "resolved" "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz" - "version" "5.3.1" - dependencies: - "browserslist" "^4.21.4" - "caniuse-api" "^3.0.0" - "colord" "^2.9.1" - "postcss-value-parser" "^4.2.0" - -"postcss-convert-values@^5.1.3": - "integrity" "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==" - "resolved" "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz" - "version" "5.1.3" - dependencies: - "browserslist" "^4.21.4" - "postcss-value-parser" "^4.2.0" - -"postcss-discard-comments@^5.1.2": - "integrity" "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" - "resolved" "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz" - "version" "5.1.2" - -"postcss-discard-duplicates@^5.1.0": - "integrity" "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" - "resolved" "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz" - "version" "5.1.0" - -"postcss-discard-empty@^5.1.1": - "integrity" "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" - "resolved" "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz" - "version" "5.1.1" - -"postcss-discard-overridden@^5.1.0": - "integrity" "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" - "resolved" "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz" - "version" "5.1.0" - -"postcss-discard-unused@^5.1.0": - "integrity" "sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==" - "resolved" "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "postcss-selector-parser" "^6.0.5" - -"postcss-loader@^7.0.0": - "integrity" "sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==" - "resolved" "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.0.1.tgz" - "version" "7.0.1" - dependencies: - "cosmiconfig" "^7.0.0" - "klona" "^2.0.5" - "semver" "^7.3.7" - -"postcss-merge-idents@^5.1.1": - "integrity" "sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==" - "resolved" "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "cssnano-utils" "^3.1.0" - "postcss-value-parser" "^4.2.0" - -"postcss-merge-longhand@^5.1.7": - "integrity" "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==" - "resolved" "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz" - "version" "5.1.7" - dependencies: - "postcss-value-parser" "^4.2.0" - "stylehacks" "^5.1.1" - -"postcss-merge-rules@^5.1.4": - "integrity" "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==" - "resolved" "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz" - "version" "5.1.4" - dependencies: - "browserslist" "^4.21.4" - "caniuse-api" "^3.0.0" - "cssnano-utils" "^3.1.0" - "postcss-selector-parser" "^6.0.5" - -"postcss-minify-font-values@^5.1.0": - "integrity" "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" - "resolved" "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "postcss-value-parser" "^4.2.0" - -"postcss-minify-gradients@^5.1.1": - "integrity" "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" - "resolved" "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "colord" "^2.9.1" - "cssnano-utils" "^3.1.0" - "postcss-value-parser" "^4.2.0" - -"postcss-minify-params@^5.1.4": - "integrity" "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==" - "resolved" "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz" - "version" "5.1.4" - dependencies: - "browserslist" "^4.21.4" - "cssnano-utils" "^3.1.0" - "postcss-value-parser" "^4.2.0" - -"postcss-minify-selectors@^5.2.1": - "integrity" "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" - "resolved" "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz" - "version" "5.2.1" - dependencies: - "postcss-selector-parser" "^6.0.5" - -"postcss-modules-extract-imports@^3.0.0": - "integrity" "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" - "resolved" "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz" - "version" "3.0.0" - -"postcss-modules-local-by-default@^4.0.0": - "integrity" "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==" - "resolved" "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "icss-utils" "^5.0.0" - "postcss-selector-parser" "^6.0.2" - "postcss-value-parser" "^4.1.0" - -"postcss-modules-scope@^3.0.0": - "integrity" "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" - "resolved" "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "postcss-selector-parser" "^6.0.4" - -"postcss-modules-values@^4.0.0": - "integrity" "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" - "resolved" "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "icss-utils" "^5.0.0" - -"postcss-normalize-charset@^5.1.0": - "integrity" "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" - "resolved" "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz" - "version" "5.1.0" - -"postcss-normalize-display-values@^5.1.0": - "integrity" "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" - "resolved" "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "postcss-value-parser" "^4.2.0" - -"postcss-normalize-positions@^5.1.1": - "integrity" "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" - "resolved" "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "postcss-value-parser" "^4.2.0" - -"postcss-normalize-repeat-style@^5.1.1": - "integrity" "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" - "resolved" "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "postcss-value-parser" "^4.2.0" - -"postcss-normalize-string@^5.1.0": - "integrity" "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" - "resolved" "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "postcss-value-parser" "^4.2.0" - -"postcss-normalize-timing-functions@^5.1.0": - "integrity" "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" - "resolved" "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "postcss-value-parser" "^4.2.0" - -"postcss-normalize-unicode@^5.1.1": - "integrity" "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==" - "resolved" "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "browserslist" "^4.21.4" - "postcss-value-parser" "^4.2.0" - -"postcss-normalize-url@^5.1.0": - "integrity" "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" - "resolved" "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "normalize-url" "^6.0.1" - "postcss-value-parser" "^4.2.0" - -"postcss-normalize-whitespace@^5.1.1": - "integrity" "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" - "resolved" "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "postcss-value-parser" "^4.2.0" - -"postcss-ordered-values@^5.1.3": - "integrity" "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" - "resolved" "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz" - "version" "5.1.3" - dependencies: - "cssnano-utils" "^3.1.0" - "postcss-value-parser" "^4.2.0" - -"postcss-reduce-idents@^5.2.0": - "integrity" "sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==" - "resolved" "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-5.2.0.tgz" - "version" "5.2.0" - dependencies: - "postcss-value-parser" "^4.2.0" - -"postcss-reduce-initial@^5.1.2": - "integrity" "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==" - "resolved" "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz" - "version" "5.1.2" - dependencies: - "browserslist" "^4.21.4" - "caniuse-api" "^3.0.0" - -"postcss-reduce-transforms@^5.1.0": - "integrity" "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" - "resolved" "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "postcss-value-parser" "^4.2.0" - -"postcss-selector-parser@^6.0.2", "postcss-selector-parser@^6.0.4", "postcss-selector-parser@^6.0.5", "postcss-selector-parser@^6.0.9": - "integrity" "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==" - "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz" - "version" "6.0.10" - dependencies: - "cssesc" "^3.0.0" - "util-deprecate" "^1.0.2" - -"postcss-sort-media-queries@^4.2.1": - "integrity" "sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw==" - "resolved" "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-4.4.1.tgz" - "version" "4.4.1" - dependencies: - "sort-css-media-queries" "2.1.0" - -"postcss-svgo@^5.1.0": - "integrity" "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" - "resolved" "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "postcss-value-parser" "^4.2.0" - "svgo" "^2.7.0" - -"postcss-unique-selectors@^5.1.1": - "integrity" "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" - "resolved" "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "postcss-selector-parser" "^6.0.5" - -"postcss-value-parser@^4.1.0", "postcss-value-parser@^4.2.0": - "integrity" "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" - "version" "4.2.0" - -"postcss-zindex@^5.1.0": - "integrity" "sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==" - "resolved" "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-5.1.0.tgz" - "version" "5.1.0" - -"postcss@^7.0.0 || ^8.0.1", "postcss@^8.0.9", "postcss@^8.1.0", "postcss@^8.2.15", "postcss@^8.2.2", "postcss@^8.3.11", "postcss@^8.4.13", "postcss@^8.4.14", "postcss@^8.4.16", "postcss@^8.4.7": - "integrity" "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==" - "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz" - "version" "8.4.27" - dependencies: - "nanoid" "^3.3.6" - "picocolors" "^1.0.0" - "source-map-js" "^1.0.2" - -"prepend-http@^2.0.0": - "integrity" "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" - "resolved" "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz" - "version" "2.0.0" - -"pretty-error@^4.0.0": - "integrity" "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==" - "resolved" "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "lodash" "^4.17.20" - "renderkid" "^3.0.0" - -"pretty-time@^1.1.0": - "integrity" "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==" - "resolved" "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz" - "version" "1.1.0" - -"prism-react-renderer@^1.3.5": - "integrity" "sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==" - "resolved" "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-1.3.5.tgz" - "version" "1.3.5" - -"prismjs@^1.28.0": - "integrity" "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==" - "resolved" "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz" - "version" "1.29.0" - -"process-nextick-args@~2.0.0": - "integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - "resolved" "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" - "version" "2.0.1" - -"promise@^7.1.1": - "integrity" "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==" - "resolved" "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz" - "version" "7.3.1" - dependencies: - "asap" "~2.0.3" - -"prompts@^2.4.2": - "integrity" "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - "resolved" "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz" - "version" "2.4.2" - dependencies: - "kleur" "^3.0.3" - "sisteransi" "^1.0.5" - -"prop-types@^15.0.0", "prop-types@^15.6.2", "prop-types@^15.7.2": - "integrity" "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==" - "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz" - "version" "15.7.2" - dependencies: - "loose-envify" "^1.4.0" - "object-assign" "^4.1.1" - "react-is" "^16.8.1" - -"property-information@^5.0.0", "property-information@^5.3.0": - "integrity" "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==" - "resolved" "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz" - "version" "5.6.0" - dependencies: - "xtend" "^4.0.0" - -"proxy-addr@~2.0.7": - "integrity" "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - "resolved" "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz" - "version" "2.0.7" - dependencies: - "forwarded" "0.2.0" - "ipaddr.js" "1.9.1" - -"pump@^3.0.0": - "integrity" "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" - "resolved" "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "end-of-stream" "^1.1.0" - "once" "^1.3.1" - -"punycode@^1.3.2": - "integrity" "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - "resolved" "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" - "version" "1.4.1" - -"punycode@^2.1.0": - "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - "resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" - "version" "2.1.1" - -"pupa@^2.1.1": - "integrity" "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==" - "resolved" "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz" - "version" "2.1.1" - dependencies: - "escape-goat" "^2.0.0" - -"pure-color@^1.2.0": - "integrity" "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==" - "resolved" "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz" - "version" "1.3.0" - -"qs@6.10.3": - "integrity" "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==" - "resolved" "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz" - "version" "6.10.3" - dependencies: - "side-channel" "^1.0.4" - -"queue-microtask@^1.2.2": - "integrity" "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - "resolved" "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" - "version" "1.2.3" - -"queue@6.0.2": - "integrity" "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==" - "resolved" "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz" - "version" "6.0.2" - dependencies: - "inherits" "~2.0.3" - -"randombytes@^2.1.0": - "integrity" "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - "resolved" "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "safe-buffer" "^5.1.0" - -"range-parser@^1.2.1", "range-parser@~1.2.1": - "integrity" "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - "resolved" "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" - "version" "1.2.1" - -"range-parser@1.2.0": - "integrity" "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" - "resolved" "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz" - "version" "1.2.0" - -"raw-body@2.5.1": - "integrity" "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" - "resolved" "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz" - "version" "2.5.1" - dependencies: - "bytes" "3.1.2" - "http-errors" "2.0.0" - "iconv-lite" "0.4.24" - "unpipe" "1.0.0" - -"rc@^1.2.8": - "integrity" "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" - "resolved" "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz" - "version" "1.2.8" - dependencies: - "deep-extend" "^0.6.0" - "ini" "~1.3.0" - "minimist" "^1.2.0" - "strip-json-comments" "~2.0.1" - -"react-base16-styling@^0.6.0": - "integrity" "sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==" - "resolved" "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.6.0.tgz" - "version" "0.6.0" - dependencies: - "base16" "^1.0.0" - "lodash.curry" "^4.0.1" - "lodash.flow" "^3.3.0" - "pure-color" "^1.2.0" - -"react-dev-utils@^12.0.1": - "integrity" "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==" - "resolved" "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz" - "version" "12.0.1" - dependencies: - "@babel/code-frame" "^7.16.0" - "address" "^1.1.2" - "browserslist" "^4.18.1" - "chalk" "^4.1.2" - "cross-spawn" "^7.0.3" - "detect-port-alt" "^1.1.6" - "escape-string-regexp" "^4.0.0" - "filesize" "^8.0.6" - "find-up" "^5.0.0" - "fork-ts-checker-webpack-plugin" "^6.5.0" - "global-modules" "^2.0.0" - "globby" "^11.0.4" - "gzip-size" "^6.0.0" - "immer" "^9.0.7" - "is-root" "^2.1.0" - "loader-utils" "^3.2.0" - "open" "^8.4.0" - "pkg-up" "^3.1.0" - "prompts" "^2.4.2" - "react-error-overlay" "^6.0.11" - "recursive-readdir" "^2.2.2" - "shell-quote" "^1.7.3" - "strip-ansi" "^6.0.1" - "text-table" "^0.2.0" - -"react-dom@*", "react-dom@^16.6.0 || ^17.0.0 || ^18.0.0", "react-dom@^16.8.4 || ^17.0.0", "react-dom@^17.0.0 || ^16.3.0 || ^15.5.4", "react-dom@^17.0.2", "react-dom@>= 16.8.0 < 19.0.0": - "integrity" "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==" - "resolved" "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz" - "version" "17.0.2" - dependencies: - "loose-envify" "^1.1.0" - "object-assign" "^4.1.1" - "scheduler" "^0.20.2" - -"react-error-overlay@^6.0.11": - "integrity" "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" - "resolved" "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz" - "version" "6.0.11" - -"react-fast-compare@^3.2.0": - "integrity" "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" - "resolved" "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz" - "version" "3.2.0" - -"react-helmet-async@*", "react-helmet-async@^1.3.0": - "integrity" "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==" - "resolved" "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.3.0.tgz" - "version" "1.3.0" - dependencies: - "@babel/runtime" "^7.12.5" - "invariant" "^2.2.4" - "prop-types" "^15.7.2" - "react-fast-compare" "^3.2.0" - "shallowequal" "^1.1.0" - -"react-is@^16.6.0", "react-is@^16.7.0", "react-is@^16.8.1": - "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" - "version" "16.13.1" - -"react-json-view@^1.21.3": - "integrity" "sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==" - "resolved" "https://registry.npmjs.org/react-json-view/-/react-json-view-1.21.3.tgz" - "version" "1.21.3" - dependencies: - "flux" "^4.0.1" - "react-base16-styling" "^0.6.0" - "react-lifecycles-compat" "^3.0.4" - "react-textarea-autosize" "^8.3.2" - -"react-lifecycles-compat@^3.0.4": - "integrity" "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - "resolved" "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz" - "version" "3.0.4" - -"react-loadable-ssr-addon-v5-slorber@^1.0.1": - "integrity" "sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==" - "resolved" "https://registry.npmjs.org/react-loadable-ssr-addon-v5-slorber/-/react-loadable-ssr-addon-v5-slorber-1.0.1.tgz" - "version" "1.0.1" - dependencies: - "@babel/runtime" "^7.10.3" - -"react-loadable@*", "react-loadable@npm:@docusaurus/react-loadable@5.5.2": - "integrity" "sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==" - "resolved" "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz" - "version" "5.5.2" - dependencies: - "@types/react" "*" - "prop-types" "^15.6.2" - -"react-router-config@^5.1.1": - "integrity" "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==" - "resolved" "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "@babel/runtime" "^7.1.2" - -"react-router-dom@^5.3.3": - "integrity" "sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng==" - "resolved" "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.3.tgz" - "version" "5.3.3" - dependencies: - "@babel/runtime" "^7.12.13" - "history" "^4.9.0" - "loose-envify" "^1.3.1" - "prop-types" "^15.6.2" - "react-router" "5.3.3" - "tiny-invariant" "^1.0.2" - "tiny-warning" "^1.0.0" - -"react-router@^5.3.3", "react-router@>=5", "react-router@5.3.3": - "integrity" "sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w==" - "resolved" "https://registry.npmjs.org/react-router/-/react-router-5.3.3.tgz" - "version" "5.3.3" - dependencies: - "@babel/runtime" "^7.12.13" - "history" "^4.9.0" - "hoist-non-react-statics" "^3.1.0" - "loose-envify" "^1.3.1" - "mini-create-react-context" "^0.4.0" - "path-to-regexp" "^1.7.0" - "prop-types" "^15.6.2" - "react-is" "^16.6.0" - "tiny-invariant" "^1.0.2" - "tiny-warning" "^1.0.0" - -"react-textarea-autosize@^8.3.2": - "integrity" "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==" - "resolved" "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz" - "version" "8.5.3" - dependencies: - "@babel/runtime" "^7.20.13" - "use-composed-ref" "^1.3.0" - "use-latest" "^1.2.1" - -"react@*", "react@^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", "react@^15.0.2 || ^16.0.0 || ^17.0.0", "react@^16.13.1 || ^17.0.0", "react@^16.6.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^16.8.4 || ^17.0.0", "react@^17.0.0 || ^16.3.0 || ^15.5.4", "react@^17.0.2", "react@>= 16.8.0 < 19.0.0", "react@>=0.14.9", "react@>=15", "react@17.0.2": - "integrity" "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==" - "resolved" "https://registry.npmjs.org/react/-/react-17.0.2.tgz" - "version" "17.0.2" - dependencies: - "loose-envify" "^1.1.0" - "object-assign" "^4.1.1" - -"readable-stream@^2.0.1": - "integrity" "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" - "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" - "version" "2.3.7" - dependencies: - "core-util-is" "~1.0.0" - "inherits" "~2.0.3" - "isarray" "~1.0.0" - "process-nextick-args" "~2.0.0" - "safe-buffer" "~5.1.1" - "string_decoder" "~1.1.1" - "util-deprecate" "~1.0.1" - -"readable-stream@^3.0.6": - "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" - "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" - "version" "3.6.0" - dependencies: - "inherits" "^2.0.3" - "string_decoder" "^1.1.1" - "util-deprecate" "^1.0.1" - -"readdirp@~3.6.0": - "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" - "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" - "version" "3.6.0" - dependencies: - "picomatch" "^2.2.1" - -"reading-time@^1.5.0": - "integrity" "sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==" - "resolved" "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz" - "version" "1.5.0" - -"rechoir@^0.6.2": - "integrity" "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=" - "resolved" "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz" - "version" "0.6.2" - dependencies: - "resolve" "^1.1.6" - -"recursive-readdir@^2.2.2": - "integrity" "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==" - "resolved" "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz" - "version" "2.2.2" - dependencies: - "minimatch" "3.0.4" - -"regenerate-unicode-properties@^10.0.1": - "integrity" "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==" - "resolved" "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz" - "version" "10.0.1" - dependencies: - "regenerate" "^1.4.2" - -"regenerate@^1.4.2": - "integrity" "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" - "version" "1.4.2" - -"regenerator-runtime@^0.13.11", "regenerator-runtime@^0.13.4": - "integrity" "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" - "version" "0.13.11" - -"regenerator-transform@^0.15.0": - "integrity" "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==" - "resolved" "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz" - "version" "0.15.0" - dependencies: - "@babel/runtime" "^7.8.4" - -"regexpu-core@^5.1.0": - "integrity" "sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==" - "resolved" "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "regenerate" "^1.4.2" - "regenerate-unicode-properties" "^10.0.1" - "regjsgen" "^0.6.0" - "regjsparser" "^0.8.2" - "unicode-match-property-ecmascript" "^2.0.0" - "unicode-match-property-value-ecmascript" "^2.0.0" - -"registry-auth-token@^4.0.0": - "integrity" "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==" - "resolved" "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz" - "version" "4.2.1" - dependencies: - "rc" "^1.2.8" - -"registry-url@^5.0.0": - "integrity" "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==" - "resolved" "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "rc" "^1.2.8" - -"regjsgen@^0.6.0": - "integrity" "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==" - "resolved" "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz" - "version" "0.6.0" - -"regjsparser@^0.8.2": - "integrity" "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==" - "resolved" "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz" - "version" "0.8.4" - dependencies: - "jsesc" "~0.5.0" - -"relateurl@^0.2.7": - "integrity" "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" - "resolved" "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz" - "version" "0.2.7" - -"remark-emoji@^2.2.0": - "integrity" "sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==" - "resolved" "https://registry.npmjs.org/remark-emoji/-/remark-emoji-2.2.0.tgz" - "version" "2.2.0" - dependencies: - "emoticon" "^3.2.0" - "node-emoji" "^1.10.0" - "unist-util-visit" "^2.0.3" - -"remark-footnotes@2.0.0": - "integrity" "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==" - "resolved" "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-2.0.0.tgz" - "version" "2.0.0" - -"remark-mdx@1.6.22": - "integrity" "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==" - "resolved" "https://registry.npmjs.org/remark-mdx/-/remark-mdx-1.6.22.tgz" - "version" "1.6.22" - dependencies: - "@babel/core" "7.12.9" - "@babel/helper-plugin-utils" "7.10.4" - "@babel/plugin-proposal-object-rest-spread" "7.12.1" - "@babel/plugin-syntax-jsx" "7.12.1" - "@mdx-js/util" "1.6.22" - "is-alphabetical" "1.0.4" - "remark-parse" "8.0.3" - "unified" "9.2.0" - -"remark-parse@8.0.3": - "integrity" "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==" - "resolved" "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz" - "version" "8.0.3" - dependencies: - "ccount" "^1.0.0" - "collapse-white-space" "^1.0.2" - "is-alphabetical" "^1.0.0" - "is-decimal" "^1.0.0" - "is-whitespace-character" "^1.0.0" - "is-word-character" "^1.0.0" - "markdown-escapes" "^1.0.0" - "parse-entities" "^2.0.0" - "repeat-string" "^1.5.4" - "state-toggle" "^1.0.0" - "trim" "0.0.1" - "trim-trailing-lines" "^1.0.0" - "unherit" "^1.0.4" - "unist-util-remove-position" "^2.0.0" - "vfile-location" "^3.0.0" - "xtend" "^4.0.1" - -"remark-squeeze-paragraphs@4.0.0": - "integrity" "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==" - "resolved" "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "mdast-squeeze-paragraphs" "^4.0.0" - -"renderkid@^3.0.0": - "integrity" "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==" - "resolved" "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "css-select" "^4.1.3" - "dom-converter" "^0.2.0" - "htmlparser2" "^6.1.0" - "lodash" "^4.17.21" - "strip-ansi" "^6.0.1" - -"repeat-string@^1.5.4": - "integrity" "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" - "resolved" "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" - "version" "1.6.1" - -"require-from-string@^2.0.2": - "integrity" "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - "resolved" "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" - "version" "2.0.2" - -"require-like@>= 0.1.1": - "integrity" "sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==" - "resolved" "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz" - "version" "0.1.2" - -"requires-port@^1.0.0": - "integrity" "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - "resolved" "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" - "version" "1.0.0" - -"resolve-from@^4.0.0": - "integrity" "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" - "version" "4.0.0" - -"resolve-pathname@^3.0.0": - "integrity" "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" - "resolved" "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz" - "version" "3.0.0" - -"resolve@^1.1.6", "resolve@^1.14.2", "resolve@^1.3.2": - "integrity" "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==" - "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz" - "version" "1.22.1" - dependencies: - "is-core-module" "^2.9.0" - "path-parse" "^1.0.7" - "supports-preserve-symlinks-flag" "^1.0.0" - -"responselike@^1.0.2": - "integrity" "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=" - "resolved" "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz" - "version" "1.0.2" - dependencies: - "lowercase-keys" "^1.0.0" - -"retry@^0.13.1": - "integrity" "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - "resolved" "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz" - "version" "0.13.1" - -"reusify@^1.0.4": - "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - "resolved" "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" - "version" "1.0.4" - -"rimraf@^3.0.2": - "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" - "version" "3.0.2" - dependencies: - "glob" "^7.1.3" - -"rtl-detect@^1.0.4": - "integrity" "sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==" - "resolved" "https://registry.npmjs.org/rtl-detect/-/rtl-detect-1.0.4.tgz" - "version" "1.0.4" - -"rtlcss@^3.5.0": - "integrity" "sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==" - "resolved" "https://registry.npmjs.org/rtlcss/-/rtlcss-3.5.0.tgz" - "version" "3.5.0" - dependencies: - "find-up" "^5.0.0" - "picocolors" "^1.0.0" - "postcss" "^8.3.11" - "strip-json-comments" "^3.1.1" - -"run-parallel@^1.1.9": - "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - "resolved" "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" - "version" "1.2.0" - dependencies: - "queue-microtask" "^1.2.2" - -"rxjs@^7.5.4": - "integrity" "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==" - "resolved" "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz" - "version" "7.5.5" - dependencies: - "tslib" "^2.1.0" - -"safe-buffer@^5.1.0": - "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" - "version" "5.2.1" - -"safe-buffer@>=5.1.0", "safe-buffer@~5.1.0", "safe-buffer@~5.1.1", "safe-buffer@5.1.2": - "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" - "version" "5.1.2" - -"safe-buffer@~5.2.0": - "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" - "version" "5.2.1" - -"safe-buffer@5.2.1": - "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" - "version" "5.2.1" - -"safer-buffer@>= 2.1.2 < 3": - "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - "resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" - "version" "2.1.2" - -"sax@^1.2.4": - "integrity" "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - "resolved" "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" - "version" "1.2.4" - -"scheduler@^0.20.2": - "integrity" "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==" - "resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz" - "version" "0.20.2" - dependencies: - "loose-envify" "^1.1.0" - "object-assign" "^4.1.1" - -"schema-utils@^2.6.5": - "integrity" "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" - "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" - "version" "2.7.1" - dependencies: - "@types/json-schema" "^7.0.5" - "ajv" "^6.12.4" - "ajv-keywords" "^3.5.2" - -"schema-utils@^3.0.0": - "integrity" "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==" - "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "@types/json-schema" "^7.0.6" - "ajv" "^6.12.5" - "ajv-keywords" "^3.5.2" - -"schema-utils@^3.1.0": - "integrity" "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" - "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" - "version" "3.1.1" - dependencies: - "@types/json-schema" "^7.0.8" - "ajv" "^6.12.5" - "ajv-keywords" "^3.5.2" - -"schema-utils@^3.1.1": - "integrity" "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==" - "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz" - "version" "3.1.1" - dependencies: - "@types/json-schema" "^7.0.8" - "ajv" "^6.12.5" - "ajv-keywords" "^3.5.2" - -"schema-utils@^4.0.0": - "integrity" "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==" - "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz" - "version" "4.0.0" - dependencies: - "@types/json-schema" "^7.0.9" - "ajv" "^8.8.0" - "ajv-formats" "^2.1.1" - "ajv-keywords" "^5.0.0" - -"schema-utils@2.7.0": - "integrity" "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==" - "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz" - "version" "2.7.0" - dependencies: - "@types/json-schema" "^7.0.4" - "ajv" "^6.12.2" - "ajv-keywords" "^3.4.1" - -"search-insights@>= 1 < 3": - "integrity" "sha512-bkWW9nIHOFkLwjQ1xqVaMbjjO5vhP26ERsH9Y3pKr8imthofEFIxlnOabkmGcw6ksRj9jWidcI65vvjJH/nTGg==" - "resolved" "https://registry.npmjs.org/search-insights/-/search-insights-2.9.0.tgz" - "version" "2.9.0" - -"section-matter@^1.0.0": - "integrity" "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==" - "resolved" "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz" - "version" "1.0.0" - dependencies: - "extend-shallow" "^2.0.1" - "kind-of" "^6.0.0" - -"select-hose@^2.0.0": - "integrity" "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" - "resolved" "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz" - "version" "2.0.0" - -"selfsigned@^2.0.1": - "integrity" "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==" - "resolved" "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "node-forge" "^1" - -"semver-diff@^3.1.1": - "integrity" "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==" - "resolved" "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz" - "version" "3.1.1" - dependencies: - "semver" "^6.3.0" - -"semver@^5.4.1": - "integrity" "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" - "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" - "version" "5.7.2" - -"semver@^6.0.0", "semver@^6.1.1", "semver@^6.1.2", "semver@^6.2.0", "semver@^6.3.0": - "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" - "version" "6.3.0" - -"semver@^7.3.2": - "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" - "version" "7.3.5" - dependencies: - "lru-cache" "^6.0.0" - -"semver@^7.3.4": - "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" - "version" "7.3.5" - dependencies: - "lru-cache" "^6.0.0" - -"semver@^7.3.5": - "integrity" "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==" - "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" - "version" "7.3.5" - dependencies: - "lru-cache" "^6.0.0" - -"semver@^7.3.7": - "integrity" "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==" - "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz" - "version" "7.3.7" - dependencies: - "lru-cache" "^6.0.0" - -"semver@7.0.0": - "integrity" "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - "resolved" "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" - "version" "7.0.0" - -"send@0.18.0": - "integrity" "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" - "resolved" "https://registry.npmjs.org/send/-/send-0.18.0.tgz" - "version" "0.18.0" - dependencies: - "debug" "2.6.9" - "depd" "2.0.0" - "destroy" "1.2.0" - "encodeurl" "~1.0.2" - "escape-html" "~1.0.3" - "etag" "~1.8.1" - "fresh" "0.5.2" - "http-errors" "2.0.0" - "mime" "1.6.0" - "ms" "2.1.3" - "on-finished" "2.4.1" - "range-parser" "~1.2.1" - "statuses" "2.0.1" - -"serialize-javascript@^6.0.0": - "integrity" "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==" - "resolved" "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "randombytes" "^2.1.0" - -"serve-handler@^6.1.3": - "integrity" "sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==" - "resolved" "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.3.tgz" - "version" "6.1.3" - dependencies: - "bytes" "3.0.0" - "content-disposition" "0.5.2" - "fast-url-parser" "1.1.3" - "mime-types" "2.1.18" - "minimatch" "3.0.4" - "path-is-inside" "1.0.2" - "path-to-regexp" "2.2.1" - "range-parser" "1.2.0" - -"serve-index@^1.9.1": - "integrity" "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" - "resolved" "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz" - "version" "1.9.1" - dependencies: - "accepts" "~1.3.4" - "batch" "0.6.1" - "debug" "2.6.9" - "escape-html" "~1.0.3" - "http-errors" "~1.6.2" - "mime-types" "~2.1.17" - "parseurl" "~1.3.2" - -"serve-static@1.15.0": - "integrity" "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" - "resolved" "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz" - "version" "1.15.0" - dependencies: - "encodeurl" "~1.0.2" - "escape-html" "~1.0.3" - "parseurl" "~1.3.3" - "send" "0.18.0" - -"setimmediate@^1.0.5": - "integrity" "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - "resolved" "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" - "version" "1.0.5" - -"setprototypeof@1.1.0": - "integrity" "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" - "version" "1.1.0" - -"setprototypeof@1.2.0": - "integrity" "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" - "version" "1.2.0" - -"shallow-clone@^3.0.0": - "integrity" "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - "resolved" "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" - "version" "3.0.1" - dependencies: - "kind-of" "^6.0.2" - -"shallowequal@^1.1.0": - "integrity" "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" - "resolved" "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz" - "version" "1.1.0" - -"shebang-command@^2.0.0": - "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "shebang-regex" "^3.0.0" - -"shebang-regex@^3.0.0": - "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" - "version" "3.0.0" - -"shell-quote@^1.7.3": - "integrity" "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==" - "resolved" "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz" - "version" "1.7.3" - -"shelljs@^0.8.5": - "integrity" "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==" - "resolved" "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz" - "version" "0.8.5" - dependencies: - "glob" "^7.0.0" - "interpret" "^1.0.0" - "rechoir" "^0.6.2" - -"side-channel@^1.0.4": - "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" - "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" - "version" "1.0.4" - dependencies: - "call-bind" "^1.0.0" - "get-intrinsic" "^1.0.2" - "object-inspect" "^1.9.0" - -"signal-exit@^3.0.2", "signal-exit@^3.0.3": - "integrity" "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" - "resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz" - "version" "3.0.3" - -"sirv@^1.0.7": - "integrity" "sha512-SR36i3/LSWja7AJNRBz4fF/Xjpn7lQFI30tZ434dIy+bitLYSP+ZEenHg36i23V2SGEz+kqjksg0uOGZ5LPiqg==" - "resolved" "https://registry.npmjs.org/sirv/-/sirv-1.0.11.tgz" - "version" "1.0.11" - dependencies: - "@polka/url" "^1.0.0-next.9" - "mime" "^2.3.1" - "totalist" "^1.0.0" - -"sisteransi@^1.0.5": - "integrity" "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - "resolved" "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" - "version" "1.0.5" - -"sitemap@^7.1.1": - "integrity" "sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==" - "resolved" "https://registry.npmjs.org/sitemap/-/sitemap-7.1.1.tgz" - "version" "7.1.1" - dependencies: - "@types/node" "^17.0.5" - "@types/sax" "^1.2.1" - "arg" "^5.0.0" - "sax" "^1.2.4" - -"slash@^3.0.0": - "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - "resolved" "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" - "version" "3.0.0" - -"slash@^4.0.0": - "integrity" "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - "resolved" "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz" - "version" "4.0.0" - -"sockjs@^0.3.24": - "integrity" "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" - "resolved" "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz" - "version" "0.3.24" - dependencies: - "faye-websocket" "^0.11.3" - "uuid" "^8.3.2" - "websocket-driver" "^0.7.4" - -"sort-css-media-queries@2.1.0": - "integrity" "sha512-IeWvo8NkNiY2vVYdPa27MCQiR0MN0M80johAYFVxWWXQ44KU84WNxjslwBHmc/7ZL2ccwkM7/e6S5aiKZXm7jA==" - "resolved" "https://registry.npmjs.org/sort-css-media-queries/-/sort-css-media-queries-2.1.0.tgz" - "version" "2.1.0" - -"source-map-js@^1.0.2": - "integrity" "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - "resolved" "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" - "version" "1.0.2" - -"source-map-support@~0.5.20": - "integrity" "sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==" - "resolved" "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz" - "version" "0.5.20" - dependencies: - "buffer-from" "^1.0.0" - "source-map" "^0.6.0" - -"source-map@^0.5.0": - "integrity" "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" - "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" - "version" "0.5.7" - -"source-map@^0.6.0", "source-map@^0.6.1", "source-map@~0.6.0": - "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" - "version" "0.6.1" - -"space-separated-tokens@^1.0.0": - "integrity" "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==" - "resolved" "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz" - "version" "1.1.5" - -"spdy-transport@^3.0.0": - "integrity" "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" - "resolved" "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "debug" "^4.1.0" - "detect-node" "^2.0.4" - "hpack.js" "^2.1.6" - "obuf" "^1.1.2" - "readable-stream" "^3.0.6" - "wbuf" "^1.7.3" - -"spdy@^4.0.2": - "integrity" "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" - "resolved" "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz" - "version" "4.0.2" - dependencies: - "debug" "^4.1.0" - "handle-thing" "^2.0.0" - "http-deceiver" "^1.2.7" - "select-hose" "^2.0.0" - "spdy-transport" "^3.0.0" - -"sprintf-js@~1.0.2": - "integrity" "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - "resolved" "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" - "version" "1.0.3" - -"stable@^0.1.8": - "integrity" "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" - "resolved" "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz" - "version" "0.1.8" - -"state-toggle@^1.0.0": - "integrity" "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==" - "resolved" "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz" - "version" "1.0.3" - -"statuses@>= 1.4.0 < 2": - "integrity" "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - "resolved" "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" - "version" "1.5.0" - -"statuses@2.0.1": - "integrity" "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - "resolved" "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" - "version" "2.0.1" - -"std-env@^3.0.1": - "integrity" "sha512-mC1Ps9l77/97qeOZc+HrOL7TIaOboHqMZ24dGVQrlxFcpPpfCHpH+qfUT7Dz+6mlG8+JPA1KfBQo19iC/+Ngcw==" - "resolved" "https://registry.npmjs.org/std-env/-/std-env-3.0.1.tgz" - "version" "3.0.1" - -"string_decoder@^1.1.1": - "integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" - "version" "1.3.0" - dependencies: - "safe-buffer" "~5.2.0" - -"string_decoder@~1.1.1": - "integrity" "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" - "version" "1.1.1" - dependencies: - "safe-buffer" "~5.1.0" - -"string-width@^4.0.0", "string-width@^4.1.0", "string-width@^4.2.0": - "integrity" "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==" - "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz" - "version" "4.2.2" - dependencies: - "emoji-regex" "^8.0.0" - "is-fullwidth-code-point" "^3.0.0" - "strip-ansi" "^6.0.0" - -"string-width@^5.0.1": - "integrity" "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - "resolved" "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" - "version" "5.1.2" - dependencies: - "eastasianwidth" "^0.2.0" - "emoji-regex" "^9.2.2" - "strip-ansi" "^7.0.1" - -"stringify-object@^3.3.0": - "integrity" "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" - "resolved" "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz" - "version" "3.3.0" - dependencies: - "get-own-enumerable-property-symbols" "^3.0.0" - "is-obj" "^1.0.1" - "is-regexp" "^1.0.0" - -"strip-ansi@^6.0.0": - "integrity" "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==" - "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz" - "version" "6.0.0" - dependencies: - "ansi-regex" "^5.0.0" - -"strip-ansi@^6.0.1": - "integrity" "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" - "version" "6.0.1" - dependencies: - "ansi-regex" "^5.0.1" - -"strip-ansi@^7.0.1": - "integrity" "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==" - "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz" - "version" "7.0.1" - dependencies: - "ansi-regex" "^6.0.1" - -"strip-bom-string@^1.0.0": - "integrity" "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==" - "resolved" "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz" - "version" "1.0.0" - -"strip-final-newline@^2.0.0": - "integrity" "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - "resolved" "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" - "version" "2.0.0" - -"strip-json-comments@^3.1.1": - "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" - "version" "3.1.1" - -"strip-json-comments@~2.0.1": - "integrity" "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" - "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz" - "version" "2.0.1" - -"style-to-object@^0.3.0", "style-to-object@0.3.0": - "integrity" "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==" - "resolved" "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz" - "version" "0.3.0" - dependencies: - "inline-style-parser" "0.1.1" - -"stylehacks@^5.1.1": - "integrity" "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==" - "resolved" "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz" - "version" "5.1.1" - dependencies: - "browserslist" "^4.21.4" - "postcss-selector-parser" "^6.0.4" - -"supports-color@^5.3.0": - "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" - "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" - "version" "5.5.0" - dependencies: - "has-flag" "^3.0.0" - -"supports-color@^7.1.0": - "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" - "version" "7.2.0" - dependencies: - "has-flag" "^4.0.0" - -"supports-color@^8.0.0": - "integrity" "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" - "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" - "version" "8.1.1" - dependencies: - "has-flag" "^4.0.0" - -"supports-preserve-symlinks-flag@^1.0.0": - "integrity" "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - "resolved" "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" - "version" "1.0.0" - -"svg-parser@^2.0.2": - "integrity" "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" - "resolved" "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz" - "version" "2.0.4" - -"svgo@^2.5.0", "svgo@^2.7.0": - "integrity" "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" - "resolved" "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz" - "version" "2.8.0" - dependencies: - "@trysound/sax" "0.2.0" - "commander" "^7.2.0" - "css-select" "^4.1.3" - "css-tree" "^1.1.3" - "csso" "^4.2.0" - "picocolors" "^1.0.0" - "stable" "^0.1.8" - -"tapable@^1.0.0": - "integrity" "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" - "resolved" "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz" - "version" "1.1.3" - -"tapable@^2.0.0", "tapable@^2.1.1", "tapable@^2.2.0": - "integrity" "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - "resolved" "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" - "version" "2.2.1" - -"terser-webpack-plugin@^5.1.3", "terser-webpack-plugin@^5.3.3": - "integrity" "sha512-AOEDLDxD2zylUGf/wxHxklEkOe2/r+seuyOWujejFrIxHf11brA1/dWQNIgXa1c6/Wkxgu7zvv0JhOWfc2ELEA==" - "resolved" "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.5.tgz" - "version" "5.3.5" - dependencies: - "@jridgewell/trace-mapping" "^0.3.14" - "jest-worker" "^27.4.5" - "schema-utils" "^3.1.1" - "serialize-javascript" "^6.0.0" - "terser" "^5.14.1" - -"terser@^5.10.0", "terser@^5.14.1": - "integrity" "sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==" - "resolved" "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz" - "version" "5.15.0" - dependencies: - "@jridgewell/source-map" "^0.3.2" - "acorn" "^8.5.0" - "commander" "^2.20.0" - "source-map-support" "~0.5.20" - -"text-table@^0.2.0": - "integrity" "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" - "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" - "version" "0.2.0" - -"thunky@^1.0.2": - "integrity" "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" - "resolved" "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz" - "version" "1.1.0" - -"tiny-invariant@^1.0.2": - "integrity" "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" - "resolved" "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz" - "version" "1.1.0" - -"tiny-warning@^1.0.0", "tiny-warning@^1.0.3": - "integrity" "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" - "resolved" "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz" - "version" "1.0.3" - -"to-fast-properties@^2.0.0": - "integrity" "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" - "resolved" "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" - "version" "2.0.0" - -"to-readable-stream@^1.0.0": - "integrity" "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" - "resolved" "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz" - "version" "1.0.0" - -"to-regex-range@^5.0.1": - "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" - "version" "5.0.1" - dependencies: - "is-number" "^7.0.0" - -"toidentifier@1.0.1": - "integrity" "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - "resolved" "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" - "version" "1.0.1" - -"totalist@^1.0.0": - "integrity" "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==" - "resolved" "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz" - "version" "1.1.0" - -"tr46@~0.0.3": - "integrity" "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - "resolved" "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" - "version" "0.0.3" - -"trim-trailing-lines@^1.0.0": - "integrity" "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==" - "resolved" "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz" - "version" "1.1.4" - -"trim@0.0.1": - "integrity" "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==" - "resolved" "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz" - "version" "0.0.1" - -"trough@^1.0.0": - "integrity" "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" - "resolved" "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz" - "version" "1.0.5" - -"tslib@^2.0.3", "tslib@^2.1.0", "tslib@^2.4.0": - "integrity" "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz" - "version" "2.4.0" - -"type-fest@^0.20.2": - "integrity" "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" - "version" "0.20.2" - -"type-fest@^2.5.0": - "integrity" "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==" - "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz" - "version" "2.19.0" - -"type-is@~1.6.18": - "integrity" "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" - "resolved" "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" - "version" "1.6.18" - dependencies: - "media-typer" "0.3.0" - "mime-types" "~2.1.24" - -"typedarray-to-buffer@^3.1.5": - "integrity" "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" - "resolved" "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" - "version" "3.1.5" - dependencies: - "is-typedarray" "^1.0.0" - -"typescript@>= 2.7": - "integrity" "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==" - "resolved" "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz" - "version" "4.7.4" - -"ua-parser-js@^1.0.35": - "integrity" "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" - "resolved" "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz" - "version" "1.0.37" - -"unherit@^1.0.4": - "integrity" "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==" - "resolved" "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz" - "version" "1.1.3" - dependencies: - "inherits" "^2.0.0" - "xtend" "^4.0.0" - -"unicode-canonical-property-names-ecmascript@^2.0.0": - "integrity" "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - "resolved" "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz" - "version" "2.0.0" - -"unicode-match-property-ecmascript@^2.0.0": - "integrity" "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" - "resolved" "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "unicode-canonical-property-names-ecmascript" "^2.0.0" - "unicode-property-aliases-ecmascript" "^2.0.0" - -"unicode-match-property-value-ecmascript@^2.0.0": - "integrity" "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==" - "resolved" "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz" - "version" "2.0.0" - -"unicode-property-aliases-ecmascript@^2.0.0": - "integrity" "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==" - "resolved" "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz" - "version" "2.0.0" - -"unified@^9.2.2": - "integrity" "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==" - "resolved" "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz" - "version" "9.2.2" - dependencies: - "bail" "^1.0.0" - "extend" "^3.0.0" - "is-buffer" "^2.0.0" - "is-plain-obj" "^2.0.0" - "trough" "^1.0.0" - "vfile" "^4.0.0" - -"unified@9.2.0": - "integrity" "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==" - "resolved" "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz" - "version" "9.2.0" - dependencies: - "bail" "^1.0.0" - "extend" "^3.0.0" - "is-buffer" "^2.0.0" - "is-plain-obj" "^2.0.0" - "trough" "^1.0.0" - "vfile" "^4.0.0" - -"unique-string@^2.0.0": - "integrity" "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" - "resolved" "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz" - "version" "2.0.0" - dependencies: - "crypto-random-string" "^2.0.0" - -"unist-builder@^2.0.0", "unist-builder@2.0.3": - "integrity" "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==" - "resolved" "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz" - "version" "2.0.3" - -"unist-util-generated@^1.0.0": - "integrity" "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==" - "resolved" "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz" - "version" "1.1.6" - -"unist-util-is@^4.0.0": - "integrity" "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==" - "resolved" "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz" - "version" "4.1.0" - -"unist-util-position@^3.0.0": - "integrity" "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==" - "resolved" "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz" - "version" "3.1.0" - -"unist-util-remove-position@^2.0.0": - "integrity" "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==" - "resolved" "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz" - "version" "2.0.1" - dependencies: - "unist-util-visit" "^2.0.0" - -"unist-util-remove@^2.0.0": - "integrity" "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==" - "resolved" "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.1.0.tgz" - "version" "2.1.0" - dependencies: - "unist-util-is" "^4.0.0" - -"unist-util-stringify-position@^2.0.0": - "integrity" "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==" - "resolved" "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz" - "version" "2.0.3" - dependencies: - "@types/unist" "^2.0.2" - -"unist-util-visit-parents@^3.0.0": - "integrity" "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==" - "resolved" "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz" - "version" "3.1.1" - dependencies: - "@types/unist" "^2.0.0" - "unist-util-is" "^4.0.0" - -"unist-util-visit@^2.0.0", "unist-util-visit@^2.0.3", "unist-util-visit@2.0.3": - "integrity" "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==" - "resolved" "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz" - "version" "2.0.3" - dependencies: - "@types/unist" "^2.0.0" - "unist-util-is" "^4.0.0" - "unist-util-visit-parents" "^3.0.0" - -"universalify@^2.0.0": - "integrity" "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" - "resolved" "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz" - "version" "2.0.0" - -"unpipe@~1.0.0", "unpipe@1.0.0": - "integrity" "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - "resolved" "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" - "version" "1.0.0" - -"update-browserslist-db@^1.0.11": - "integrity" "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==" - "resolved" "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz" - "version" "1.0.11" - dependencies: - "escalade" "^3.1.1" - "picocolors" "^1.0.0" - -"update-notifier@^5.1.0": - "integrity" "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==" - "resolved" "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz" - "version" "5.1.0" - dependencies: - "boxen" "^5.0.0" - "chalk" "^4.1.0" - "configstore" "^5.0.1" - "has-yarn" "^2.1.0" - "import-lazy" "^2.1.0" - "is-ci" "^2.0.0" - "is-installed-globally" "^0.4.0" - "is-npm" "^5.0.0" - "is-yarn-global" "^0.3.0" - "latest-version" "^5.1.0" - "pupa" "^2.1.1" - "semver" "^7.3.4" - "semver-diff" "^3.1.1" - "xdg-basedir" "^4.0.0" - -"uri-js@^4.2.2": - "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" - "version" "4.4.1" - dependencies: - "punycode" "^2.1.0" - -"url-loader@^4.1.1": - "integrity" "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==" - "resolved" "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz" - "version" "4.1.1" - dependencies: - "loader-utils" "^2.0.0" - "mime-types" "^2.1.27" - "schema-utils" "^3.0.0" - -"url-parse-lax@^3.0.0": - "integrity" "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=" - "resolved" "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz" - "version" "3.0.0" - dependencies: - "prepend-http" "^2.0.0" - -"use-composed-ref@^1.3.0": - "integrity" "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==" - "resolved" "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz" - "version" "1.3.0" - -"use-isomorphic-layout-effect@^1.1.1": - "integrity" "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==" - "resolved" "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz" - "version" "1.1.2" - -"use-latest@^1.2.1": - "integrity" "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==" - "resolved" "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz" - "version" "1.2.1" - dependencies: - "use-isomorphic-layout-effect" "^1.1.1" - -"use-sync-external-store@^1.2.0": - "integrity" "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==" - "resolved" "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz" - "version" "1.2.0" - -"util-deprecate@^1.0.1", "util-deprecate@^1.0.2", "util-deprecate@~1.0.1": - "integrity" "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - "resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" - "version" "1.0.2" - -"utila@~0.4": - "integrity" "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" - "resolved" "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz" - "version" "0.4.0" - -"utility-types@^3.10.0": - "integrity" "sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==" - "resolved" "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz" - "version" "3.10.0" - -"utils-merge@1.0.1": - "integrity" "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" - "resolved" "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" - "version" "1.0.1" - -"uuid@^8.3.2": - "integrity" "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - "resolved" "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" - "version" "8.3.2" - -"value-equal@^1.0.1": - "integrity" "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" - "resolved" "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz" - "version" "1.0.1" - -"vary@~1.1.2": - "integrity" "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - "resolved" "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" - "version" "1.1.2" - -"vfile-location@^3.0.0", "vfile-location@^3.2.0": - "integrity" "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==" - "resolved" "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz" - "version" "3.2.0" - -"vfile-message@^2.0.0": - "integrity" "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==" - "resolved" "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz" - "version" "2.0.4" - dependencies: - "@types/unist" "^2.0.0" - "unist-util-stringify-position" "^2.0.0" - -"vfile@^4.0.0": - "integrity" "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==" - "resolved" "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz" - "version" "4.2.1" - dependencies: - "@types/unist" "^2.0.0" - "is-buffer" "^2.0.0" - "unist-util-stringify-position" "^2.0.0" - "vfile-message" "^2.0.0" - -"wait-on@^6.0.1": - "integrity" "sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==" - "resolved" "https://registry.npmjs.org/wait-on/-/wait-on-6.0.1.tgz" - "version" "6.0.1" - dependencies: - "axios" "^0.25.0" - "joi" "^17.6.0" - "lodash" "^4.17.21" - "minimist" "^1.2.5" - "rxjs" "^7.5.4" - -"watchpack@^2.4.0": - "integrity" "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" - "resolved" "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz" - "version" "2.4.0" - dependencies: - "glob-to-regexp" "^0.4.1" - "graceful-fs" "^4.1.2" - -"wbuf@^1.1.0", "wbuf@^1.7.3": - "integrity" "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" - "resolved" "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz" - "version" "1.7.3" - dependencies: - "minimalistic-assert" "^1.0.0" - -"web-namespaces@^1.0.0": - "integrity" "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==" - "resolved" "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz" - "version" "1.1.4" - -"webidl-conversions@^3.0.0": - "integrity" "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" - "version" "3.0.1" - -"webpack-bundle-analyzer@^4.5.0": - "integrity" "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==" - "resolved" "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz" - "version" "4.5.0" - dependencies: - "acorn" "^8.0.4" - "acorn-walk" "^8.0.0" - "chalk" "^4.1.0" - "commander" "^7.2.0" - "gzip-size" "^6.0.0" - "lodash" "^4.17.20" - "opener" "^1.5.2" - "sirv" "^1.0.7" - "ws" "^7.3.1" - -"webpack-dev-middleware@^5.3.1": - "integrity" "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" - "resolved" "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz" - "version" "5.3.3" - dependencies: - "colorette" "^2.0.10" - "memfs" "^3.4.3" - "mime-types" "^2.1.31" - "range-parser" "^1.2.1" - "schema-utils" "^4.0.0" - -"webpack-dev-server@^4.9.3": - "integrity" "sha512-7dezwAs+k6yXVFZ+MaL8VnE+APobiO3zvpp3rBHe/HmWQ+avwh0Q3d0xxacOiBybZZ3syTZw9HXzpa3YNbAZDQ==" - "resolved" "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.10.0.tgz" - "version" "4.10.0" - dependencies: - "@types/bonjour" "^3.5.9" - "@types/connect-history-api-fallback" "^1.3.5" - "@types/express" "^4.17.13" - "@types/serve-index" "^1.9.1" - "@types/serve-static" "^1.13.10" - "@types/sockjs" "^0.3.33" - "@types/ws" "^8.5.1" - "ansi-html-community" "^0.0.8" - "bonjour-service" "^1.0.11" - "chokidar" "^3.5.3" - "colorette" "^2.0.10" - "compression" "^1.7.4" - "connect-history-api-fallback" "^2.0.0" - "default-gateway" "^6.0.3" - "express" "^4.17.3" - "graceful-fs" "^4.2.6" - "html-entities" "^2.3.2" - "http-proxy-middleware" "^2.0.3" - "ipaddr.js" "^2.0.1" - "open" "^8.0.9" - "p-retry" "^4.5.0" - "rimraf" "^3.0.2" - "schema-utils" "^4.0.0" - "selfsigned" "^2.0.1" - "serve-index" "^1.9.1" - "sockjs" "^0.3.24" - "spdy" "^4.0.2" - "webpack-dev-middleware" "^5.3.1" - "ws" "^8.4.2" - -"webpack-merge@^5.8.0": - "integrity" "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==" - "resolved" "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz" - "version" "5.8.0" - dependencies: - "clone-deep" "^4.0.1" - "wildcard" "^2.0.0" - -"webpack-sources@^3.2.2", "webpack-sources@^3.2.3": - "integrity" "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" - "resolved" "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz" - "version" "3.2.3" - -"webpack@^4.0.0 || ^5.0.0", "webpack@^4.37.0 || ^5.0.0", "webpack@^5.0.0", "webpack@^5.1.0", "webpack@^5.20.0", "webpack@^5.73.0", "webpack@>= 4", "webpack@>=2", "webpack@>=4.41.1 || 5.x", "webpack@3 || 4 || 5": - "integrity" "sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==" - "resolved" "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz" - "version" "5.74.0" - dependencies: - "@types/eslint-scope" "^3.7.3" - "@types/estree" "^0.0.51" - "@webassemblyjs/ast" "1.11.1" - "@webassemblyjs/wasm-edit" "1.11.1" - "@webassemblyjs/wasm-parser" "1.11.1" - "acorn" "^8.7.1" - "acorn-import-assertions" "^1.7.6" - "browserslist" "^4.14.5" - "chrome-trace-event" "^1.0.2" - "enhanced-resolve" "^5.10.0" - "es-module-lexer" "^0.9.0" - "eslint-scope" "5.1.1" - "events" "^3.2.0" - "glob-to-regexp" "^0.4.1" - "graceful-fs" "^4.2.9" - "json-parse-even-better-errors" "^2.3.1" - "loader-runner" "^4.2.0" - "mime-types" "^2.1.27" - "neo-async" "^2.6.2" - "schema-utils" "^3.1.0" - "tapable" "^2.1.1" - "terser-webpack-plugin" "^5.1.3" - "watchpack" "^2.4.0" - "webpack-sources" "^3.2.3" - -"webpackbar@^5.0.2": - "integrity" "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==" - "resolved" "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz" - "version" "5.0.2" - dependencies: - "chalk" "^4.1.0" - "consola" "^2.15.3" - "pretty-time" "^1.1.0" - "std-env" "^3.0.1" - -"websocket-driver@^0.7.4", "websocket-driver@>=0.5.1": - "integrity" "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" - "resolved" "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" - "version" "0.7.4" - dependencies: - "http-parser-js" ">=0.5.1" - "safe-buffer" ">=5.1.0" - "websocket-extensions" ">=0.1.1" - -"websocket-extensions@>=0.1.1": - "integrity" "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" - "resolved" "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" - "version" "0.1.4" - -"whatwg-url@^5.0.0": - "integrity" "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - "resolved" "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" - "version" "5.0.0" - dependencies: - "tr46" "~0.0.3" - "webidl-conversions" "^3.0.0" - -"which@^1.3.1": - "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" - "resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz" - "version" "1.3.1" - dependencies: - "isexe" "^2.0.0" - -"which@^2.0.1": - "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz" - "version" "2.0.2" - dependencies: - "isexe" "^2.0.0" - -"widest-line@^3.1.0": - "integrity" "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" - "resolved" "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz" - "version" "3.1.0" - dependencies: - "string-width" "^4.0.0" - -"widest-line@^4.0.1": - "integrity" "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==" - "resolved" "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz" - "version" "4.0.1" - dependencies: - "string-width" "^5.0.1" - -"wildcard@^2.0.0": - "integrity" "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==" - "resolved" "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" - "version" "2.0.0" - -"wrap-ansi@^7.0.0": - "integrity" "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" - "version" "7.0.0" - dependencies: - "ansi-styles" "^4.0.0" - "string-width" "^4.1.0" - "strip-ansi" "^6.0.0" - -"wrap-ansi@^8.0.1": - "integrity" "sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g==" - "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.0.1.tgz" - "version" "8.0.1" - dependencies: - "ansi-styles" "^6.1.0" - "string-width" "^5.0.1" - "strip-ansi" "^7.0.1" - -"wrappy@1": - "integrity" "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" - "version" "1.0.2" - -"write-file-atomic@^3.0.0": - "integrity" "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" - "resolved" "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" - "version" "3.0.3" - dependencies: - "imurmurhash" "^0.1.4" - "is-typedarray" "^1.0.0" - "signal-exit" "^3.0.2" - "typedarray-to-buffer" "^3.1.5" - -"ws@^7.3.1": - "integrity" "sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==" - "resolved" "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz" - "version" "7.4.5" - -"ws@^8.4.2": - "integrity" "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==" - "resolved" "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz" - "version" "8.8.1" - -"xdg-basedir@^4.0.0": - "integrity" "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" - "resolved" "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz" - "version" "4.0.0" - -"xml-js@^1.6.11": - "integrity" "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" - "resolved" "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz" - "version" "1.6.11" - dependencies: - "sax" "^1.2.4" - -"xtend@^4.0.0", "xtend@^4.0.1": - "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - "resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" - "version" "4.0.2" - -"yallist@^4.0.0": - "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" - "version" "4.0.0" - -"yaml@^1.10.0", "yaml@^1.10.2", "yaml@^1.7.2": - "integrity" "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - "resolved" "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" - "version" "1.10.2" - -"yocto-queue@^0.1.0": - "integrity" "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - "resolved" "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" - "version" "0.1.0" - -"zwitch@^1.0.0": - "integrity" "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==" - "resolved" "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz" - "version" "1.0.5" From 85768268a6d6a29f036e1099eafc5910d1a9a8e1 Mon Sep 17 00:00:00 2001 From: Shubhendra Date: Thu, 2 Nov 2023 15:35:52 +0530 Subject: [PATCH 21/63] reverted versions --- docs/versions.json | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/docs/versions.json b/docs/versions.json index aa21efd140..f1d9a63c13 100644 --- a/docs/versions.json +++ b/docs/versions.json @@ -1,3 +1,25 @@ [ - "2.22.0" + "2.22.0", + "2.19.0", + "2.18.0", + "2.17.0", + "2.16.0", + "2.15.0", + "2.14.0", + "2.13.0", + "2.12.0", + "2.11.0", + "2.10.0", + "2.9.4", + "2.9.0", + "2.8.0", + "2.7.0", + "2.6.0", + "2.5.0", + "2.4.0", + "2.3.0", + "2.2.0", + "2.1.0", + "2.0.0", + "1.x.x" ] \ No newline at end of file From e744b2ee2fe232b3438f3df80eb8c2638763cce9 Mon Sep 17 00:00:00 2001 From: Shubhendra Date: Thu, 2 Nov 2023 16:02:44 +0530 Subject: [PATCH 22/63] minor update --- docs/docs/contributing-guide/setup/codespaces.md | 9 ++++----- .../contributing-guide/setup/codespaces.md | 9 ++++----- .../contributing-guide/setup/codespaces.md | 9 ++++----- .../contributing-guide/setup/codespaces.md | 9 ++++----- .../contributing-guide/setup/codespaces.md | 9 ++++----- .../contributing-guide/setup/codespaces.md | 9 ++++----- .../contributing-guide/setup/codespaces.md | 9 ++++----- 7 files changed, 28 insertions(+), 35 deletions(-) diff --git a/docs/docs/contributing-guide/setup/codespaces.md b/docs/docs/contributing-guide/setup/codespaces.md index bfc2d53219..1204d71f63 100644 --- a/docs/docs/contributing-guide/setup/codespaces.md +++ b/docs/docs/contributing-guide/setup/codespaces.md @@ -53,11 +53,7 @@ sudo -u postgres psql Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) -For basic set-up you add the below env variables: - -`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) - -`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) +**For basic set-up you add the below env variables:** ``` TOOLJET_HOST=http://localhost:3000 @@ -81,6 +77,9 @@ NODE_ENV=production SERVE_CLIENT=true ``` +> `SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) +> +> `LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) ### 3. Install and build dependencies diff --git a/docs/versioned_docs/version-2.15.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.15.0/contributing-guide/setup/codespaces.md index bfc2d53219..1204d71f63 100644 --- a/docs/versioned_docs/version-2.15.0/contributing-guide/setup/codespaces.md +++ b/docs/versioned_docs/version-2.15.0/contributing-guide/setup/codespaces.md @@ -53,11 +53,7 @@ sudo -u postgres psql Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) -For basic set-up you add the below env variables: - -`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) - -`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) +**For basic set-up you add the below env variables:** ``` TOOLJET_HOST=http://localhost:3000 @@ -81,6 +77,9 @@ NODE_ENV=production SERVE_CLIENT=true ``` +> `SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) +> +> `LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) ### 3. Install and build dependencies diff --git a/docs/versioned_docs/version-2.16.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.16.0/contributing-guide/setup/codespaces.md index bfc2d53219..1204d71f63 100644 --- a/docs/versioned_docs/version-2.16.0/contributing-guide/setup/codespaces.md +++ b/docs/versioned_docs/version-2.16.0/contributing-guide/setup/codespaces.md @@ -53,11 +53,7 @@ sudo -u postgres psql Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) -For basic set-up you add the below env variables: - -`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) - -`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) +**For basic set-up you add the below env variables:** ``` TOOLJET_HOST=http://localhost:3000 @@ -81,6 +77,9 @@ NODE_ENV=production SERVE_CLIENT=true ``` +> `SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) +> +> `LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) ### 3. Install and build dependencies diff --git a/docs/versioned_docs/version-2.17.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.17.0/contributing-guide/setup/codespaces.md index bfc2d53219..1204d71f63 100644 --- a/docs/versioned_docs/version-2.17.0/contributing-guide/setup/codespaces.md +++ b/docs/versioned_docs/version-2.17.0/contributing-guide/setup/codespaces.md @@ -53,11 +53,7 @@ sudo -u postgres psql Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) -For basic set-up you add the below env variables: - -`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) - -`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) +**For basic set-up you add the below env variables:** ``` TOOLJET_HOST=http://localhost:3000 @@ -81,6 +77,9 @@ NODE_ENV=production SERVE_CLIENT=true ``` +> `SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) +> +> `LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) ### 3. Install and build dependencies diff --git a/docs/versioned_docs/version-2.18.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.18.0/contributing-guide/setup/codespaces.md index bfc2d53219..1204d71f63 100644 --- a/docs/versioned_docs/version-2.18.0/contributing-guide/setup/codespaces.md +++ b/docs/versioned_docs/version-2.18.0/contributing-guide/setup/codespaces.md @@ -53,11 +53,7 @@ sudo -u postgres psql Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) -For basic set-up you add the below env variables: - -`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) - -`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) +**For basic set-up you add the below env variables:** ``` TOOLJET_HOST=http://localhost:3000 @@ -81,6 +77,9 @@ NODE_ENV=production SERVE_CLIENT=true ``` +> `SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) +> +> `LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) ### 3. Install and build dependencies diff --git a/docs/versioned_docs/version-2.19.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.19.0/contributing-guide/setup/codespaces.md index bfc2d53219..1204d71f63 100644 --- a/docs/versioned_docs/version-2.19.0/contributing-guide/setup/codespaces.md +++ b/docs/versioned_docs/version-2.19.0/contributing-guide/setup/codespaces.md @@ -53,11 +53,7 @@ sudo -u postgres psql Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) -For basic set-up you add the below env variables: - -`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) - -`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) +**For basic set-up you add the below env variables:** ``` TOOLJET_HOST=http://localhost:3000 @@ -81,6 +77,9 @@ NODE_ENV=production SERVE_CLIENT=true ``` +> `SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) +> +> `LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) ### 3. Install and build dependencies diff --git a/docs/versioned_docs/version-2.22.0/contributing-guide/setup/codespaces.md b/docs/versioned_docs/version-2.22.0/contributing-guide/setup/codespaces.md index bfc2d53219..1204d71f63 100644 --- a/docs/versioned_docs/version-2.22.0/contributing-guide/setup/codespaces.md +++ b/docs/versioned_docs/version-2.22.0/contributing-guide/setup/codespaces.md @@ -53,11 +53,7 @@ sudo -u postgres psql Create a `.env` file by running the command `touch .env`. More information on the variables that can be set is given in the [environment variables reference](https://docs.tooljet.com/docs/setup/env-vars) -For basic set-up you add the below env variables: - -`SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) - -`LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) +**For basic set-up you add the below env variables:** ``` TOOLJET_HOST=http://localhost:3000 @@ -81,6 +77,9 @@ NODE_ENV=production SERVE_CLIENT=true ``` +> `SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) +> +> `LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) ### 3. Install and build dependencies From 2d97089e79aacc94ff3ee35e6d6effc6bde79ba4 Mon Sep 17 00:00:00 2001 From: "Vishnu.Nemarugommula" <35486999+nemarugommula@users.noreply.github.com> Date: Mon, 6 Nov 2023 13:36:07 +0530 Subject: [PATCH 23/63] Create a new Bucket functionality for S3 Issue:#5690 --- marketplace/plugins/s3/lib/index.ts | 4 ++++ marketplace/plugins/s3/lib/operations.json | 17 +++++++++++++++++ marketplace/plugins/s3/lib/query_operations.ts | 10 +++++++++- marketplace/plugins/s3/lib/types.ts | 1 + plugins/packages/s3/lib/index.ts | 4 ++++ plugins/packages/s3/lib/operations.json | 17 +++++++++++++++++ plugins/packages/s3/lib/operations.ts | 8 +++++++- plugins/packages/s3/lib/types.ts | 1 + 8 files changed, 60 insertions(+), 2 deletions(-) diff --git a/marketplace/plugins/s3/lib/index.ts b/marketplace/plugins/s3/lib/index.ts index eb3c2b5513..815129789d 100644 --- a/marketplace/plugins/s3/lib/index.ts +++ b/marketplace/plugins/s3/lib/index.ts @@ -1,4 +1,5 @@ import { + createBucket, getObject, uploadObject, listBuckets, @@ -19,6 +20,9 @@ export default class S3QueryService implements QueryService { try { switch (operation) { + case Operation.CreateBucket: + result = await createBucket(client, queryOptions); + break; case Operation.ListBuckets: result = await listBuckets(client, {}); break; diff --git a/marketplace/plugins/s3/lib/operations.json b/marketplace/plugins/s3/lib/operations.json index 7b7dcff117..2dd5cc2db1 100644 --- a/marketplace/plugins/s3/lib/operations.json +++ b/marketplace/plugins/s3/lib/operations.json @@ -13,6 +13,10 @@ "type": "dropdown-component-flip", "description": "Single select dropdown for operation", "list": [ + { + "value": "create_bucket", + "name": "Create a new bucket" + }, { "value": "get_object", "name": "Read object" @@ -43,6 +47,19 @@ } ] }, + "create_bucket": { + "bucket": { + "label": "Bucket Name", + "key": "bucket", + "type": "codehinter", + "lineNumbers": false, + "description": "Enters a name for the new bucket", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "Enter New Bucket Name" + } + }, "get_object": { "bucket": { "label": "Bucket", diff --git a/marketplace/plugins/s3/lib/query_operations.ts b/marketplace/plugins/s3/lib/query_operations.ts index 9f61a10a29..4493f56e98 100644 --- a/marketplace/plugins/s3/lib/query_operations.ts +++ b/marketplace/plugins/s3/lib/query_operations.ts @@ -3,8 +3,9 @@ import { ListBucketsCommand, PutObjectCommand, DeleteObjectCommand, - S3Client, ListObjectsV2Command, + CreateBucketCommand, + S3Client, } from '@aws-sdk/client-s3'; // https://aws.amazon.com/blogs/developer/generate-presigned-url-modular-aws-sdk-javascript/ import { getSignedUrl } from '@aws-sdk/s3-request-presigner'; @@ -38,6 +39,13 @@ export async function signedUrlForGet(client: S3Client, options: QueryOptions): return { url }; } +export async function createBucket(client: S3Client, options: QueryOptions): Promise { + const createBucketCommand = new CreateBucketCommand({ + Bucket: options.bucket, + }); + return await client.send(createBucketCommand); +} + export async function getObject(client: S3Client, options: QueryOptions): Promise { // Create a helper function to convert a ReadableStream to a string. const streamToString = (stream) => diff --git a/marketplace/plugins/s3/lib/types.ts b/marketplace/plugins/s3/lib/types.ts index f83f557a96..650da1efbf 100644 --- a/marketplace/plugins/s3/lib/types.ts +++ b/marketplace/plugins/s3/lib/types.ts @@ -15,6 +15,7 @@ export type QueryOptions = { }; export enum Operation { + CreateBucket = 'create_bucket', ListBuckets = 'list_buckets', ListObjects = 'list_objects', GetObject = 'get_object', diff --git a/plugins/packages/s3/lib/index.ts b/plugins/packages/s3/lib/index.ts index ddf825a9fb..2ebe19585a 100644 --- a/plugins/packages/s3/lib/index.ts +++ b/plugins/packages/s3/lib/index.ts @@ -1,4 +1,5 @@ import { + createBucket, getObject, uploadObject, listBuckets, @@ -23,6 +24,9 @@ export default class S3QueryService implements QueryService { try { switch (operation) { + case Operation.CreateBucket: + result = await createBucket(client, queryOptions); + break; case Operation.ListBuckets: result = await listBuckets(client, {}); break; diff --git a/plugins/packages/s3/lib/operations.json b/plugins/packages/s3/lib/operations.json index 69622bd6b7..026f68ce73 100644 --- a/plugins/packages/s3/lib/operations.json +++ b/plugins/packages/s3/lib/operations.json @@ -13,6 +13,10 @@ "type": "dropdown-component-flip", "description": "Single select dropdown for operation", "list": [ + { + "value": "create_bucket", + "name": "Create a new bucket" + }, { "value": "get_object", "name": "Read object" @@ -43,6 +47,19 @@ } ] }, + "create_bucket": { + "bucket": { + "label": "Bucket Name", + "key": "bucket", + "type": "codehinter", + "lineNumbers": false, + "description": "Enters a name for the new bucket", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "Enter New Bucket Name" + } + }, "get_object": { "bucket": { "label": "Bucket", diff --git a/plugins/packages/s3/lib/operations.ts b/plugins/packages/s3/lib/operations.ts index 9f61a10a29..fc10da84c8 100644 --- a/plugins/packages/s3/lib/operations.ts +++ b/plugins/packages/s3/lib/operations.ts @@ -4,6 +4,7 @@ import { PutObjectCommand, DeleteObjectCommand, S3Client, + CreateBucketCommand, ListObjectsV2Command, } from '@aws-sdk/client-s3'; // https://aws.amazon.com/blogs/developer/generate-presigned-url-modular-aws-sdk-javascript/ @@ -37,7 +38,12 @@ export async function signedUrlForGet(client: S3Client, options: QueryOptions): }); return { url }; } - +export async function createBucket(client: S3Client, options: QueryOptions): Promise { + const createBucketCommand = new CreateBucketCommand({ + Bucket: options.bucket, + }); + return await client.send(createBucketCommand); +} export async function getObject(client: S3Client, options: QueryOptions): Promise { // Create a helper function to convert a ReadableStream to a string. const streamToString = (stream) => diff --git a/plugins/packages/s3/lib/types.ts b/plugins/packages/s3/lib/types.ts index c43ab0bd0a..4cb9549493 100644 --- a/plugins/packages/s3/lib/types.ts +++ b/plugins/packages/s3/lib/types.ts @@ -19,6 +19,7 @@ export type QueryOptions = { }; export enum Operation { + CreateBucket = 'create_bucket', ListBuckets = 'list_buckets', ListObjects = 'list_objects', GetObject = 'get_object', From 2e01ae3b745cf4ba6252c5e2364406f7e8139e4c Mon Sep 17 00:00:00 2001 From: Ajith KV Date: Wed, 8 Nov 2023 15:36:56 +0530 Subject: [PATCH 24/63] Add data-cy for components (#8126) --- frontend/src/Editor/Header/GlobalSettings.jsx | 23 +++++++++++++------ frontend/src/Editor/ManageAppUsers.jsx | 22 ++++++++++++++---- frontend/src/_components/AppModal.jsx | 13 +++++++++-- .../OrganizationManager/EditOrganization.jsx | 2 +- 4 files changed, 45 insertions(+), 15 deletions(-) diff --git a/frontend/src/Editor/Header/GlobalSettings.jsx b/frontend/src/Editor/Header/GlobalSettings.jsx index 0fc8a4ed61..cb0a95cb29 100644 --- a/frontend/src/Editor/Header/GlobalSettings.jsx +++ b/frontend/src/Editor/Header/GlobalSettings.jsx @@ -156,7 +156,9 @@ export const GlobalSettings = ({
- + )} {slug?.error ? ( - + ) : isSlugUpdated ? ( - + ) : ( - + )}
- -
+ +
{!slugProgress ? ( `${getHostURL()}/${getWorkspaceId()}/apps/${slug?.value || oldSlug || ''}` ) : ( @@ -205,7 +214,7 @@ export const GlobalSettings = ({
)}
-
diff --git a/frontend/src/Editor/ManageAppUsers.jsx b/frontend/src/Editor/ManageAppUsers.jsx index 42f8ccfc34..8c0d8f32cb 100644 --- a/frontend/src/Editor/ManageAppUsers.jsx +++ b/frontend/src/Editor/ManageAppUsers.jsx @@ -336,6 +336,7 @@ class ManageAppUsersComponent extends React.Component { viewBox="0 0 17 18" fill="none" xmlns="http://www.w3.org/2000/svg" + data-cy="copy-app-link-button" >
{newSlug?.error ? ( - + ) : isSlugUpdated ? ( - + ) : ( - + )}
{(this?.props?.isPublic || window?.public_config?.ENABLE_PRIVATE_APP_EMBED === 'true') && (
- + - {embeddableLink} + {embeddableLink} Cancel - handleAction(e)} data-cy={actionButton} disabled={createBtnDisableState}> + handleAction(e)} + data-cy={actionButton.toLowerCase().replace(/\s+/g, '-')} + disabled={createBtnDisableState} + > {isLoading ? actionLoadingButton : actionButton} @@ -134,7 +138,9 @@ export function AppModal({ >
- + {errorText} @@ -166,6 +173,7 @@ export function AppModal({ fontSize: '10px', color: '#ED5F00', }} + data-cy="app-name-info-label" > {infoText || 'Maximum length has been reached'} @@ -176,6 +184,7 @@ export function AppModal({ fontSize: '10px', color: '#7E868C', }} + data-cy="app-name-info-label" > App name must be unique and max 50 characters diff --git a/frontend/src/_components/OrganizationManager/EditOrganization.jsx b/frontend/src/_components/OrganizationManager/EditOrganization.jsx index 20ee9816ef..75fa31c467 100644 --- a/frontend/src/_components/OrganizationManager/EditOrganization.jsx +++ b/frontend/src/_components/OrganizationManager/EditOrganization.jsx @@ -246,7 +246,7 @@ export const EditOrganization = ({ showEditOrg, setShowEditOrg, currentValue })
)}
-
+
+ +## Additional header + +Whenever a request is made to the REST API, a **tj-x-forwarded-for** header is added to the request, the value of the header will be the IP address of the user who is logged in to the ToolJet application. This header can be used to identify the user who is making the request to the REST API. + +
+ +ToolJet - Data source - REST API +
## Response types diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 37dd81d50b..538e7a2898 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -121,7 +121,7 @@ module.exports = { // Please change this to your repo. editUrl: 'https://github.com/ToolJet/Tooljet/blob/develop/docs/', includeCurrentVersion: false, - lastVersion: '2.22.0', + lastVersion: '2.23.0', }, theme: { customCss: require.resolve('./src/css/custom.css'), diff --git a/docs/static/img/datasource-reference/rest-api/header.png b/docs/static/img/datasource-reference/rest-api/header.png new file mode 100644 index 0000000000000000000000000000000000000000..6ec2958bff46dd99522ff6b86d28388b2f602f71 GIT binary patch literal 79574 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 r-h$RvjQpK7I4`zhZu literal 0 HcmV?d00001 diff --git a/docs/versioned_docs/version-2.23.0/Enterprise/_category_.json b/docs/versioned_docs/version-2.23.0/Enterprise/_category_.json new file mode 100644 index 0000000000..b9b132f890 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/Enterprise/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Enterprise", + "position": 9, + "collapsed": true +} \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/Enterprise/audit_logs.md b/docs/versioned_docs/version-2.23.0/Enterprise/audit_logs.md new file mode 100644 index 0000000000..4091655a9a --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/Enterprise/audit_logs.md @@ -0,0 +1,94 @@ +--- +id: audit_logs +title: Audit logs +--- + +
Available on: Paid plans
+ + +The audit log is the report of all the activities done in your ToolJet account. It will capture and display events automatically by recording who performed an activity, what when, and where the activity was performed, along with other information such as IP address. + +
+ +Audit logs + +
+ +### Date Range + +Retrieve the log of events that occurred within the specified date and time range using the range picker. By default, the system loads 24-hour logs for the initial view. The maximum duration that can be specified for the "from" and "to" dates is 30 days. + +:::info +Pagination at the bottom allows navigation through the pages, with each page displaying a maximum of 7 logs. +::: + +
+ +Audit logs + +
+ +### Filter Audit Logs + +You can apply filters to the audited events based on the following criteria. + +#### Select Users + +Choose a specific user from the dropdown list to view all their activities. + +#### Select Apps + +The dropdown will display all the apps associated with your account. Select an app to filter the logs related to that particular app. + +#### Select Resources + +| Resources | description | +| ----------- | ----------- | +| User | Filter all the User events like `USER_LOGIN`, `USER_SIGNUP`, `USER_INVITE`, AND `USER_INVITE_REDEEM`. | +| App | Filter all the App events like `APP_CREATE`, `APP_UPDATE`,`APP_VIEW`,`APP_DELETE`,`APP_IMPORT`,`APP_EXPORT`,`APP_CLONE`. | +| Data Query | Filters the events associated with Data Query like `DATA_QUERY_RUN`. | +| Group Permission | All the events associated with Group Permissions will be filtered. Group Permissions include `GROUP_CREATE`, `GROUP_UPDATE`, `GROUP_DELETE`. | +| App Group Permission | Within each group, you can set apps for read or edit privileges. These events get recorded as App Group Permissions. | + +#### Select Actions + +| Actions | description | +| ----------- | ----------- | +| USER_LOGIN | This event is recorded everytime a user logins. | +| USER_SIGNUP | This event is recorded everytime a new signup is made. | +| USER_INVITE | You can invite users to your account from `Manage Users` section and an event is audited everytime an invite is sent. | +| USER_INVITE_REDEEM | This event is recorded whenever an invite is redeemed. | +| APP_CREATE | This event is recorded when a user creates a new app. | +| APP_UPDATE | This event is recorded whenever actions like renaming the app, making the app public, editing shareable link, or deploying the app are made. | +| APP_VIEW | This event is logged when someone views the launched app. (public apps aren't accounted for) | +| APP_DELETE | This event is recorded whenever a user deletes an app from the dashboard. | +| APP_IMPORT | This event is recorded whenever a user imports an app. | +| APP_EXPORT | This event is recorded whenever an app is exported. | +| APP_CLONE | This event is recorded whenever a clone of the existing app is created. | +| DATA_QUERY_RUN | This event is logged whenever a data source is added, a query is created, or whenever a query is run either from the query editor or from the launched app. | +| GROUP_PERMISSION_CREATE | This event is recorded whenever a group is created. | +| GROUP_PERMISSION_UPDATE | This event is recorded whenever an app or user is added to or removed from a group, or the permissions for a group are updated. | +| GROUP_PERMISSION_DELETE | This event is recorded whenever a user group is deleted from an account. | +| APP_GROUP_PERMISSION_UPDATE | For every app added in to user group, you can set privileges like `View` or `Edit` and whenever these privileges are updated this event is recorded. By default, the permission of an app for a user group is set to `View`. | + +### Understanding Log Information + +
+ +Audit logs + +
+ +| Property | Description | +| ----------- | ----------- | +| action_type | This indicates the type of action that was logged in the event. Refer to [this](#select-actions) for more information on actions. | +| created_at | Shows the date and time when the event was logged. | +| id | Each logged event is assigned a unique event ID. | +| ip_address | Displays the IP address from which the event was logged. | +| metadata | The metadata includes two sub-properties: `tooljet_version` and `user_agent`. `tooljet_version` shows the version of ToolJet used for the event, while `user_agent` contains information about the device and browser used. | +| organization_id | Every organization in ToolJet has a unique ID associated with it, which is recorded when an event occurs. | +| resource_id | Different [resources](#select-resources) have their respective IDs associated with them. These IDs are assigned when the resources are created. | +| resource_name | Shows the name of the [resources](#select-resources) that were involved in the logged event. For example, if an app was created or deleted, it will display the name of that app. | +| resource_type | Indicates the type of the [resources](#select-resources) involved in the logged event. | +| user_id | Each user account in ToolJet has a unique ID associated with it, which is recorded when an event occurs. | + diff --git a/docs/versioned_docs/version-2.23.0/Enterprise/superadmin.md b/docs/versioned_docs/version-2.23.0/Enterprise/superadmin.md new file mode 100644 index 0000000000..b8fe31f689 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/Enterprise/superadmin.md @@ -0,0 +1,158 @@ +--- +id: superadmin +title: Super Admin +--- + +
Available on: Paid plans
+ +A Super Admin is the user who has full access to all the Workspaces, Users, and Groups of an instance. An instance can have more than one Super Admin. A Super Admin has full control over other users' workspaces and can create users, groups, and other super admins. + +The user details entered while setting up ToolJet will have Super Admin privileges. + +## How is Super Admin different from Admin + +| Privilege | Admin | Super Admin | +| --------- | ----- | ----------- | +| Manage Users in their workspace (Invite/Archive/Unarchive) | ✅ | ✅ | +| Manage Groups in their workspace (Create Group/Add or Delete Users from groups/ Modify Group Permissions) | ✅ | ✅ | +| Manage SSO in their workspace | ✅ | ✅ | +| Manage Workspace Variables in their workspace | ✅ | ✅ | +| Manage Workspace Constants in their workspace | ✅ | ✅ | +| [Manage data sources for the user group in their workspace](/docs/data-sources/overview#permissions) | ✅ | ✅ | +| [Access any user's personal workspace (create, edit or delete apps)](#access-any-workspace) | ❌ | ✅ | +| [Archive Admin or any user of any workspace](#archiveunarchive-users) | ❌ | ✅ | +| [Access any user's ToolJet database (create, edit or delete database)](#access-tooljet-db-in-any-workspace) | ❌ | ✅ | +| [Manage any workspace's setting (Groups/SSO/Workspace constants)](#manage-workspace-setting-groupsssoworkspace-constants) | ❌ | ✅ | +| [Manage all users from all the workspaces in the instance](#manage-all-users-in-the-instance) | ❌ | ✅ | +| [Make any user Super Admin](#make-the-user-super-admin) | ❌ | ✅ | +| [Restrict creation of personal workspace of users](#restrict-creation-of-personal-workspace-of-users) | ❌ | ✅ | +| [Enable Multiplayer editing](#enable-multiplayer-editing) | ❌ | ✅ | +| [Implement White Labelling](#white-labelling) | ❌ | ✅ | + +
+ +Super Admin: Enterprise + +
+ +## Super Admin features + +### Access any workspace + +If a user has Super Admin privileges, they can switch to any workspace created by any user within the instance using the Workspace Switcher located in the bottom left corner of the screen. + +The dropdown will display all workspaces, including those created by both Super Admins and any other users. + +
+ +Super Admin: Enterprise + +
+ +### Create, Edit or Delete apps from any user's personal workspace + +Once the Super Admin accesses the workspace of any other user, they can create, edit or delete app on the workspace. + +This also includes - modifying folders and importing, exporting, or cloning apps to any user's workspace. + +### Archive/Unarchive Users + +Super Admin can not only archive/unarchive users/admins on their workspace but also from the workspaces of any other user. + +If a user is Super Admin, they just need to open the workspace in which they want to archive or unarchive a user. Then go to the **Workspace Settings** from the sidebar -> **Manage Users** -> **Archive/Unarchive** any user/admin + +
+ +Super Admin: Enterprise + +
+ +### Access ToolJet DB in any workspace + +Super Admins have access to the database of any user's workspace - just like Super Admins can access any application in any workspace. They have full access to modify or create any table in the ToolJet DB of any workspace. + +### Manage Workspace Settings (Groups/SSO/Workspace constants) + +Super Admins have all the privileges that an Admin of a workspace have, Super Admins can: +- **✅ Manage Groups**: Creating/Deleting/Updating a Group in any workspace +- **✅ Manage SSO**: Full control over General Settings, Password login and other SSO options +- **✅ Workspace Variables**: Adding, updating or deleting workspace variables +- **✅ Workspace Constants**: Adding, updating or deleting workspace constants +- **✅ Copilot**: Enabling or disabling Copilot +- **✅ Custom Styles**: Adding or modifying custom styles + +## Instance Settings + +Only Super Admins can access the Instance Settings: + +- **All Users** +- **Manage Instance Settings** +- **License** +- **White labelling** + +## All Users + +### Manage all users in the instance + +**All Users** page can be used to check the list of all the users in the instance. Super Admins can also promote/demote any user to/from Super Admin from this page. They can also archive/unarchive any user from this page. + +
+ +Super Admin: Enterprise + +
+ +### Archiving a user from workspace + +Super Admins have the privilege to remove any user from any workspace to which they belong. + +Super Admins can go to **All Users** page, Under the **Workspaces** column they'll see the number of workspaces a user belongs to. Click on the **`View(n)`**, a modal will pop up that will have the list of **`n`** number the workspaces, click on the **Archive/Unarchive** button next to the workspace name to remove the user from the workspace. + +
+ +Super Admin: Enterprise + +
+ +### Make the user super admin + +Super Admins can make any user as Super Admin or remove any Super Admin from the **Manage All Users** in the Instance Settings page. + +Click on the **Edit** button next to any user, **Enable** the **Make the user Super Admin** option, and then **Save** it. + +The user will become Super Admin and the Type column will update from **`workspace`** to **`instance`**. + +
+ +Super Admin: Enterprise + +
+ +## Manage Instance Settings + +
+ +Super Admin: Enterprise + +
+ +### Restrict creation of personal workspace of users + +When a user joins a workspace, they are provided with their own personal workspace and option to create new workspaces. + +Super Admins can **control** this behavior from the Manage Instance Settings page, they can **toggle off** the option to **Allow personal workspace**. Now whenever a user joins a workspace they won't be provided a personal workspace nor they will be able to create a new workspace in the instance. + +### Enable multiplayer editing + +Super Admins can enable multiplayer editing from the Manage Instance Settings page. Once enabled, users will be able to edit the same app simultaneously resulting in real-time collaboration. + +## License + +Manage the instance license via the **Instance Settings** page. Super Admins have the capability to update the instance's license key from this page. + +Check out the [License](/docs/licensing) page for more details. + +## White labelling +This feature allows you to customize the ToolJet instance with your own branding. You can change the logo, favicon, and the name of the instance. + +Check out the [White labelling](/docs/enterprise/white-label/) page for more details. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/Enterprise/white-label.md b/docs/versioned_docs/version-2.23.0/Enterprise/white-label.md new file mode 100644 index 0000000000..2f91cf349a --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/Enterprise/white-label.md @@ -0,0 +1,48 @@ +--- +id: white-label +title: White Label +--- + +
Available on: Paid plans
+ +The White Label feature allows you to completely remove ToolJet's branding from the ToolJet platform, allowing you to replace it with your own customized logo, favicon and page title. This feature grants you full control over the visual identity of your ToolJet-powered application, ensuring a seamless and personalized user experience. + +With this feature, you gain the ability to rebrand the following key elements: + +- **Application Logo**: This includes the logo displayed on the login screen, dashboard, and app-editor. + +
+ +ToolJet - Enterprise - White label + +
+ +- **Favicon**: The small icon associated with your application. + +
+ +ToolJet - Enterprise - White label + +
+ +- **Page Title**: This is the text displayed next to the Favicon. + +
+ +ToolJet - Enterprise - White label + +
+ +## Configuration + +To enable white labelling, you'll need to go to the **Instance Settings** from the Dashboard and click on the `White labelling` tab. On the White labelling page, you'll be able to configure the following: + +- **Application Logo**: Add the URL of the image you want to use as your application logo. Preferred dimensions of the logo are: width `130px` and height `26px`. +- **Favicon**: Enter the URL of the image you want to use as your application's favicon. Preferred dimensions of the favicon are: width `32px` and height `32px` or `16px` and height `16px`. +- **Page Title**: Enter the text you want to display as your application's title. Preferred title length are 50-60 characters. + +
+ +ToolJet - Enterprise - White label + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/actions/_category_.json b/docs/versioned_docs/version-2.23.0/actions/_category_.json new file mode 100644 index 0000000000..f5b2dfe045 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Actions Reference", + "position": 7, + "collapsed": true +} \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/actions/close-modal.md b/docs/versioned_docs/version-2.23.0/actions/close-modal.md new file mode 100644 index 0000000000..bb772142f9 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/close-modal.md @@ -0,0 +1,19 @@ +--- +id: close-modal +title: Close modal +--- + +Use this action to close the modal that is already shown. + +Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference - Close modal + +
+ diff --git a/docs/versioned_docs/version-2.23.0/actions/control-component.md b/docs/versioned_docs/version-2.23.0/actions/control-component.md new file mode 100644 index 0000000000..61f653d21e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/control-component.md @@ -0,0 +1,102 @@ +--- +id: control-component +title: Control component (Component Specific Actions) +--- + +Control component action invokes the component specific actions. Component specific actions are the actions that are exclusive actions for a particular component. Component specific actions can be triggered either through the event handlers or from the Run JavaScript code query. + +You can find the component specific actions for the specific component in their respective documentation. For example, you can find the component specific actions for the **Bounded Box** component in the [Bounded Box](/docs/widgets/bounded-box) documentation. + +
+ Currently, Component specific actions are supported only by the below listed components. + +
+ +:::info +Check out the **[demo](https://youtu.be/JIhSH3YeM3E)** of Component specific actions demonstrated in one of our community call. +::: + +## Using Component Specific Actions + +### Set a value for text input component using button's event handler + +- Drag a **Text Input** and a **Button** component onto the canvas. + +- Go to the **Inspector** on the left sidebar to check the exposed variables available for the `textinput1` component under the `components`. You'll see that the variable `value` is an empty string because the field value of the text input component is empty right now. + +
+ +![ToolJet - Action reference - Control Component](/img/actions/controlcomponent/inspector.png) + +
+ +- Now enter some value in the text input component and you'll see that the `value` in inspector has been updated. + +
+ +![ToolJet - Action reference - Control Component](/img/actions/controlcomponent/updated.png) + +
+ +- Now, click on the button's component handler to open up its properties in the right sidebar and then add a event handler for **On Click** event to trigger **Control Component** action. Select `textinput1` in component dropdown, `Set text` as Action, and in `Text` field enter the text that you want to update in the field value. + +
+ +![ToolJet - Action reference - Control Component](/img/actions/controlcomponent/button.png) + +
+ +- Now when you'll click on the button you'll see that the field value of the text input component has been updated with value that you set. + +
+ +![ToolJet - Action reference - Control Component](/img/actions/controlcomponent/set.png) + +
+ + +### Clear value of text input component using JavaScript query + +- Let's clear the value that we set in the previous section, using Run JavaScript code. Create a new Run JavaScript Code query and call the component and the CSA that component provides. + +**Syntax:** +```js +await components.textinput1.clear() +``` + +
+ +![ToolJet - Action reference - Control Component](/img/actions/controlcomponent/jsoption.png) + +
+ + +
+ +![ToolJet - Action reference - Control Component](/img/actions/controlcomponent/clear.png) + +
+ +- Finally, hit the **save and run** query button to fire up the query, and you'll see that the field value of the text input component has been cleared. + diff --git a/docs/versioned_docs/version-2.23.0/actions/copy-to-clipboard.md b/docs/versioned_docs/version-2.23.0/actions/copy-to-clipboard.md new file mode 100644 index 0000000000..81f97c360e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/copy-to-clipboard.md @@ -0,0 +1,18 @@ +--- +id: copy-to-clipboard +title: Copy to clipboard +--- + +Use this action to copy the text to the clipboard. + +Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference - Copy to clipboard + +
diff --git a/docs/versioned_docs/version-2.23.0/actions/generate-file.md b/docs/versioned_docs/version-2.23.0/actions/generate-file.md new file mode 100644 index 0000000000..5e969b87a8 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/generate-file.md @@ -0,0 +1,56 @@ +--- +id: generate-file +title: Generate file +--- + +# Generate file + +This action allows you to construct files on the fly and let users download it. + +## Options + +| Option | Description | +|--------|-------------| +| Type | Type of file to be generated. Types: `CSV`, `Text` and `PDF` | +| File name | Name of the file to be generated | +| Data | Data that will be used to construct the file. Its format will depend on the file type, as specified in the following section | +| Debounce | Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` | + +:::tip +Check how to run **[generate file action using RunJS](/docs/how-to/run-actions-from-runjs/#generate-file)**. +::: + +### CSV Data Format + +To use the `CSV` file format, the data field should contain an array of objects. ToolJet assumes that the keys in each object are the same and represent the column headers of the CSV file. + +Example: + +```javascript +{{ + [ + { name: 'John', email: 'john@tooljet.com' }, + { name: 'Sarah', email: 'sarah@tooljet.com' }, + ] +}} +``` + +Using the above code snippet will generate a CSV file with the following content: + +```csv +name,email +John,john@tooljet.com +Sarah,sarah@tooljet.com +``` + +### Text Data Format + +To use the `Text` file format, the data field should contain a string. + +If you want to generate a text file based on an array of objects, you need to stringify the data before providing it. + +For example, if you are using the table component to provide the data, you can enter **`{{JSON.stringify(components.table1.currentPageData)}}`** in the Data field. + +### PDF data format + +The PDF data format supports two types of input: either a `string` or an `array of objects`. When using an array of objects, the resulting PDF will display the data in a tabular format with columns and rows. On the other hand, if a string is provided, the generated PDF will consist of plain text. diff --git a/docs/versioned_docs/version-2.23.0/actions/go-to-app.md b/docs/versioned_docs/version-2.23.0/actions/go-to-app.md new file mode 100644 index 0000000000..02d15e6aef --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/go-to-app.md @@ -0,0 +1,20 @@ +--- +id: go-to-app +title: Go to app +--- + +This action allows you to open any ToolJet application when an event occurs. + +Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference - Open webpage + +
+ + diff --git a/docs/versioned_docs/version-2.23.0/actions/logout.md b/docs/versioned_docs/version-2.23.0/actions/logout.md new file mode 100644 index 0000000000..0e3187471c --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/logout.md @@ -0,0 +1,18 @@ +--- +id: logout +title: Logout +--- + +This action allows you to log out of the application (ToolJet). + +Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference -  Logout + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/actions/open-webpage.md b/docs/versioned_docs/version-2.23.0/actions/open-webpage.md new file mode 100644 index 0000000000..749b205eb9 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/open-webpage.md @@ -0,0 +1,18 @@ +--- +id: open-webpage +title: Open webpage +--- + +You can use this action to open a webpage(on a new tab) for any event. + +Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference - Open webpage + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/actions/run-query.md b/docs/versioned_docs/version-2.23.0/actions/run-query.md new file mode 100644 index 0000000000..55eb1f16aa --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/run-query.md @@ -0,0 +1,18 @@ +--- +id: run-query +title: Run Query +--- + +This action allows you to fire queries when an event occurs. + +Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference -  Run Query + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/actions/set-localstorage.md b/docs/versioned_docs/version-2.23.0/actions/set-localstorage.md new file mode 100644 index 0000000000..3dead574aa --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/set-localstorage.md @@ -0,0 +1,59 @@ +--- +id: set-localstorage +title: Set localStorage +--- + +# Set localStorage + +This action allows you to specify a `key` and its corresponding `value` to be stored in localStorage. + +## Example: App that stores a name in localStorage and displays it on reload + +1. Add an input field, button and a text as shown + +
+ +![ToolJet - Action reference -Set local storage sample app](/img/actions/localstorage/1.png) + +
+ +2. Select the button and add a `Set localStorage` action with `key` set to `name` and value pointing at the value of the text field + +
+ +![ToolJet - Action reference -Set local storage sample app](/img/actions/localstorage/2.png) + +
+ +3. Select the text label we've added and set its value to the name item from localStorage. + +:::info +Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` +::: + +
+ +![ToolJet - Action reference -Set local storage sample app](/img/actions/localstorage/debounce.png) + +
+ + +4. Now save the application, this is important as we're about to reload the page. + +5. Type in anything you wish on the input box and click on the button + +
+ +![ToolJet - Action reference -Set local storage sample app](/img/actions/localstorage/5.png) + +
+ + +6. Reload the page, you'll see that the value stored in local storage is persisted and it is displayed on screen! + +
+ +![ToolJet - Action reference -Set local storage sample app](/img/actions/localstorage/6.png) + +
+ diff --git a/docs/versioned_docs/version-2.23.0/actions/set-page-var.md b/docs/versioned_docs/version-2.23.0/actions/set-page-var.md new file mode 100644 index 0000000000..5c50bab3ee --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/set-page-var.md @@ -0,0 +1,36 @@ +--- +id: set-page-variable +title: Set page variable +--- + +Page variables are restricted to the page where they are created and cannot be accessed throughout the entire application like regular variables. + +Use this action to establish a variable and assign a value to it within the [Multipage Apps](/docs/tutorial/pages). + +By default, the debounce field is left empty. However, you can input a numeric value to indicate the time in milliseconds before the action is executed. For example, `300`. + +
+ +ToolJet - Action reference - Switch page + +
+ +## Using RunJS query to set page variable + +Alternatively, the set page variable action can be triggered via a RunJS query using the following syntax: +```js +await actions.setPageVariable('',) +``` + +`variablekey` must be provided as a string (enclosed in quotes), while the `variablevalue` does not require quotation marks if it is a numerical value. + +
+ +ToolJet - Action reference - Switch page + +
+ +:::info +For instructions on how to run actions from a RunJS query, refer to the how-to guide [Running Actions from RunJS Query](/docs/how-to/run-actions-from-runjs). +::: + diff --git a/docs/versioned_docs/version-2.23.0/actions/set-table-page.md b/docs/versioned_docs/version-2.23.0/actions/set-table-page.md new file mode 100644 index 0000000000..6c6414650c --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/set-table-page.md @@ -0,0 +1,24 @@ +--- +id: set-table-page +title: Set Table Page +--- + +Use this action to change the page index in the table widget. + +## Options + +| Option | Description | +|--------|-------------| +| Table | Select table from the dropdown | +| Page Index | Numerical value for the page index. ex: `{{2}}` | +| Debounce | Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` | + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference - Open webpage + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/actions/set-variable.md b/docs/versioned_docs/version-2.23.0/actions/set-variable.md new file mode 100644 index 0000000000..ef611d43ba --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/set-variable.md @@ -0,0 +1,24 @@ +--- +id: set-variable +title: Set variable +--- + +This action allows you to create a variable and assign a `value` to it. + +## Options + +| Option | Description | +|--------|-------------| +| Key | Name(String) of the variable through which you can access the value | +| Value | A value can be a string, number, boolean expression, array, or object | +| Debounce | Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` | + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference -Set variable + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/actions/show-alert.md b/docs/versioned_docs/version-2.23.0/actions/show-alert.md new file mode 100644 index 0000000000..f92ec12cd7 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/show-alert.md @@ -0,0 +1,23 @@ +--- +id: show-alert +title: Show alert +--- + +This action allows you to display an alert message. + +You can set a custom **message** for the alert and choose a particular alert type. + +There are 4 types of alert messages - **Info**, **Success**, **Warning**, and **Error**. + +Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference -  Show Alert + +
+ diff --git a/docs/versioned_docs/version-2.23.0/actions/show-modal.md b/docs/versioned_docs/version-2.23.0/actions/show-modal.md new file mode 100644 index 0000000000..10f5d9ab17 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/show-modal.md @@ -0,0 +1,18 @@ +--- +id: show-modal +title: Show modal +--- + +Use this action to show the modal for an event. + +Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference - Show modal + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/actions/switch-page.md b/docs/versioned_docs/version-2.23.0/actions/switch-page.md new file mode 100644 index 0000000000..2438fb45e7 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/switch-page.md @@ -0,0 +1,55 @@ +--- +id: switch-page +title: Switch Page +--- + +Utilize this action with various event handler to transition to a different page within the [Multipage App](/docs/tutorial/pages). + +By default, the debounce field is left empty. However, you can input a numeric value to indicate the time in milliseconds before the action is executed. For example, `300`. + +
+ +ToolJet - Action Reference - Page Switching + +
+ +## Query Params + +Query parameters can be passed through action such as `Switch Page`. The parameters are appended to the end of the application URL and are preceded by a question mark (`?`). + +Query parameters are composed of key-value pairs, where the `key` and `value` are separated by an equals sign (`=`). Multiple query parameters can be included by clicking on the `+` button. + +
+ +ToolJet - Action Reference - Page Switching + +
+ +In the above screenshot, we have provided the `username` as the key and the value is `{{globals.currentUser.email}}` which gets the email of the signed in user dynamically. When the button is clicked to trigger the `Switch Page` event handler attached to it then the URL on the switched page will have the parameters. + +They are commonly used to provide additional information to the server or to modify the behavior of a web page. They can be used for filtering search results, pagination, sorting, and various other purposes. + +
+ +ToolJet - Action Reference - Page Switching + +
+ +## Using RunJS query to switch page + +Alternatively, the switch page action can be activated via a RunJS query using the following syntax: +```js +await actions.switchPage('') +``` + +:::info +For instructions on how to run actions from a RunJS query, refer to the how-to guide [Running Actions from RunJS Query](/docs/how-to/run-actions-from-runjs). +::: + +### Switch page with query params + +The switch page action can also be triggered along with query parameters using the following syntax: + +```js +actions.switchPage('', [['param1', 'value1'], ['param2', 'value2']]) +``` diff --git a/docs/versioned_docs/version-2.23.0/actions/unset-page-var.md b/docs/versioned_docs/version-2.23.0/actions/unset-page-var.md new file mode 100644 index 0000000000..933721c12d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/unset-page-var.md @@ -0,0 +1,27 @@ +--- +id: unset-page-variable +title: Unset page variable +--- + +Utilize this action to clear a variable that was established using the [set page variable action](/docs/actions/set-page-variable). + +By default, the debounce field is left empty. However, you can input a numeric value to indicate the time in milliseconds before the action is executed. For example, `300`. + +
+ +ToolJet - Action reference - Switch page + +
+ +## Using RunJS query to unset variable + +Alternatively, the unset page variable action can be triggered via a RunJS query using the following syntax: +```js +await actions.unsetPageVariable('') +``` + +`variablename` is the key of the variable that was provided while creating the variable. + +:::info +For instructions on how to run actions from a RunJS query, refer to the how-to guide [Running Actions from RunJS Query](/docs/how-to/run-actions-from-runjs). +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/actions/unset-variable.md b/docs/versioned_docs/version-2.23.0/actions/unset-variable.md new file mode 100644 index 0000000000..1e6b35f99f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/actions/unset-variable.md @@ -0,0 +1,23 @@ +--- +id: unset-variable +title: Unset variable +--- + +This action allows you to remove the variable variable that was created using the set variable action. + +## Options + +| Option | Description | +|--------|-------------| +| Key | Name(String) of the variable through which you can access the value | +| Debounce | Debounce field is empty by default, you can enter a numerical value to specify the time in milliseconds after which the action will be performed. ex: `300` | + +:::info +You can also trigger actions from the **JavaScript code**. Check it out [here](/docs/how-to/run-actions-from-runjs). +::: + +
+ +ToolJet - Action reference -Unset variable + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/app-builder/canvas.md b/docs/versioned_docs/version-2.23.0/app-builder/canvas.md new file mode 100644 index 0000000000..99d2a75318 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/app-builder/canvas.md @@ -0,0 +1,67 @@ +--- +id: canvas +title: Canvas +--- + +Canvas is the center area of the ToolJet app builder where the application is built. You arrange the **components** by dragging them from the Components library(right-sidebar). + +
+ +App Builder: Canvas + +
+
+ +:::info +- The Canvas height and width can be adjusted from the [Global Settings](/docs/app-builder/left-sidebar#global-settings). +- When the [Pages drawer](/docs/tutorial/pages) on the left is opened or pinned, the canvas becomes horizontally scrollable. + +
+ +App Builder: Canvas + +
+::: + +### Arrange Components + +All the components are fully interactive in editor mode - to prevent interaction you can **click and hold** the **Component Handle** to change component's position. + +
+ +App Builder: Canvas + +
+ +### Resize Components + +Components on the canvas can be resized from the edges. + +You can precisely set the position of selected components using keyboard arrow keys after clicking the component handle. + +
+ +App Builder: Canvas + +
+ +### Group Components + +ToolJet comes with flexible components to group other components together, such as **[Container](/docs/widgets/container/)** and **[Form](/docs/widgets/form/)**. When you drag and drop components in containers/forms they create a group of nested components. All components can be nested in this way. + +### Hide or Disable Components + +Hide or Disable a component by setting its **Visibility** or **Disabled** property to `true`. Click on the component handle to open **config inspector** on right side. These values can also evaluate to true based on a truthy value. For example, you can use the property of one component to toggle the Visibility property of another component dynamically, you just need to write a conditional statement. + +For example: We want to disable a button when a checkbox is checked so we can simple use `{{components.checkbox1.value}}` in **Disable** property of the button. `{{components.checkbox1.value}}` evaluates to `true` when the checkbox is checked, and false when unchecked. + +
+ +App Builder: Canvas + +
+ +### Clone Components + +You can clone existing components on the canvas by **cmd/ctrl + d**. Check other **[Keyboard Shortcuts](/docs/tutorial/keyboard-shortcuts)**. + diff --git a/docs/versioned_docs/version-2.23.0/app-builder/customcss.md b/docs/versioned_docs/version-2.23.0/app-builder/customcss.md new file mode 100644 index 0000000000..870292c51e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/app-builder/customcss.md @@ -0,0 +1,56 @@ +--- +id: customstyles +title: Custom Styles +--- + +
Available on: Paid plans
+ +Custom Styles feature enables the implementation of theming on ToolJet apps, allowing users to inject their own CSS styling to override the default app styling. This feature fulfills the requirement of allowing users to easily customize the appearance of their apps. + +Custom Styles helps in maintaining consistent themes across the ToolJet apps, alleviating the repetitive burden of styling components whenever a new app is created. By enabling users to apply standardized styles, this feature ensures that each app adheres to a unified theme without the need to manually restyle the components from scratch. As a result, the ToolJet app development process becomes more efficient, and the visual coherence of the apps is preserved, providing users with a seamless experience across all applications. + +
+ +Custom CSS + +
+ +## Applying Custom Styles + +To add Custom Styles to ToolJet apps, users should follow these steps: + +1. Go to the **Custom Styles** Page, accessible under **Workspace Settings** from the ToolJet dashboard. +
+ + Custom CSS + +
+ +2. When creating a new app on ToolJet, the default button color is **blue**. If you wish to change the default button color to **red**, you must identify the class of the button component, which follows the format `_tooljet-`. + - The browser's inspector can also help you find the class of the component. Classes are added for both **pages** and **components**, and there are two types of selectors for classes: **Common** (`_tooljet-`) and **Individual** (`_tooljet-`). +
+ + Custom CSS + +
+ +3. Once the class (**`_tooljet-Button`**) is identified, navigate to the Custom Styles page and apply the desired CSS changes for that class, as shown in the following CSS code: + ```css + ._tooljet-Button button { + background: red !important; + } + ._tooljet-Button button:hover { + background: green !important; + } + ``` + +4. By applying this custom styles, all future instances of the app will have buttons with a red default color, and they will turn green on hover. This eliminates the need for users to individually edit button properties, streamlining the customization process. + :::info + Custom Styles are injected at the workspace level, ensuring consistent theming across all apps within the workspace. + ::: + +
+ + Custom CSS + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/app-builder/left-sidebar.md b/docs/versioned_docs/version-2.23.0/app-builder/left-sidebar.md new file mode 100644 index 0000000000..54a2f0a8ad --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/app-builder/left-sidebar.md @@ -0,0 +1,101 @@ +--- +id: left-sidebar +title: Left-sidebar +--- + +Left-sidebar has the following options: + +- **[Pages](#pages)** +- **[Inspector](#inspector)** +- **[Debugger](#debugger)** +- **[Global Settings](#global-settings)** +- **[Comments](#comments)** +- **[Theme switch](#theme-switch)** + +
+ +App Builder: Left-sidebar + +
+ +## Pages + +Pages allows you to have multiple pages in a single application, making your ToolJet applications more robust and user-friendly. + +Check the detailed documentation for **[Pages](/docs/tutorial/pages)**. + +
+ +App Builder: Left-sidebar + +
+ +## Inspector + +The Inspector can be used to inspect the data of the **queries**, properties and values of the **components** that are there on the canvas, ToolJet's global variables and the variables that have been set by the user. + +Check the detailed guide on **[using Inspector](/docs/how-to/use-inspector)**. + +
+ +App Builder: Left-sidebar + +
+ +## Debugger + +Debugger records any errors that occur during the execution of queries. For instance, if a database query fails because the database is unavailable or if a REST API query fails due to an incorrect URL, the errors will be captured and shown in the debugger. Additionally, the debugger provides pertinent information associated with the error alongside the error message. + +If you wish to prevent the debugger from closing, you can simply click on the pin icon located in the top-right corner. By doing so, the debugger will stay open until you decide to unpin it. + +Debugger consists of two main sections: + +1. **All Log:** In this section, you can view a comprehensive list of all the logs generated during the execution of the application. These logs may include various types of messages, such as success messages, warning, and error messages. + +2. **Errors:** This section specifically focuses on displaying the error messages that occurred during the program's execution. These error messages indicate issues or problems that need attention, as they may lead to unexpected behaviors of the application. + +
+ +App Builder: Left-sidebar + +
+ +## Global Settings + +To configure the app's global settings, click on the kebab menu(three vertical dots) on the left of the app name. Global settings include: + +- **Unique app slug**: The unique slug of the application. This slug is used in the URL of the application. By default, the slug is the `app id` of the application. You can change the slug to a custom value. For example, if the slug is `7b56293b-be5a-401f-8806-b71625f8ee0d` you can change it to `` then the new URL of the application will be `https://app.tooljet.com//apps//` +- **App link**: The link to the application. This link can be used to share the application with other users of the workspace. If you want to share the application with users outside the workspace, you can make the application public from the **[Share](/docs/app-builder/share)** modal. +- **Hide header for launched apps**: Toggle this on to the hide the tooljet's header when the applications are launched +- **Maintenance mode**: Toggle this on to put the application in maintenance mode. When in **maintenance mode**, on launching the app, the user will get an error message that **the app is under maintenance**. +- **Max width of canvas**: Modify the width of the canvas in **px** or **%**. The default width is `1292` px. +- **Background color of canvas**: Enter the hex color code or choose a color from the picker to change the background color of the canvas. You can also click on the **Fx** to programmatically set the value. +- **Export app**: Click on the [Export app](/docs/dashboard/#export-app) button to export the application as a JSON file. You can import this JSON file in any other workspace to use the application. + +
+ +App Builder: Left-sidebar + +
+ +## Comments + +Comment anywhere on the canvas and collaborate with other users in the workspace. Click on the comments button to enable it and then drop comment anywhere on the canvas. + +
+ +App Builder: Left-sidebar + +
+ +## Theme Switch + +Use the theme switch button to toggle ToolJet between light and dark modes. + +While developers can access the current theme's value through global variables using `{{globals.theme.name}}`, it is not currently feasible to change the theme programmatically. + +
+ +App Builder: Left-sidebar + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/app-builder/overview.md b/docs/versioned_docs/version-2.23.0/app-builder/overview.md new file mode 100644 index 0000000000..2fb73cfed2 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/app-builder/overview.md @@ -0,0 +1,20 @@ +--- +id: overview +title: Overview +--- + +# App-Builder: Overview + +ToolJet's App Builder allows you to build applications. ToolJet's app builder has the following major components: + +- **[Topbar](/docs/app-builder/topbar)**: configure app settings +- **[Canvas](/docs/app-builder/canvas)**: Arrange the components to build the interface of app +- **[Left-sidebar](/docs/app-builder/left-sidebar)**: Add **[pages](/docs/tutorial/pages)**, **[inspect](/docs/how-to/use-inspector)** the components, queries or variables, and **[debug](#debugger)** the errors. +- **[Components library](/docs/app-builder/components-library)**(right sidebar): Drag any component or modify the property or styling +- **[Query Panel](/docs/app-builder/query-panel)**: Create, edit or manage the queries from the **[datasources](/docs/data-sources/overview)** + +
+ +App Builder: Overview + +
diff --git a/docs/versioned_docs/version-2.23.0/app-builder/query-panel.md b/docs/versioned_docs/version-2.23.0/app-builder/query-panel.md new file mode 100644 index 0000000000..d21714e855 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/app-builder/query-panel.md @@ -0,0 +1,218 @@ +--- +id: query-panel +title: Query Panel +--- + +The Query Panel, located at the bottom of the app-builder, allows you to create and manage queries for interacting with connected **Default** and **Global** datasources. It provides the capability to perform API requests, query **[databases](/docs/data-sources/overview)**, and apply **[transformations](/docs/tutorial/transformations)** or data manipulation using **[JavaScript](/docs/data-sources/run-js)** and **[Python](/docs/data-sources/run-py)**. + +The Query Panel consists of two sections: +- The **[Query Manager](#query-manager)** on the right side, which displays a list of all the created queries. +- The **[Query Editor](#query-editor)**, used to configure the selected query. + +
+ +App Builder: Query Panel + +
+ +## Query Manager + +Query Manager will list all the queries that has been created in the application. Query Manager helps in managing the queries that have been created, you can **add**, **edit**, **delete**, **duplicate**, **search**, **sort** and **filter** through them. + +
+ +App Builder: Query Panel + +
+ +### Add + +Add button is used to add new query in the application. When Add button is clicked, a menu will open with a list of options for creating a query from **Default** datasources such as **Rest API**, **ToolJet Database**, **JavaScript Code**, **Python Code** or from connected **Global Datasources**. + +
+ +App Builder: Query Panel + +
+ +### Sort/Filter + +On the top of Query Manager, there is button to Sort or Filter queries. The following options are there: + +**Filter:** +- By Datasource + +**Sort:** +- Name: A-Z +- Name: Z-A +- Type: A-Z +- Type: Z-A +- Last modified: oldest first +- Last modified: newest First + +
+ +App Builder: Query Panel + +
+ +### Search + +On the top of the query manager is search box that can be used to search for a specific query. + +
+ +App Builder: Query Panel + +
+ +### Delete + +Delete button will delete the selected query, the button will only show up when you hover over the query name. When you click on the delete button, a confirmation dialog will open to confirm the deletion of the query. + +
+ +App Builder: Query Panel + +
+ +### Duplicate + +Duplicate button will duplicate the selected query, the button will only show up when you hover over the query name. The duplicate query will be named as `_copy`. + +
+ +App Builder: Query Panel + +
+ +### Rename + +Rename button is used to rename the selected query, the button will only show up when you hover over the query name. When you click on the rename button, the query name becomes editable and you can change the name of the query. + +
+ +App Builder: Query Panel + +
+ +## Query Editor + +Query editor used to configure the query parameters, preview or transform the data return by the query. + +:::info +The changes made in the query panel will be saved automatically. +::: + +
+ +App Builder: Query Panel + +
+ +### Topbar + +On the top of the query panel there are a few options: + +#### Query Name + +The name of query is displayed on the top of the query panel. You can click on it to make it editable and change the name of the query. + +
+ +App Builder: Query Panel + +
+ +#### Preview + +Preview button is used to preview the data returned by the query. The data will be displayed on the preview section present at the bottom of the query panel. This helps in debugging the query and see the data returned by the query without triggering the query in the app. + +The Preview of data is returned in two different formats: **Raw** & **JSON**. You can click on the clear button to clear the preview data. + +
+ +App Builder: Query Panel + +
+ +#### Run + +Run is used to trigger the query, running the query will interact with the application unlike `Preview`. + +
+ +App Builder: Query Panel + +
+ +### Query Parameters + +Query Parameters are essential values that must be provided in a query for the server to generate a response. These parameters encompass **endpoints**, **methods**, or **operations**. It's important to note that the specific set of Query Parameters varies for each datasource. + +
+ +App Builder: Query Panel + +
+ +#### Datasource + +The primary and default parameter found in all queries is **Datasource**. This option allows you to choose the appropriate datasource for your query. + +In cases where multiple datasources of the same type are connected, you can easily switch the query's datasource using the dropdown menu. + +
+ +App Builder: Query Panel + +
+ +### Transformation + +Transformations can be enabled on queries to transform the query results. ToolJet allows you to transform the query results using two programming languages JavaScript & Python. Check the detailed documentation on **[Transformations](/docs/tutorial/transformations)**. + +
+ +App Builder: Query Panel + +
+ +### Settings + +
+ +App Builder: Query Panel + +
+ +#### Run this query on application load? + +Enabling this option will execute the query every time the app is loaded. + +#### Request confirmation before running the query? + +Enabling this option show a confirmation modal to confirm `Yes` or `No` if you want to fire that query. + +#### Show notification on success? + +Enabling this option show a success toast notification when the query is successfully triggered. + +You can provide a custom **success message** and **notification duration** in milliseconds. + +### Events + +Event handlers can be added to queries for the following events: + +- **Query Success** +- **Query Failure** + +:::info +Learn more about [Event Handlers and Actions](/docs/widgets/overview#component-event-handlers). +::: + +
+ +App Builder: Query Panel + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/app-builder/right-sidebar.md b/docs/versioned_docs/version-2.23.0/app-builder/right-sidebar.md new file mode 100644 index 0000000000..88faa89314 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/app-builder/right-sidebar.md @@ -0,0 +1,29 @@ +--- +id: components-library +title: Components Library +--- + +The **Components Library** on the right sidebar contains all of the available components. Use this to drag-and-drop a component from the library to the canvas. It organizes components into sections and you can enter a search term to quickly find a component you need. + +
+ +App Builder: Component library- right sidebar + +
+ +:::tip +Check the **[Components Catalog](/docs/widgets/overview)** to know more about specific component. +::: + +## Component Config Inspector + +The Component Config Inspector is also called as component inspector. It contains all the available settings for the selected component and is where you **set values**, **update component names**, and **create event handlers**. The Component Inspector organizes settings into different sections, such as **Property** and **Styles**. + +To open the Component Config Inspector, click on the **[component handle](/docs/app-builder/canvas#arrange-components)** that is present on the top of the component including **⚙️ + Component Name** and the component inspector will open up on the right side: + +
+ +App Builder: Component library- right sidebar + +
+ diff --git a/docs/versioned_docs/version-2.23.0/app-builder/share.md b/docs/versioned_docs/version-2.23.0/app-builder/share.md new file mode 100644 index 0000000000..0c9dbddd09 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/app-builder/share.md @@ -0,0 +1,52 @@ +--- +id: share +title: Share +--- + +ToolJet apps offer two sharing options: they can either be shared privately with workspace users or publicly by generating a shareable link. To obtain the shareable URL, you can easily do so by clicking on the Share button located on the top bar of the App builder. + +
+ +Share modal + +
+ +### Making the app public + +To share the app with external end users and make it accessible to anyone on the internet without requiring a ToolJet login, you can toggle on the Switch for "Make the application public?" in the Share modal. + +
+ +Share modal + +
+ +### Customizing the app URL + +By default, ToolJet will generate a unique URL for your application. However, you also have the option to edit the slug of the URL to make it more customized and user-friendly. + +
+ +Share modal + +
+ +### Embedding ToolJet Apps + +ToolJet apps can be directly shared with end users and embedded into web apps using `iframes`. If you want to make your application public, you can use the Share modal to obtain the embeddable link. + +:::info +For embedding private ToolJet apps, you'll need to set an environment variable in the `.env` file. + +| Variable | Description | +|:-------------- |:------------------------------------ | +| ENABLE_PRIVATE_APP_EMBED | `true` or `false` | + +You can learn more [here](/docs/setup/env-vars#enabling-embedding-of-private-apps). +::: + +
+ +Share modal + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/app-builder/toolbar.md b/docs/versioned_docs/version-2.23.0/app-builder/toolbar.md new file mode 100644 index 0000000000..c5e3b41372 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/app-builder/toolbar.md @@ -0,0 +1,135 @@ +--- +id: topbar +title: Topbar +--- + +Topbar is present at the top of the app-builder, and is used to configure the app settings. + +
+ +App Builder: Topbar + +
+ +### App name + +The App name can be modified by selecting the application name located on the left side of the topbar. + +Upon the creation of a new app, it is automatically assigned a unique app name. + +
+ +App Builder: Topbar + +
+ +### Desktop or Mobile layout + +Switch the canvas mode in Mobile or Desktop layout from the topbar. + +#### Showing component on mobile layout + +Click on the component handle to open [component config inspector](/docs/app-builder/components-library#component-config-inspector) on the right sidebar. Scroll down to the **Layout** section and toggle on the Mobile Layout option. The width of the components will be adjusted to fit the Mobile Layout. + +#### Adding a new component to mobile layout + +Switch the canvas to mobile layout by clicking the mobile icon on the topbar. Drag and drop a new component to the canvas. This component will not be visible on the desktop layout unless **Show on desktop** is enabled from the component config inspector. + +:::info +Width of the component will be automatically adjusted to fit the screen while viewing the application in app viewer. +::: + +
+ +App Builder: Topbar + +
+ +### Changes saved indicator + +Whenever a change is made on the component or the query panel/queries, the changes are saved automatically. The changes saved indicator will be displayed on the topbar. This helps the developer to know if the changes are saved or not. + +
+ +App Builder: Topbar + +
+ +### Developer Details + +This will show a profile picture of the developer who is currently working on the application. Hovering over the profile picture will show the name of the developer. If there is no profile picture, then the first letter of the first name and last name will be displayed. + +
+ +App Builder: Topbar + +
+ +### Version Manager + +**Add** or **remove** versions of an application from the Version Manager. Click on the `edit` icon next to version name to rename the version. + +When many developers are working on an app, **Versioning** allows them to save their own version of the app. This also prevents developers from overwriting the other developer's work. + +:::tip +Versioning is also helpful when working with **[multiple environments](/docs/release-management/multi-environment/)** like development, staging and production. +::: + +
+ +App Builder: Topbar + +
+ +### Undo or Redo + +Undo or Redo any action performed on the canvas. + +You can also use **[Keyboard Shortcuts](/docs/tutorial/keyboard-shortcuts)** to perform such actions. + +
+ +App Builder: Topbar + +
+ +### Share + +Share your applications with a unique URL generated automatically or edit the URL slug to personalize it. + +- When **Make the application public** is off and URL is shared then the users will have to login to ToolJet to use the application. Toggle on the option then anyone on the internet will be able to access the application without logging in to ToolJet. +- ToolJet generates the **Embedded link** which can be used to embed application on the webpages. + +:::tip +Learn more about **[Sharing](/docs/app-builder/share)** your tooljet applications. +::: + +
+ +App Builder: Topbar + +
+ +### Preview + +Clicking on **Preview** button will open up the currently opened version of the app in the new tab. This is really handy when the app developer wants to immediately check the app preview in production. + +
+ +App Builder: Topbar + +
+ +### Release + +Release the app to publish the current version of the app and push the changes into the production. + +:::caution +ToolJet will block editing of the Released version of an app and will display a prompt to create a new version to make the changes. This is to prevent accidentally pushing an unfinished app to the live version. +::: + +
+ +App Builder: Topbar + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/_category_.json b/docs/versioned_docs/version-2.23.0/contributing-guide/_category_.json new file mode 100644 index 0000000000..317067020d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Contributing Guide", + "position": 11, + "collapsed": true +} \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/code-of-conduct.md b/docs/versioned_docs/version-2.23.0/contributing-guide/code-of-conduct.md new file mode 100644 index 0000000000..03f7184d51 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/code-of-conduct.md @@ -0,0 +1,81 @@ +--- +id: code-of-conduct +title: Contributor Code of Conduct +--- + +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to make participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies within all project spaces, and it also applies when +an individual is representing the project or its community in public spaces. +Examples of representing a project or community include using an official +project e-mail address, posting via an official social media account, or acting +as an appointed representative at an online or offline event. Representation of +a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at hello@tooljet.com . All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/l10n.md b/docs/versioned_docs/version-2.23.0/contributing-guide/l10n.md new file mode 100644 index 0000000000..196a10aba2 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/l10n.md @@ -0,0 +1,69 @@ +--- +id: l10n +title: Localization +--- + +Welcome to ToolJet Localization Guide. The goal of the Localization is to make ToolJet easy to use and close to all countries, languages, and general cultural groups. On this page, you will find instructions on how to contribute to ToolJet through Localization and make a more friendly ToolJet for all regions. + +## Adding Translations + +- For adding the translations of your language in ToolJet, you'll need to create a new **languagecode.json** file which will include all the translations for the keywords in your language, and then list the language in the **languages.json** file for the language to be listed in the dashboard of the ToolJet. + +- Go to the **frontend** directory which is at the root of ToolJet, then go to the **assets** and inside assets, you'll find the **translations** directory. You have created a new json file with the **language code** as the file name. The language code should follow [ISO 639-1 Code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes). + + ``` + \frontend + |--\assets + |--\--\translations + |--\--\--\languages.json + |--\--\--\en.json + ``` + +
+ + files + +
+ +- Let's localize ToolJet in the **French** language. Create a new json file inside the translations directory and name it **fr.json**. `fr` is the language code for French. + +- After creating the new file, open the **en.json** file and copy all the contents of the file to the newly created **fr.json**. + +
+ + files + +
+ +- Once copied, you can now start adding the translations for the keywords in the french language. + +- After completing the translation, all you need to do is list the language in **languages.json** file. You'll need to add an object with three key-value pairs. **lang** - the name of the language that you added, **code** - the language code, and the **nativeLang** - name of language in the native. + + ```js + { + "languageList": + [ + { "lang": "English", "code": "en", "nativeLang": "English" }, + { "lang": "French", "code": "fr", "nativeLang": "Français" } + ] + } + ``` + + + +:::note +Feel free to reach us on [Slack](https://tooljet.com/slack) for any help related to Localization. +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/marketplace/creating-a-plugin.md b/docs/versioned_docs/version-2.23.0/contributing-guide/marketplace/creating-a-plugin.md new file mode 100644 index 0000000000..6cadb88d7e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/marketplace/creating-a-plugin.md @@ -0,0 +1,390 @@ +--- +id: creating-a-plugin +title: 'Marketplace: Creating plugins' +--- + +# Marketplace: Creating plugins + +## What are plugins + +ToolJet’s development has centered on extensibility, allowing developers to utilize plugins that expand their capabilities. Currently, these plugins are limited to connectors, including data source connectors like PostgreSQL, MySQL, Twilio, Stripe, and more. Using JavaScript/TypeScript, developers can develop plugins to enhance ToolJet's functionality and publish these plugins on the ToolJet Marketplace. + +This guide will provide step-by-step instructions for creating ToolJet plugins using the `tooljet` CLI. + +The `tooljet` CLI is a user-friendly command-line tool designed to simplify the plugin building process. As part of this guide, we will create a basic plugin for GitHub. + +## Step 1: Creating a New Plugin - GitHub Plugin + +The first step is to bootstrap a new plugin for the ToolJet marketplace. The plugin will authenticate users with a GitHub Personal Access Token and include fundamental operations such as fetching user details, repositories, issues, and pull requests. + +If you have completed the **[Setup](/docs/contributing-guide/marketplace/marketplace-setup)** guide, you can begin developing the plugin using the `tooljet` CLI. To initiate plugin development, enter the following command in the terminal: +```bash +# create a new plugin +tooljet plugin create github +``` + +When prompted, enter the **plugin name** and select the **plugin type**, which is api in this case. Additionally, select **yes** when prompted to create a new plugin for the marketplace. + +If your plugin is hosted on GitHub, please provide the **repository URL** when prompted. Otherwise, leave it blank. + +When a plugin is created using the `ToolJet` CLI, an object is added to the **plugins.json** file in the **`ToolJet/server/src/assets/marketplace/`** directory. This object includes metadata about the plugin, such as its name, description, version, author, and other relevant details. + +The plugins.json file serves as a registry of all available plugins for use in ToolJet. When the ToolJet server starts up, it reads the plugins.json file and loads all plugins that are listed in it. + +:::info +It is important to note that the plugins.json file should not be manually edited, as it is automatically generated by the `ToolJet CLI`. Making changes to this file can result in issues with the proper functioning of the plugins in the system. +::: + +All marketplace plugins are stored in the **`/marketplace`** directory of the ToolJet repository. You can find the GitHub plugin **[here](https://github.com/ToolJet/ToolJet/tree/develop/marketplace/plugins/github)**. + +The structure of a typical ToolJet plugin directory appears as follows: +```bash +github/ + package.json + lib/ + icon.svg + index.ts + operations.json + manifest.json +``` + +In this structure, the file **manifest.json** contains information about the plugin's name, description, and other details. The file **operations.json** contains metadata about all the operations that the plugin supports. The main file, **index.ts**, creates a QueryService for the plugin, which handles queries, connection testing, caching, and more. The **icon.svg** file serves as the plugin's icon, while **package.json** is automatically generated by the CLI. + +:::info +**Why do we need a manifest.json file or a operations.json file?** + +The manifest.json file is used by a React component to create a dynamic UI for connection forms. It defines the schema of an API or data source, including its name, type, and any exposed variables, as well as options for authentication and other customizable properties. The properties section specifies the required fields and their types for connecting to the API or data source. By reading the manifest.json file, the React component generates the necessary UI components based on the schema, such as text inputs, dropdowns, checkboxes, and other elements. + +On the other hand, the operations.json file contains a schema definition for a specific data source, like Github. It describes the available operations and their parameters that can be used to query the data source. A React component uses this schema to create queries in ToolJet applications, generating a UI that allows users to select the desired operation and provide the required parameters. The component uses the properties defined in the operations.json file to create various UI elements, such as dropdowns and input fields, and handle user interactions to create the final query. Once the user fills in the required parameters, the component uses them to generate a query that can be executed against the data source and return the results to the user. + +Overall, *manifest.json* and *operations.json* files are essential for creating dynamic UI components in ToolJet applications. They define the schema for data sources and available operations, which React components then use to generate user-friendly UI elements. By utilizing these files, ToolJet enables users to easily connect to various APIs and data sources, perform queries, and retrieve data in an intuitive and efficient manner. +::: + +## Step 2: Defining the manifest.json file + +To construct the connection form, it's important to include the necessary options in the manifest.json file. Here's an example of how to do it: +```json + "properties": { + "credentials": { + "label": "Authentication", + "key": "auth_type", + "type": "dropdown-component-flip", + "description": "A single select dropdown to choose credentials", + "list": [ + { + "value": "personal_access_token", + "name": "Use Personal Access Token" + } + ] + }, + "personal_access_token": { + "token": { + "label": "Token", + "key": "personal_token", + "type": "password", + "description": "Enter your personal access token", + "hint": "You can generate a personal access token from your Github account settings." + } + } + } +``` +This manifest.json file includes information about authentication options, specifically a dropdown to choose a type of credentials and a field to enter a personal access token. The label, key, type, description, and hint properties are used to define the specific fields and their types required for connecting to the API or data source. + +In this particular code, there are two main properties defined: **`credentials`** and **`personal_access_token`**. + +The **`credentials`** property specifies the authentication method to be used. It contains several keys: +- **`label`**: a user-friendly label for the authentication method, set to "Authentication" +- **`key`**: a unique identifier for the authentication method, set to "auth_type" +- **`type`**: the type of the authentication method, set to "dropdown-component-flip" +- **`description`**: a description of the authentication method, set to "A single select dropdown to choose credentials" +- **`list`**: an array of objects representing the different authentication methods available. In this case, there is only one method available: a personal access token. The `value` key in the object is set to "personal_access_token" and the `name` key is set to "Use Personal Access Token". + +The **`personal_access_token`** property specifies the details of the personal access token authentication method. It contains a `token` key, which specifies the actual personal access token to be used. The `token` key contains several keys: +- **`label`**: a user-friendly label for the personal access token, set to "Token" +- **`key`**: a unique identifier for the personal access token, set to "personal_token" +- **`type`**: the type of the personal access token, set to "password" +- **`description`**: a description of the personal access token, set to "Enter your personal access token" +- **`hint`**: a hint for the personal access token, set to "You can generate a personal access token from your Github account settings." + +The available `type` options are: + +However, based on the code you provided, the available **`type`** options are: +- **`password`**: used to input a secret value, such as a password or an access token. +- **`dropdown-component-flip`**: used to create a dropdown menu that flips its position relative to the component that triggers it. +- **`text`**: used to input a single line of text. +- **`textarea`**: used to input multiple lines of text. +- **`toggle`**: used to create a simple on/off switch. +- **`react-component-headers`**: used to display headers for React components. +- **`codehinter`**: is a specialized input field used for entering code and has additional functionality, such as resolving JavaScript code within double curly braces`{{}}`. + +:::tip +The **manifest.json** file is utilized by the connection modal component, which appears to prompt users to enter their datasource credentials. Meanwhile, the **operations.json** file is used by the query manager when users generate a specific query for a connected datasource. **Both files utilize a similar schema**. +::: + +## Step 3: Defining the operations.json file +```json + "properties": { + "operation": { + "label": "Operation", + "key": "operation", + "type": "dropdown-component-flip", + "description": "Single select dropdown for operation", + "list": [ + { + "value": "get_user_info", + "name": "Get user info" + }, + { + "value": "get_repo", + "name": "Get repository" + }, + { + "value": "get_repo_issues", + "name": "Get repository issues" + }, + { + "value": "get_repo_pull_requests", + "name": "Get repository pull requests" + } + ] + }, + "get_user_info": { + "username": { + "label": "Username", + "key": "username", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter username", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "Enter username" + } + }, + "get_repo": { + "owner": { + "label": "Owner", + "key": "owner", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter owner name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "developer" + }, + "repo": { + "label": "Repository", + "key": "repo", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter repository name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "tooljet" + } + }, + "get_repo_issues": { + "owner": { + "label": "Owner", + "key": "owner", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter owner name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "developer" + }, + "repo": { + "label": "Repository", + "key": "repo", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter repository name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "tooljet" + }, + "state": { + "label": "State", + "key": "state", + "className": "codehinter-plugins col-4", + "type": "dropdown", + "description": "Single select dropdown for choosing state", + "list": [ + { + "value": "open", + "name": "Open" + }, + { + "value": "closed", + "name": "Closed" + }, + { + "value": "all", + "name": "All" + } + ] + } + }, + "get_repo_pull_requests": { + "owner": { + "label": "Owner", + "key": "owner", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter owner name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "developer" + }, + "repo": { + "label": "Repository", + "key": "repo", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter repository name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "tooljet" + }, + "state": { + "label": "State", + "key": "state", + "type": "dropdown", + "className": "codehinter-plugins col-4", + "description": "Single select dropdown for choosing state", + "list": [ + { + "value": "open", + "name": "Open" + }, + { + "value": "closed", + "name": "Closed" + }, + { + "value": "all", + "name": "All" + } + ] + } + } + } +``` +The operations.json file specifies the available operations that can be executed on the data source. It provides details about the operation type, required fields to execute the operation, and the data type of each field. The label, key, type, description, and hint properties are used to define the specific fields and their types required to establish a connection with the API or data source. + +## Step 4: Add the npm package of Gitub to the plugin dependencies + +- Change directory to the plugin directory where the npm package needs to be installed and then install the package + ```bash + # change directory to the plugin directory and install the npm package + npm i octokit --workspace=@tooljet-marketplace/github + ``` + + :::info + Steps to install npm package to a plugin + + ```bash + npm i --workspace= + ``` + + The command `npm i --workspace=` is used to install a specific npm package into a particular workspace of a multi-package repository. + + The *--workspace* flag is used to specify the workspace where the package should be installed. In this case, we are installing the package in the *@tooljet-marketplace/github* workspace. + ::: + +## Step 5: Implement the query execution logic in index.ts + +In index.ts, the query execution logic needs to be implemented for the Github plugin's QueryService. The QueryService is responsible for handling the process of running queries and receives information about the data source, including credentials, configurations, and query parameters. + +For the Github data source, the sourceOptions will contain the necessary authentication credentials, like the personal access token, while the queryOptions will include the configurations and parameters specific to the query, like obtaining a list of repositories for a particular user. + +Using this information, the QueryService will create and execute API requests against the Github API. The resulting data will be returned to the caller for further processing as needed. + +Create a new file **query_operations.ts** in the **plugins/github/src** directory and add the following code to it. +```typescript +import { Octokit } from 'octokit' +import { QueryOptions } from './types' + + +export async function getUserInfo(octokit: Octokit, options: QueryOptions): Promise { + const { data } = await octokit.request( + 'GET /users/{username}', + { + username: options.username + } + ); + return data; +} + +export async function getRepo(octokit: Octokit, options: QueryOptions): Promise { + const { data } = await octokit.request( + 'GET /repos/{owner}/{repo}', + { + owner: options.owner, + repo: options.repo + } + ); + return data; +} + +export async function getRepoIssues(octokit: Octokit, options: QueryOptions): Promise { + const { data } = await octokit.request( + 'GET /repos/{owner}/{repo}/issues', + { + owner: options.owner, + repo: options.repo, + state: options.state || 'all' + + } + ); + return data; +} + +export async function getRepoPullRequests(octokit: Octokit, options: QueryOptions): Promise { + const { data } = await octokit.request( + 'GET /repos/{owner}/{repo}/pulls', + { + owner: options.owner, + repo: options.repo, + state: options.state || 'all' + } + ); + return data; +} + +``` + + +The query_operations.ts file comprises functions that will execute the queries and will be called by the QueryService in index.ts. + +The GitHub class has three methods: + +- **run**: This method executes a query and is invoked by passing sourceOptions and queryOptions as input, representing the source metadata and query configuration, respectively. The run method utilizes the octokit library to send API requests to the GitHub API and returns the query result in a QueryResult object. + +- **testConnection**: When adding a new data source to a ToolJet application, the connection can be tested. The testConnection method is used to test the connection, and it takes in sourceOptions as input, which represents the source metadata. The method tests the connection by trying to fetch the authenticated user and returns a ConnectionTestResult object indicating whether the connection was successful. + + :::note + Not all data sources may support testing connections. If it's not applicable for your data source, you can disable the test connection feature by adding "customTesting": true to your plugin's manifest.json. + ::: + +- **getConnection**: This method is a helper function that returns an authenticated octokit client, which is utilized to send requests to the GitHub API. It takes in sourceOptions as input, representing the source metadata, and returns an authenticated octokit client. + + +## Delete a plugin +To delete a plugin, enter the following command: + +```bash +tooljet plugin delete PLUGIN_NAME +``` + +The CLI will prompt users to verify if the plugin to be deleted is a marketplace plugin before proceeding with the deletion. + +## Publish a plugin +To release a plugin, submit a pull request on ToolJet's GitHub Repository after creating it. The ToolJet team will review the pull request, and if approved, the plugin will be included and published in the next release. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/marketplace/marketplace-setup.md b/docs/versioned_docs/version-2.23.0/contributing-guide/marketplace/marketplace-setup.md new file mode 100644 index 0000000000..8d61bd404f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/marketplace/marketplace-setup.md @@ -0,0 +1,65 @@ +--- +id: marketplace-setup +title: 'Marketplace: Development Setup' +--- + +The Marketplace offers custom plugins that can be installed in your ToolJet instance. This guide aims to assist you in creating a new plugin for the ToolJet marketplace. + +## Requirements +- [Node.js](https://nodejs.org/en/download/) **(v18.3.0)** +- [npm](https://www.npmjs.com/get-npm) **(v8.11.0)** + +## Getting started + +### Step 1. Setup ToolJet locally + +To obtain the ToolJet repository via git, use the command: + +```bash +git clone https://github.com/ToolJet/ToolJet.git +``` + +Next, refer to the appropriate guide for your development environment to follow the Setup instructions: + +- **[MacOS](/docs/contributing-guide/setup/macos)** +- **[Docker](/docs/contributing-guide/setup/docker)** +- **[Ubuntu](/docs/contributing-guide/setup/ubuntu)** + +### Step 2. Enabling the marketplace for your instance + +To enable the marketplace for your ToolJet instance, you need to specify the following environment variables in your **`.env`** file: + +#### Marketplace feature enable + +Use this environment variable to enable/disable the feature that allows users to use the marketplace. + +| variable | value | +| -------------------------- | ----------------- | +| ENABLE_MARKETPLACE_FEATURE | `true` or `false` | + +#### Enable Marketplace plugin developement mode + +The use of this environment variable facilitates plugin development by enabling automatic builds whenever package changes occur, thus simplifying the development process. Moreover, it also incorporates a reload button that retrieves all the recent local modifications from the file system for installed plugins, making it a valuable feature for improving the overall development experience. + +| variable | value | +| -------------------------- | ----------------- | +| ENABLE_MARKETPLACE_DEV_MODE | `true` or `false` | + + +Please note that the marketplace is not enabled by default. After updating the variable, restart your ToolJet instance. + +For information on running ToolJet on your local machine, please refer to the instructions provided **[here](/docs/category/contributing-guide)**. You can access the marketplace by navigating to the **'/integrations'** route. + +### Step 3: Installation of tooljet-cli + +In order to manage plugins for the ToolJet marketplace, including creating, updating, and deleting, you will need to utilize **[tooljet-cli](https://www.npmjs.com/package/@tooljet/cli)**. This can be installed via npm by entering the following command: +```bash +npm install -g @tooljet/cli + +# Ensure the installation was successful +tooljet --version +``` + +Having completed the environment setup for Marketplace Developer mode, we can proceed to the next section and commence with [developing the first plugin](/docs/contributing-guide/marketplace/creating-a-plugin). + + diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/setup/_category_.json b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/_category_.json new file mode 100644 index 0000000000..90bb09deae --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Setup", + "position": 1, + "collapsed": true +} diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/setup/architecture.md b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/architecture.md new file mode 100644 index 0000000000..763ddcd622 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/architecture.md @@ -0,0 +1,25 @@ +--- +id: architecture +title: Architecture +--- +# Introduction + +ToolJet has two main components: **ToolJet Server** and **ToolJet Client**. + +### 1. ToolJet Server + +ToolJet server is a Node.js API application. Server is responsible for authentication, authorization, persisting application definitions, running queries, storing data source credentials securely and more. + +**Dependencies:** +- **PostgreSQL** - ToolJet server persists data to a postgres database. +- **Email service** (SMTP/Sendgrid/Mailgun/etc) - Required to send user invitations and password reset emails. +- **PostgREST (Optional)** - Standalone web server that converts PostgreSQL database into queryable RESTful APIs for Tooljet Database. + +### 2. ToolJet Client + +ToolJet client is a ReactJS application. Client is responsible for visually editing the applications, building & editing queries, rendering applications, executing events and their trigger, etc. + +## Requirements + +1. **Node version 18.3.0** +2. **npm version 8.11.0** diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/setup/docker.md b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/docker.md new file mode 100644 index 0000000000..4b4c9873db --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/docker.md @@ -0,0 +1,184 @@ +--- +id: docker +title: Docker +--- + +:::warning +The following guide is intended for contributors to set-up ToolJet locally. If you're interested in **self-hosting** ToolJet, please refer to the **[Setup](/docs/setup/)** section. +::: + +Docker compose is the easiest way to setup ToolJet server and client locally. + +:::info +If you rather want to try out ToolJet locally with docker, you can follow the steps [here](https://docs.tooljet.com/docs/setup/docker-local). +::: + +## Prerequisites + +Make sure you have the latest version of `docker` and `docker-compose` installed. + +[Official docker installation guide](https://docs.docker.com/desktop/) + +[Official docker-compose installation guide](https://docs.docker.com/compose/install/) + +We recommend: + +```bash +docker --version +Docker version 19.03.12, build 48a66213fe + +docker-compose --version +docker-compose version 1.26.2, build eefe0d31 +``` + +## Setting up + +:::warning +If you are setting up on a Windows machine, we advise you to setup Docker desktop with WSL2. +Please find more information [here](https://docs.docker.com/desktop/windows/wsl/). +::: + +1. Clone the repository + ```bash + git clone https://github.com/tooljet/tooljet.git + ``` + +2. Create a `.env` file by copying `.env.example`. More information on the variables that can be set is given in the [environment variables reference](/docs/setup/env-vars) + ```bash + cp .env.example .env + cp .env.example .env.test + ``` + +3. Populate the keys in the `.env` and `.env.test` file + :::info + `SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) + + `LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) + ::: + :::warning + If you are setting up on a Windows machine. Please make sure that .env file line endings to be LF as it will be CRLF by default unless configured for Windows machine. + ::: + + Example: + + ```bash + cat .env + TOOLJET_HOST=http://localhost:8082 + LOCKBOX_MASTER_KEY=13c9b8364ae71f714774c82498ba328813069e48d80029bb29f49d0ada5a8e40 + SECRET_KEY_BASE=ea85064ed42ad02cfc022e66d8bccf452e3fa1142421cbd7a13592d91a2cbb866d6001060b73a98a65be57e65524357d445efae00a218461088a706decd62dcb + NODE_ENV=development + # DATABASE CONFIG + PG_HOST=postgres + PG_PORT=5432 + PG_USER=postgres + PG_PASS=postgres + PG_DB=tooljet_development + ORM_LOGGING=all + ``` + + ```bash + cat .env.test + TOOLJET_HOST=http://localhost:8082 + LOCKBOX_MASTER_KEY=13c9b8364ae71f714774c82498ba328813069e48d80029bb29f49d0ada5a8e40 + SECRET_KEY_BASE=ea85064ed42ad02cfc022e66d8bccf452e3fa1142421cbd7a13592d91a2cbb866d6001060b73a98a65be57e65524357d445efae00a218461088a706decd62dcb + NODE_ENV=test + # DATABASE CONFIG + PG_HOST=postgres + PG_PORT=5432 + PG_USER=postgres + PG_PASS=postgres + PG_DB=tooljet_test + ORM_LOGGING=error + ``` + +4. Build docker images + + ```bash + docker-compose build + docker-compose run --rm plugins npm run build:plugins + ``` + +5. Run ToolJet + + ```bash + docker-compose up + ``` + ToolJet should now be served locally at `http://localhost:8082`. + +8. To shut down the containers, + ```bash + docker-compose stop + ``` + +## Making changes to the codebase + +If you make any changes to the codebase/pull the latest changes from upstream, the tooljet server container would hot reload the application without you doing anything. + +Caveat: + +1. If the changes include database migrations or new npm package additions in the package.json, you would need to restart the ToolJet server container by running `docker-compose restart server`. + +2. If you need to add a new binary or system library to the container itself, you would need to add those dependencies in `docker/server.Dockerfile.dev` and then rebuild the ToolJet server image. You can do that by running `docker-compose build server`. Once that completes you can start everything normally with `docker-compose up`. + +Example: +Let's say you need to install the `imagemagick` binary in your ToolJet server's container. You'd then need to make sure that `apt` installs `imagemagick` while building the image. The Dockerfile at `docker/server.Dockerfile.dev` for the server would then look something like this: + +``` +FROM node:18.3.0-buster AS builder + +RUN apt update && apt install -y \ + build-essential \ + postgresql \ + freetds-dev \ + imagemagick + +RUN mkdir -p /app +WORKDIR /app + +COPY ./server/package.json ./server/package-lock.json ./ +RUN npm install + +ENV NODE_ENV=development + +COPY ./server/ ./ + +COPY ./docker/ ./docker/ + +COPY ./.env ../.env + +RUN ["chmod", "755", "entrypoint.sh"] + +``` + +Once you've updated the Dockerfile, rebuild the image by running `docker-compose build server`. After building the new image, start the services by running `docker-compose up`. + +## Running tests + +Test config picks up config from `.env.test` file at the root of the project. + +Run the following command to create and migrate data for test db + +```bash +docker-compose run --rm -e NODE_ENV=test server npm run db:create +docker-compose run --rm -e NODE_ENV=test server npm run db:migrate +``` + +To run the unit tests +```bash +docker-compose run --rm server npm run --prefix server test +``` + +To run e2e tests +```bash +docker-compose run --rm server npm run --prefix server test:e2e +``` + +To run a specific unit test + +```bash +docker-compose run --rm server npm --prefix server run test +``` + +## Troubleshooting + +Please open a new issue at https://github.com/ToolJet/ToolJet/issues or join our [Slack Community](https://tooljet.com/slack) if you encounter any issues when trying to run ToolJet locally. diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/setup/macos.md b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/macos.md new file mode 100644 index 0000000000..aaf601149e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/macos.md @@ -0,0 +1,141 @@ +--- +id: macos +title: Mac OS +--- + +:::warning +The following guide is intended for contributors to set-up ToolJet locally. If you're interested in **self-hosting** ToolJet, please refer to the **[Setup](/docs/setup/)** section. +::: + +Follow these steps to setup and run ToolJet on macOS for development purposes. Open terminal and run the commands below. We recommend reading our guide on [architecture](/docs/contributing-guide/setup/architecture) of ToolJet before proceeding. + +## Setting up + +1. Set up the environment + + 1.1 Install Homebrew + ```bash + /bin/bash -c "(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" + ``` + 1.2 Install Node.js ( version: v18.3.0 ) and npm (version: v8.11.0) + ```bash + brew install nvm + export NVM_DIR=~/.nvm + source $(brew --prefix nvm)/nvm.sh + nvm install 18.3.0 + nvm use 18.3.0 + npm install -g npm@8.11.0 + ``` + + 1.3 Install Postgres + :::tip + ToolJet uses a postgres database as the persistent storage for storing data related to users and apps. We do not plan to support other databases such as MySQL. + ::: + + ```bash + brew install postgresql + ``` + + 1.4 Install PostgREST(optional) + + :::info + Required only if Tooljet Database is being used. + + Please use PostgREST version 10.1.1.x + ::: + + ```bash + brew install postgrest --version 10.1.1.20221215 + ``` + + 1.5 Clone the repository + ```bash + git clone https://github.com/tooljet/tooljet.git + ``` + +2. Set up environment variables + + Create a `.env` file by copying `.env.example`. More information on the variables that can be set is given in the [environment variables reference](/docs/setup/env-vars) + ```bash + cp .env.example .env + ``` + +3. Populate the keys in the env file + :::info + `SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) + + `LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) + ::: + + Example: + ```bash + cat .env + TOOLJET_HOST=http://localhost:8082 + LOCKBOX_MASTER_KEY=1d291a926ddfd221205a23adb4cc1db66cb9fcaf28d97c8c1950e3538e3b9281 + SECRET_KEY_BASE=4229d5774cfe7f60e75d6b3bf3a1dbb054a696b6d21b6d5de7b73291899797a222265e12c0a8e8d844f83ebacdf9a67ec42584edf1c2b23e1e7813f8a3339041 + NODE_ENV=development + # DATABASE CONFIG + PG_HOST=postgres + PG_PORT=5432 + PG_USER=postgres + PG_PASS=postgres + PG_DB=tooljet_development + ORM_LOGGING=all + ``` + +4. Install and build dependencies + ```bash + npm install + npm install --prefix server + npm install --prefix frontend + npm run build:plugins + ``` + +5. Set up database + ```bash + npm run --prefix server db:create + npm run --prefix server db:reset + ``` + :::info + If at any point you need to reset the database, use this command `npm run --prefix server db:reset` + ::: + +6. Run plugins compilation in watch mode + ```bash + cd ./plugins && npm start + ``` + +7. Run the server + ```bash + cd ./server && npm run start:dev + ``` + +8. Run the client + ```bash + cd ./frontend && npm start + ``` + + The client will start on the port 8082, you can access the client by visiting: [https://localhost:8082](https://localhost:8082) + +9. Create login credentials + + Visiting [https://localhost:8082](https://localhost:8082) should redirect you to the login page, click on the signup link and enter your email. The emails sent by the server in development environment are captured and are opened in your default browser. Click the invitation link in the email preview to setup the account. + +## Running tests + +Test config requires the presence of `.env.test` file at the root of the project. + +To run the unit tests +```bash +npm run --prefix server test +``` + +To run e2e tests +```bash +npm run --prefix server test:e2e +``` + +To run a specific unit test +```bash +npm run --prefix server test +``` diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/setup/ubuntu.md b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/ubuntu.md new file mode 100644 index 0000000000..137276e145 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/ubuntu.md @@ -0,0 +1,133 @@ +--- +id: ubuntu +title: Ubuntu +--- + +:::warning +The following guide is intended for contributors to set-up ToolJet locally. If you're interested in **self-hosting** ToolJet, please refer to the **[Setup](/docs/setup/)** section. +::: + +Follow these steps to setup and run ToolJet on Ubuntu. Open terminal and run the commands below. + +## Setting up + +1. Set up the environment + + 1.1 Install NVM + ```bash + curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash + ``` + + Close and reopen your terminal to start using nvm + ```bash + nvm install 18.3.0 + ``` + + Ensure you have the correct version of npm, or it will cause an error about fsevents. + ```bash + npm i -g npm@8.11.0 + ``` + + 1.2 Install Postgres + ```bash + sudo apt install postgresql postgresql-contrib + sudo apt-get install libpq-dev + ``` + + 1.3 Install PostgREST (optional) + + :::info + Required only if Tooljet Database is being used. + + Please use PostgREST version 10.1.1.x + ::: + + Please follow the installation [PostgREST](https://postgrest.org/en/stable/install.html) guide + + **Note:** Clone the GitHub repo locally using: + + ```bash + git clone https://github.com/ToolJet/ToolJet.git + ``` + + +2. Set up environment variables + + Create a `.env` file by copying `.env.example`. More information on the variables that can be set is given in the [environment variables reference](/docs/setup/env-vars) + ```bash + cp .env.example .env + ``` + +3. Populate the keys in the env file + :::info + `SECRET_KEY_BASE` requires a 64 byte key. (If you have `openssl` installed, run `openssl rand -hex 64` to create a 64 byte secure random key) + + `LOCKBOX_MASTER_KEY` requires a 32 byte key. (Run `openssl rand -hex 32` to create a 32 byte secure random key) + ::: + + Example: + ```bash + cat .env + TOOLJET_HOST=http://localhost:8082 + LOCKBOX_MASTER_KEY=1d291a926ddfd221205a23adb4cc1db66cb9fcaf28d97c8c1950e3538e3b9281 + SECRET_KEY_BASE=4229d5774cfe7f60e75d6b3bf3a1dbb054a696b6d21b6d5de7b73291899797a222265e12c0a8e8d844f83ebacdf9a67ec42584edf1c2b23e1e7813f8a3339041 + ``` + +4. Install and build dependencies + ```bash + npm install + npm install --prefix server + npm install --prefix frontend + npm run build:plugins + ``` + +5. Set up database + ```bash + npm run --prefix server db:create + npm run --prefix server db:reset + ``` + :::info + If at any point you need to reset the database, use this command `npm run --prefix server db:reset` + ::: + +6. Run plugins compilation in watch mode + ```bash + cd ./plugins && npm start + ``` + +7. Run the server + ```bash + cd ./server && npm run start:dev + ``` + +8. Run the client + ```bash + cd ./frontend && npm start + ``` + + + The client will start running on the port 8082, you can access the client by visiting: [https://localhost:8082](https://localhost:8082) + +9. Create login credentials + + Visiting https://localhost:8082 should redirect you to the login page, click on the signup link and enter your email. The emails sent by the server in development environment are captured and are opened in your default browser. Click the invitation link in the email preview to setup the account. + + +## Running tests + +Test config requires the presence of `.env.test` file at the root of the project. + +To run the unit tests +```bash +npm run --prefix server test +``` + +To run e2e tests +```bash +npm run --prefix server test:e2e +``` + +To run a specific unit test +```bash +npm run --prefix server test +``` diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/setup/windows.md b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/windows.md new file mode 100644 index 0000000000..e08d76b153 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/setup/windows.md @@ -0,0 +1,18 @@ +--- +id: windows +title: Windows +--- + +To run ToolJet, please install it in an Ubuntu environment using **[Windows Subsystem for Linux 2](https://learn.microsoft.com/en-us/windows/wsl/install-manual#step-2---check-requirements-for-running-wsl-2)**. You can obtain the Ubuntu environment from the **Microsoft Store** by visiting this [link](https://apps.microsoft.com/store/detail/ubuntu-22042-lts/9PN20MSR04DW). + +After successfully installing the Ubuntu environment, you will have access to a terminal window similar to the one shown below: + +
+ Windows setup +
+ +:::warning +If you are setting up ToolJet on a Windows machine, ensure that the line endings in the **.env** file are changed to LF. By default, they may be set to CRLF, which is not compatible unless configured specifically for Windows machines. +::: + +Once the environment is set up, you can proceed with the steps outlined in the Ubuntu documentation at **[Contributing Guide - Ubuntu Setup](/docs/contributing-guide/setup/ubuntu)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/slackcoc.md b/docs/versioned_docs/version-2.23.0/contributing-guide/slackcoc.md new file mode 100644 index 0000000000..e9a3f7e4d3 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/slackcoc.md @@ -0,0 +1,90 @@ +--- +id: slackcoc +title: Slack Code of Conduct +--- + +# Slack Code of Conduct + +This code of conduct governs ToolJet's Slack Community events and discussions. + +--- + +## Introduction + +- Diversity and inclusion make our community strong. We encourage participation from the most varied and diverse backgrounds possible and want to be very clear about where we stand. + +- Our goal is to maintain a safe, helpful and friendly community for everyone, regardless of experience, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, nationality, or other defining characteristic. + +- This code and related procedures apply to unacceptable behavior occurring in all community venues, including behavior outside the scope of community activities — online and in-person— as well as in all one-on-one communications, and anywhere such behavior has the potential to adversely affect the safety and well-being of community members. + +## Expected behavior + +- Be welcoming. +- Be kind. +- Look out for each other. + +## Unacceptable Behavior + +- Conduct or speech which might be considered sexist, racist, homophobic, transphobic, ableist or otherwise discriminatory or offensive in nature. + - Do not use unwelcome, suggestive, derogatory or inappropriate nicknames or terms. + - Do not show disrespect towards others. (Jokes, innuendo, dismissive attitudes.) +- Intimidation or harassment (online or in-person). +- Disrespect towards differences of opinion. +- Inappropriate attention or contact. Be aware of how your actions affect others. If it makes someone uncomfortable, stop. +- Not understanding the differences between constructive criticism and disparagement. +- Sustained disruptions. +- Violence, threats of violence or violent language. + +## Where does the Code of Conduct apply? + +This Code of Conduct applies to all spaces managed by ToolJet. This includes: + +- Conferences (including social events and peripheral activities) +- Unconferences and sprints +- Meetups, including their discussion boards +- Workshops +- Presentation materials used in talks or sessions +- Slack +- GitHub +- Twitter hashtag and mentions +- Any forums created by the ToolJet which the community uses for communication. + +The Code of Conduct does not exclusively apply to slack or events on an official agenda. For example, if after a scheduled social event you go to a bar with a group of fellow participants, and someone harasses you there, we would still treat that as a CoC violation. Similarly, harassment in Twitter direct messages related to ToolJet can still be covered under this Code of Conduct. + +In addition, violations of this code outside our spaces may affect a person’s ability to participate in them. + +## Enforcement + +- Understand that speech and actions have consequences, and unacceptable behavior will not be tolerated. +- If you are the subject of, or witness to any violations of this Code of Conduct, please contact us via email at hello@tooljet.com or dm @navaneeth on slack. +- If violations occur, organizers will take any action they deem appropriate for the infraction, up to and including expulsion. + +:::info +Portions derived from the [Django Code of Conduct](https://www.djangoproject.com/conduct/), [The Rust Code of Conduct](https://www.rust-lang.org/conduct.html) and [The Ada Initiative](https://adainitiative.org) under a Creative Commons Attribution-ShareAlike license. +::: + +--- + +## Etiquettes to follow + +#### 1. Be nice to everyone + +#### 2. Check off your resolved questions + +If you have received a useful reply to your question, please drop a ✅ reaction or a reply for affirmation. + +#### 3. Try not to repost question + +If you have asked a question and have not got a response in 24hrs, please review your question for clarity and revise it. If you still feel you haven't received adequate response, feel free to ping @navaneeth. + +#### 4. Post in public + +Please don't direct message any individual member of ToolJet community without their explicit permission, independent of reason. Your question might be helpful for other community members. + +#### 5. Don't spam tags + +ToolJet's community of volunteer is very active and helpful, generally avoid tagging members unless it is urgent. + +#### 6. Use threads for discussion + +To keep the main channel area clear, we request to use threads to keep an ongoing conversation organized. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/testing.md b/docs/versioned_docs/version-2.23.0/contributing-guide/testing.md new file mode 100644 index 0000000000..d50589d75e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/testing.md @@ -0,0 +1,57 @@ +--- +id: testing +title: Testing +--- + +Follow the steps below to setup and run the test specifications using Cypress. We recommend [setting up ToolJet locally](/docs/contributing-guide/setup/macos) before proceeding. + +## Setting up + +- Navigate to the `cypress-tests` directory and enter the following command: + ```bash + npm install + ``` + +## Running Tests +#### Headed mode +- To run cypress in **headed** mode, run the following command: + ```bash + npm run cy:open + ``` +- In **headed** mode, the user will be able to choose the test specs from the test runner: +
+ + Cypress headed mode + +
+ +#### Headless mode + +- To run cypress in **headless** mode, run the following command: + ```bash + npm run cy:run + ``` + +- For running specific spec in headless mode, run for specific spec + ```bash + npm run cy:run -- --spec "cypress/e2e/dashboard/multi-workspace/manageSSO.cy.js + ``` + +
+ + Cypress headless mode + +
+ + :::caution + If some test specs need the environment variables, the user can pass them similar to the following command: + ```bash + npm run cy:open -- --env='{"pg_host":"localhost","pg_user":"postgres", "pg_password":"postgres"}' + ``` + or the user can add env-vars in the **cypress.config.js** file + ::: + + +:::info +Check all the Cypress commands [here](https://docs.cypress.io/guides/guides/command-line#Commands) +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/troubleshooting/eslint.md b/docs/versioned_docs/version-2.23.0/contributing-guide/troubleshooting/eslint.md new file mode 100644 index 0000000000..efb8d897fe --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/troubleshooting/eslint.md @@ -0,0 +1,46 @@ +--- +id: eslint +title: EsLint +--- + +# ESLint + +ESLint as a code quality tool is a tool that checks your code for errors and helps you to fix them and enforces a coding style. + + +## Setup + + +1. Install the [ESLint extension](https://eslint.org/docs/latest/user-guide/integrations) for your code editor. +2. Set your editor's default formatter to `ESLint`. + +:::tip +For VSCode users, you can set the formatter to `ESLint` in the [**settings.json**](https://code.visualstudio.com/docs/getstarted/settings#_settingsjson). +::: + +3. Install the dependencies. + ```bash + npm install + npm install --prefix server + npm install --prefix frontend + ``` +4. Run the linter. + ```bash + npm run --prefix server lint + npm run --prefix frontend lint + ``` +5. Fix the ESlint errors and warnings. + ```bash + npm run --prefix server format + npm run --prefix frontend format + ``` + + +## Requirements + +1. **Node version 18.3.0** +2. **npm version 8.11.0** + +:::tip +It is recommended to check the VSCode **Setting.json**(Press `ctrl/cmnd + P` and search `>Settings (JSON)`) file to ensure there are no overrides to the eslint config rules. Comment the following rules for eslint: **eslint.options: {...}**. +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/troubleshooting/runpy-limits.md b/docs/versioned_docs/version-2.23.0/contributing-guide/troubleshooting/runpy-limits.md new file mode 100644 index 0000000000..dd2390612d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/troubleshooting/runpy-limits.md @@ -0,0 +1,40 @@ +--- +id: runpy-limitations +title: RunPy limitations +--- + +### Limitation: Unable to Open External URLs with urlopen in RunPy + +When using the `urlopen` function within a RunPy query, you may encounter an error when trying to open external URLs, such as `https://api.baserow.io`. This limitation is due to the underlying framework used by RunPy, Pyodide, which has certain constraints and may not support all features available in a standard Python environment. + +### Solution: Using fetch function with JavaScript + +To overcome this limitation, you can utilize the `fetch` function from JavaScript, as Pyodide supports interoperability between Python and JavaScript. Here's an example of how to make an HTTP request using the `fetch` function in a RunPy query: + +```python +from js import fetch +import json + +async def push_data(url, data): + response = await fetch( + url, + method='POST', + headers=[ + ["Authorization", "Token "], + ["Content-Type", "application/json"] + ], + body=data + ) + reply = await response.json() + return reply + +url = "https://api.baserow.io/api/database/rows/table/.../?user_field_names=true" +reply = await push_data(url, json.dumps()) +reply +``` + +In the example above, the `fetch` function is used to make an HTTP POST request to the specified URL. The `Authorization` header is included to provide the necessary authentication token, and the request body is passed as JSON data. + +By using the `fetch` function and incorporating JavaScript interoperability, you can successfully make HTTP requests within a RunPy query in scenarios where `urlopen` may encounter limitations. + +It's important to note that the solution provided here assumes you have the necessary authorization token and data to push to the Baserow table. Adjust the code accordingly to fit your specific requirements. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/tutorials/_category_.json b/docs/versioned_docs/version-2.23.0/contributing-guide/tutorials/_category_.json new file mode 100644 index 0000000000..0d7c9bc587 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/tutorials/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Tutorials", + "position": 2, + "collapsed": true +} diff --git a/docs/versioned_docs/version-2.23.0/contributing-guide/tutorials/create-widget.md b/docs/versioned_docs/version-2.23.0/contributing-guide/tutorials/create-widget.md new file mode 100644 index 0000000000..999e1999db --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/contributing-guide/tutorials/create-widget.md @@ -0,0 +1,27 @@ +--- +id: creating-widget +title: Creating Widgets +--- + +# Creating Widgets + +These are some of the most useful properties and functions passed to the widget + +### properties + +The `properties` object will contain the configurable properties of a widget, initially obtained from its definition on `widgetConfig.js`. +The values inside `properties` change whenever the developer makes changes to the inspector panel of ToolJet editor. + +### exposedVariables + +The `exposedVariables` object will contain the values of all exposed variables as configured in `widgetConfig.js`. + +### setExposedVariable('exposedVariableName', newValue) + +This function allows you to update the value of an exposed variable to `newValue`. + +### validate(value) + +This function validates the `value` passed based on the validation settings configured on the inspector panel for the widget. +It returns an array `[isValid, validationError]`, which represents respectively, whether the `value` passed is valid, +and the error message if there is one. diff --git a/docs/versioned_docs/version-2.23.0/copilot.md b/docs/versioned_docs/version-2.23.0/copilot.md new file mode 100644 index 0000000000..8400b47241 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/copilot.md @@ -0,0 +1,102 @@ +--- +id: tooljet-copilot +title: Copilot +--- + +
Available on: Paid plans
+ +:::info BETA +ToolJet Copilot is currently in private beta for **Business** and **Enterprise** users only. +::: + +**ToolJet Copilot** helps you write your queries faster. It uses OpenAI to suggest queries based on your data. + +## Activating Copilot + +To gain access to Copilot, all users, including administrators, can individually sign up for the waitlist program. Upon successful sign up, each user will be issued a distinctive API key linked to their account. However, the exclusive authority to activate Copilot within the workspace settings lies solely with administrators. Administrators can proceed to the Copilot section in the workspace settings, where they can utilize their respective API key to set the "Enable Copilot" toggle option. + +You can join the waitlist here: **https://tooljet.com/copilot** + +:::info +- Copilot can be used by users who have **permissions to edit** the app with the copilot setup. +::: + +
+ +ToolJet Copilot + +
+ +## Using Copilot + +Once activated, the Copilot feature can be accessed while editing any query within the transformations section in the query editor. + +Copilot's functionality relies on the provision of clear and concise plain English prompts. It possesses the capability to interact with and retrieve information from various components, enabling it to generate code specific to the desired actions associated with those components. This capability is facilitated by Copilot's comprehensive understanding of the application's present state. + +### Token Limit per Workspace + +A token is a unit of text that language models like ChatGPT process, such as a word or a character. To ensure fair usage and resource allocation among workspaces, a token limit is implemented. Currently, the token limit is set to **400**. If the token limit is surpassed, the request is declined with the message **"Unable to process request. Max tokens exceeded."** + +### Rate-Limiting + +To prevent abuse or excessive usage of the Copilot API, rate-limiting measures are in place. The following rules apply: + +1. Each user is restricted to a maximum number of requests within a specific time frame. +2. The current rate limit allows for 100 requests per minute per user. +3. If a user surpasses the rate limit, subsequent requests from that user will be rejected. + +:::info +When generating an API key, if a workspace has 5 editors, the daily request limit will be 500 (100 requests per editor). Even if the workspace later expands to 10 editors after a week, the maximum number of requests allowed per day will still be 500. +::: + +### Example: Generating a SQL statement + +This example demonstrates the usage of copilot by generating a SQL query to fetch the order details from a PostgreSQL database based on the key provided in the REST API data. + +- Create a RESTAPI query using this mock api endpoint: https://fakestoreapi.com/users/1 +- Enable transformation on the query editor + +
+ +ToolJet Copilot + +
+ +- To generate a SQL query using Copilot, first enter the desired prompt within comments in the transformations code editor. Once the prompt has been entered, simply click the **Generate Code** button, and Copilot will generate the corresponding SQL query. + +- Assuming that a PostgreSQL data source is already connected and there are two tables in it, namely `customer` and `orders`, enter the provided prompt in the code editor: + +```bash +/* +Assume the data is an object which has email key. +assume we have a database with two tables: "customer" and "orders." The "customer" table has columns such as "customer_id," "customer_name," and "country." The "orders" table has columns such as "order_id," "customer_id," "order_date," and "total_amount." +return a SQL query to retrieve the total order amounts for customers from the email key retrieved from the data, who have placed more than three orders.*/ +``` + +- Click on the "Generate Code" button to generate the SQL query. + +- Once the code is generated, add a return statement below the code to return the generated SQL query. The variable name for the query might be different in your generated code. + +```bash +return query //the variable might be different in your generated code +``` + +- Preview the returned SQL statement in the preview block to check if it is correct. Then click on the "Run" button to trigger the query. + +- Once the query is executed, create a new PostgreSQL query in SQL mode and use JavaScript to get the data query data dynamically: + +```js +{{queries.restapi1.data}} +``` + +
+ +ToolJet Copilot + +
+ +:::caution +While using ToolJet Copilot, it is important to note that the accuracy of the output cannot be guaranteed by the platform. Ultimately, it is your responsibility to assess and evaluate any query before executing it. +::: + +If you have feedback or questions about ToolJet Copilot, feel free to join our **[slack community](https://tooljet.com/slack)**. diff --git a/docs/versioned_docs/version-2.23.0/dashboard.md b/docs/versioned_docs/version-2.23.0/dashboard.md new file mode 100644 index 0000000000..821e12663f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/dashboard.md @@ -0,0 +1,248 @@ +--- +id: dashboard +title: Dashboard +--- + +The ToolJet Dashboard is the initial landing page that you see upon logging into your workspace. This interface serves as a central hub where you can access a variety of features. Primarily, it displays all the applications you've created within ToolJet. Moreover, you have the capability to create new workspaces and applications directly from this dashboard. Additionally, it provides an option to create folders for categorizing and managing applications for easier organization, access control, and workflow management. + +Furthermore, the dashboard serves as a gateway to various essential sections, such as **[Workflows](/docs/workflows/overview)**, **[ToolJet Database](/docs/tooljet-database)**, **[Data Sources](/docs/data-sources/overview)**, **[Marketplace](/docs/marketplace/marketplace-overview)**, **[Workspace Settings](/docs/tutorial/manage-users-groups)**, **[Instance Settings](/docs/enterprise/superadmin/#instance-settings)**, and **[Audit logs](/docs/enterprise/audit_logs/)**. You can effortlessly navigate to these sections directly from the dashboard. + +
+ +App menu options + +
+ +## Workspace Manager + +The workspace manager is located on the bottom left corner of the dashboard. Clicking on the workspace manager will open a dropdown menu with a list of all the workspaces you are a part of. You can switch between workspaces by clicking on the workspace name from the dropdown menu. + +
+ +Dashboard + +
+ +### Add new workspace + +On clicking the `Add new workspace` button, a modal will open where you can enter the name of the workspace, enter the unique workspace slug, and can see the preview of the workspace URL. Click on the `+ Create Workspace` button to create a new workspace. + +Previously, the workspace slug was an automatically generated workspace ID, like this: `https://tooljet.com/262750db-b2b8-4abb-9404-8995c2ecb2a0`. Now, you can set a custom, unique slug for your workspace which will generate a more accessible or readable URL such as `https://tooljet.com/apac-team)`. + +#### Conditions for workspace slug + +- The workspace slug should be unique. +- The workspace slug should not contain any special characters except `-`. +- The workspace slug should not contain any spaces. +- The workspace slug should not contain any capital letters. +- The workspace slug should not be empty. + +
+ +Dashboard + +
+ +### Edit workspace + +Similar to the `Add new workspace` button, clicking on the `Edit workspace` button will open a modal where you can edit the name of the workspace and the workspace slug. Click on the `Save` button to update the changes. + +## Create a new app + +To create a new app, click on the `Create new app` button on the top left corner of the dashboard. Clicking on this button will open a modal where you can enter the name of the app and then click on the `+ Create app` button to create a new app. + +
+ +Dashboard + +
+
+ +There are three dots on the right side of the `Create new app` button. Clicking on these dots will open a dropdown menu with two options: + +- **[Choose from templates](#choose-from-templates)** +- **[Import](#import)** + +### Choose from templates + +This option will open a modal with a list of pre-built templates. You can choose any template from this list to create a new app. + +
+ +Dashboard + +
+ +### Import + +This option will open a file picker to import a JSON file. This JSON file should be the app exported from ToolJet. + +
+ +Dashboard + +
+ +### Importing app connected to marketplace plugins + +When importing an app with marketplace plugins, the marketplace plugin should be installed in the tooljet workspace where the app is being imported. If the marketplace plugin is not installed, the app will be imported without the queries for that plugin. + +#### When marketplace plugin is installed + +If marketplace plugin is installed in the tooljet workspace where the app is being imported, the queries connected to the marketplace plugin will be available in the imported application. The queries will be linked to the data source with the same name if it is already present. If the data source is not present, a new data source will be created of that marketplace plugin and linked to the queries. + +#### When marketplace plugin is not installed + +If you have an app with a query linked to a marketplace plugin, and you import that app in a tooljet workspace where the marketplace plugin is not installed as the data source, the queries will be not be available in the imported application. + +### Importing app connected to tooljet table + +When the app(JSON file) that includes the table schema is imported, and the table is not present in the tooljet database of the workspace where the app is being imported, a new table will be created in the tooljet database with the same name as the table in the imported app. + +If the table with the same name is already present in the workspace, the new table will be created with the name `_`. Example: `_1627980000`. + +## Folders +### Create a new folder + +Folders can be created to organize your apps. To create a new folder, click on the `+` button on the left drawer of the dashboard. Clicking on this button will open a modal, enter the name of the folder and click on the `Create Folder` button to create a new folder. + +### Delete or Edit Folder + +A folder can be **deleted** or **renamed**. To delete or rename a folder, click on the kebab menu on the right side of the folder name. Clicking on kebab menu will open a dropdown menu with two options: + +- **Edit folder**: This option will open a modal, enter the new name of the folder and click on the `Edit` button to rename the folder. +- **Delete folder**: This option will open a confirmation modal to delete the folder. Click on the `Delete` button to delete the folder. + +
+ +Dashboard + +
+ +### Search folders + +Folders can be searched by clicking on the search icon on the left drawer of the dashboard. Clicking on the search icon will open a search bar, enter the name of the folder to search. + +
+ +Dashboard + +
+ +### Slug for folders + +The folder's URL slug is generated automatically from its name, providing direct access to the folder using the slug. + +To get the URL of a specific folder, the user will have to select that folder and then copy the URL from the address bar of the browser. The copied URL can be used to share with other users of the workspace. + +Example: If the name of the folder is `customer support`, The folder can be accessed directly from the URL `https://tooljet.com/?folder=customer%20support`. + +
+ +Dashboard + +
+ +## App cards + +The dashboard displays all the apps created in the workspace as cards. These cards are displayed in a grid layout. The app cards display the **name of the app**, the **name of the creator**, and the **date of creation**. The app cards also display the app **icon**, which can be changed by clicking on the `Change Icon` option from the app menu. + +
+ +Dashboard + +
+ +## App menu + +The app menu is located on the top right corner of the app card. Clicking on the app menu will open a dropdown menu with a list of options. These options are: + +- **[Change Icon](#change-icon)** +- **[Add to folder](#add-to-folder)** +- **[Clone app](#clone-app)** +- **[Export app](#export-app)** +- **[Delete app](#delete-app)** + +
+ +Dashboard + +
+ +### Change Icon + +This option will open a modal with a list of icons. You can choose any icon from this list to change the app icon. + +
+ +Dashboard + +
+ +### Add to folder + +This option will open a modal with a list of folders. You can choose any folder from this list to add the app to the folder. + +
+ +Dashboard + +
+ +### Clone app + +Selecting this option will immediately open the cloned app in the app builder with the same configuration as the original app. The new app will be named as `` followed by unix timestamp. Example: ` 1627980000`. + +
+ +Dashboard + +
+ +### Export app + +This option will download a JSON file of the application. This JSON file can be [imported](#import) to ToolJet to create a new app. The exported app will include all the queries connected to global data sources including the data source created from Marketplace plugins. + +This option allows you to select a specific version of the app to export or export all the versions of the app. To export a specific version of the app, select a version from the list of available versions in the modal and click on the `Export selected version` and to export all the versions of the app, click on the `Export All` button. + +#### Export ToolJet table schema + +Selecting this option will inclue the schema of the tooljet table connected to that application in the exported JSON file. This option is available for all the apps on ToolJet however only the apps with a tooljet table connected(includes tjdb query) will have the schema included in the exported JSON file. + +This JSON file can be used to [import](#importing-app-connected-to-tooljet-table) the application to ToolJet along with the table schema that was connected to the application. + +
+ +Dashboard + +
+ +### Delete app + +This option will open a confirmation modal to delete the app. Click on the `Delete` button to delete the app. + +
+ +Dashboard + +
+ +## App search + +Apps can be searched by clicking on the search bar on the center of the dashboard. Click on the search bar and enter the name of the app to search. + +
+ +Dashboard + +
+ +## Current ToolJet Version + +The current version of ToolJet is displayed on the top right corner of the dashboard. + +
+ +Dashboard + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/_category_.json b/docs/versioned_docs/version-2.23.0/data-sources/_category_.json new file mode 100644 index 0000000000..c6ad9ffd74 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Datasource Reference", + "position": 5, + "collapsed": true +} diff --git a/docs/versioned_docs/version-2.23.0/data-sources/airtable.md b/docs/versioned_docs/version-2.23.0/data-sources/airtable.md new file mode 100644 index 0000000000..ec9b54b6d2 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/airtable.md @@ -0,0 +1,217 @@ +--- +id: airtable +title: Airtable +--- + +# Airtable + +ToolJet can connect to your Airtable account to read and write data.Airtable Personal Access Token is required to connect to the Airtable data source on ToolJet. You can generate the PAT by visiting [Developer Hub from your Airtable profile](https://support.airtable.com/docs/creating-and-using-api-keys-and-access-tokens#understanding-personal-access-token-basic-actions). + +irtable record + +:::info +Airtable API has a rate limit, and at the time of writing this documentation, the limit is five(5) requests per second per base. You can read more about rate limits here **[Airtable API](https://airtable.com/api)**. +::: + +## Supported Operations + +- **[Listing records](#listing-records)** +- **[Retrieving a record](#retrieving-a-record)** +- **[Creating a record](#creating-a-record)** +- **[Updating a record](#updating-a-record)** +- **[Deleting a record](#deleting-a-record)** + +### Listing records + +This query lists all the records in a table. The results are paginated and each page can have up to 100 records. + +#### Required parameters: + +- **Base ID:** To find the Base ID, first visit **airtable.com/api**. Select from the list of bases the base whose ID you'd like to find out. Example Base ID: `appDT3UCPffPiSmFd` +- **Table name:** Enter the table name whose data you want to fetch. + +#### Optional parameters: + +- **Page size:** The number of records returned in each request. Must be less than or equal to 100. Default is 100. +- **offset:** If there are more records, the response will contain an offset. To fetch the next page of records, include offset in the next request's parameters. + +List airtable record + +Example response from Airtable: + +```json +{ + "records": [ + { + "id": "recu9xMnUdr2n2cw8", + "fields": { + "Notes": "sdfdsf", + "Name": "dsfdsf" + }, + "createdTime": "2021-05-12T14:30:33.000Z" + }, + { + "id": "recyIdR7bVdQvmKXa", + "fields": { + "Notes": "sdfdsf", + "Name": "dfds" + }, + "createdTime": "2021-05-12T14:30:33.000Z" + }, + { + "id": "recAOzdIHaRpvRaGE", + "fields": { + "Notes": "sdfsdfsd", + "Name": "sdfdsf" + }, + "createdTime": "2021-05-12T14:30:33.000Z" + } + ], + "offset": "recAOzdIHaRpvRaGE" +} +``` + +### Retrieving a record + +#### Required parameters: + +- **Base ID** +- **Table name** +- **Record ID** + +Retrieve airtable record + +Example response from Airtable: + +```json +{ + "id": "recu9xMnUdr2n2cw8", + "fields": { + "Notes": "sdfdsf", + "Name": "dsfdsf" + }, + "createdTime": "2021-05-12T14:30:33.000Z" +} +``` + +### Creating a record + +#### Required parameters: + +- **Base ID** +- **Table name** +- **Records** + +Create airtable record + +#### Example Records: + +```json +[ + { + "fields": { + "Notes": "sdfdsf", + "Name": "dsfdsf" + } + }, + { + "fields": { + "Notes": "note1", + "Name": "dsfdsf" + } + } +] +``` + +Click on the `run` button to run the query. + +:::info +NOTE: Query must be saved before running. +::: + +Example response from Airtable: + +```json +{ + "records": [ + { + "id": "rec5RuZ1COoZGtGDY", + "fields": { + "Notes": "sdfdsf", + "Name": "dsfdsf" + }, + "createdTime": "2022-02-07T20:25:27.000Z" + }, + { + "id": "recaYbFPonNNu6Cwj", + "fields": { + "Notes": "note1", + "Name": "dsfdsf" + }, + "createdTime": "2022-02-07T20:25:27.000Z" + } + ] +} +``` + +### Updating a record + +#### Required parameters: + +- **Base ID** +- **Table name** +- **Record ID** + +Update airtable record + +#### Example body: + +
+ +Airtable update body + +
+ +Click on the `run` button to run the query. + +:::info +NOTE: Query must be saved before running. +::: + +Example response from Airtable: + +```json +{ + "id": "recu9xMnUdr2n2cw8", + "fields": { + "Notes": "Example Notes", + "Name": "change" + }, + "createdTime": "2021-08-08T17:27:17.000Z" +} +``` + +### Deleting a record + +#### Required parameters: + +- **Base ID** +- **Table name** +- **Record ID** + +Delete airtable record + +Click on the `run` button to run the query. + +:::info +NOTE: Query must be saved before running. +::: + +Example response from Airtable: + +```json +{ + deleted: true + id: "recIKsyZgqI4zoqS7" +} +``` diff --git a/docs/versioned_docs/version-2.23.0/data-sources/amazonses.md b/docs/versioned_docs/version-2.23.0/data-sources/amazonses.md new file mode 100644 index 0000000000..3d3d886574 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/amazonses.md @@ -0,0 +1,61 @@ +--- +id: amazonses +title: Amazon SES +--- + +# Amazon SES + +ToolJet can connect to your Amazon SES account to send emails. + +## Connection +To add a new Amazon SES API datasource, click the **Datasource manager** icon on the left-sidebar of the app builder and click on the `Add datasource` button, then select Amazon SES from the modal that pops up. + +ToolJet requires the following to connect to Amazon SES: + +- **Region** +- **Access key** +- **Secret key** + +It is recommended to create a new IAM user for the database so that you can control the access levels of ToolJet. + +Click on the 'Save' button to save the data source. + +
+ +Amazon SES + +
+ +## Supported operations +1. Email service + +### Email service +Required parameters: +- Send email to +- Send email from +- Subject +- Body as text + + +Optional parameters: +- Body as HTML +- CC Addresses +- BCC Addresses + + +:::info +**Send mail to** - accepts an array/list of emails separated by comma. +For example: +`{{["dev@tooljet.io", "admin@tooljet.io"]}}`. + +**Send mail from** - accepts a string. +For example: `admin@tooljet.io` +::: + +:::tip +**Send a single email to multiple recipients** - The `Send mail to` field can contain an array of recipients, which will send a single email with all of the recipients in the field. +::: + +:::info Note +Query should be saved before running. +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/appwrite.md b/docs/versioned_docs/version-2.23.0/data-sources/appwrite.md new file mode 100644 index 0000000000..c987afdd6b --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/appwrite.md @@ -0,0 +1,160 @@ +--- +id: appwrite +title: Appwrite +--- + +# Appwrite + +ToolJet can connect to appwrite database to read/write data. + +## Connection + +ToolJet connects to your Appwrite app using : +- **Host (API endpoint)** +- **Project ID** +- **Secret key** + +You'll find the Secret key and other credentials on your Appwrite's project settings page. You may need to create a new key if you don't have one already. + +:::info +You should also set the scope for access to a particular resource. Learn more about the **API keys and scopes** [here](https://appwrite.io/docs/keys). +::: + +To establish a connection with the Appwrite data source, you can either click on the `+Add new data source` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. + +
+ +Appwrite intro + +
+ +## Querying Appwrite + +After setting up the Appwrite datasource, you can click on the `+` button of the query manager at the bottom panel of the editor and select the Appwrite data source that you added in the previous step. + +
+ +Appwrite intro + +
+ +After selecting Appwrite datasource, select the operation that you want to perform on the Appwrite database and click **Save** to save the query. + +:::tip +Query results can be transformed using Transformations. Read our **Transformation documentation** [here](/docs/tutorial/transformations) +::: + +## Supported operations + +1. **[List documents](#list-documents)** +2. **[Get document](#get-document)** +3. **[Create document](#create-document)** +4. **[Update document](#update-document)** +5. **[Delete document](#delete-document)** +6. **[Bulk update using document id](#bulk-update-using-document-id)** + +### List documents + +This operation can be used to get a list of all the user documents. + +#### Required parameters: + +- **Collection ID:** You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/database#createCollection) or appwrite console. The value for collection ID field should be of `String` type. + +#### Optional parameters: + +- **Limit:** Maximum number of documents to return in the response. By default, it will return a maximum of 25 results. A maximum of 100 results is allowed per request. The Limit value should be of `integer` type. +- **Order fields:** Array of attributes used to sort results. The order field value should be an `array`. +- **Order types:** Array of order directions for sorting attributes. Possible values are DESC for descending order or ASC for ascending order. The order field value should be an `array`. +- **Field, Operator, and Value:** For filtering the results, you can enter a field(attribute) name, use the appropriate operator from the dropdown, and set a value. + +
+ +Appwrite List + +
+ +### Get document + +Use this operation to get a document from a collection by its unique ID. + +#### Required parameters: + +- **Collection ID:** You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/database#createCollection) or appwrite console. The value for collection ID should be of `String` type. + +- **Document ID:** Enter the document ID of the document that you want to get. The document ID should be of `String` type. + +
+ +Appwrite get + +
+ +### Add Document to Collection + +Use this operation to create a new document in a collection. + +#### Required parameters: + +- **Collection ID:** You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/database#createCollection) or appwrite console. The collection ID should be of `String` type. + +- **Body:** Enter the document data as a JSON object. + +
+ +Appwrite add + +
+ +### Update document + +Use this operation to update a document. + +#### Required parameters: + +- **Collection ID:** You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/database#createCollection) or appwrite console. The value for collection ID should be of `String` type. + +- **Document ID:** Enter the document ID of the document that you want to get. The document ID should be of `String` type. + +- **Body:** Enter the document data as a JSON object. + +
+ +Appwrite update + +
+ +### Delete document + +Use this operation for deleting a document in the collection. + +#### Required parameters: + +- **Collection ID:** You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/database#createCollection) or appwrite console. The value for collection ID should be of `String` type. + +- **Document ID:** Enter the document ID of the document that you want to get. The document ID should be of `String` type. + +
+ +Appwrite delete + +
+ +### Bulk update using document id + +Use this operation for bulk updating a document in a collection. + +#### Required parameters: + +- **Collection ID:** You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/database#createCollection) or appwrite console. The value for collection ID should be of `String` type. + +- **Key for document ID:** Enter the key or attribute name that can be used to identify each record. + +- **Records:** The array of objects that will contain the data for updating each record in the database +and these objects must contain a key-value pair to point unique record in the database (key for document) + +
+ +Appwrite bulk update + +
diff --git a/docs/versioned_docs/version-2.23.0/data-sources/athena.md b/docs/versioned_docs/version-2.23.0/data-sources/athena.md new file mode 100644 index 0000000000..0b67b6d25a --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/athena.md @@ -0,0 +1,63 @@ + +# Athena + +ToolJet can connect to Amazon Athena which is an interactive query service that makes it easy to analyze data in Amazon S3 using standard SQL. + +- [Connection](#connection) +- [Querying-athena](#querying-amazon-athena) +- [Basic Operation](#basic-queries) + +## Connection + +To establish a connection with the Amazon Athena data source, you can either click on the `+Add new data source` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. + +ToolJet requires the following to connect to your Athena. + +- **Database** +- **S3 output location** +- **Access key** +- **Secret key** +- **Region** + +:::info +You can also configure for **[additional optional parameters](https://github.com/ghdna/athena-express)**. +::: + + +Athena connection + + +## Querying Amazon Athena + +- Click on `+` button of the query manager at the bottom panel of the editor and select the database added in the previous step as the datasource. Query manager then can be used to write SQL queries. + +- Click on the `run` button to run the query. + +:::tip +**Refer amazon athena docs here for more info:** [link](https://docs.aws.amazon.com/athena/latest/ug/what-is.html) +::: + +### Basic queries + +#### Creating table + + +```sql +CREATE EXTERNAL TABLE student ( + name STRING, + age INT +) LOCATION 's3://athena-express-akiatfa53s-2022/'; +``` + +#### Inserting to table + +```sql +INSERT INTO student +VALUES ('Lansing',1) +``` + +#### Select operation + +```sql +SELECT * from student WHERE AGE=1 +``` diff --git a/docs/versioned_docs/version-2.23.0/data-sources/azureblob.md b/docs/versioned_docs/version-2.23.0/data-sources/azureblob.md new file mode 100644 index 0000000000..7153572f48 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/azureblob.md @@ -0,0 +1,140 @@ +--- +id: azureblob +title: Azure Blob +--- + +ToolJet offers the capability to establish a connection with Azure Blob storage in order to read and store large objects. + +## Connection + +To connect ToolJet with the Azure Blob data source, you have two options: +1. Click on the `+Add new data source` button in the query panel. +2. Go to the **[Data Sources](/docs/data-sources/overview)** page on the ToolJet dashboard. + +
+ +Azure Blob - ToolJet + +
+ +To successfully establish the connection, ToolJet requires the following details: +- **Connection String**: The connection string can be found on the dashboard of Azure Blob Storage. + +Once you have entered the connection string, click on the **Test connection** button to verify the connection's success. To save the data source, click on the **Save** button. + +## Querying Azure Blob + +Once you have connected to the Azure Blob data source, follow these steps to create queries and interact with Azure Blob storage from the ToolJet application: + +1. Open the ToolJet application and navigate to the query panel at the bottom of the app builder. +2. Click the `+Add` button to open the list of available `local` and `data sources`. +3. Select **Azure Blob** from the data source section. +4. Select the desired **operation** from the dropdown and enter the required **parameters**. +5. **Rename**(optional) and **Create** the query. +6. Click **Preview** to view the data returned from the query or click **Run** to execute the query. + +:::tip +Query results can be transformed using Transformation. For more information on transformations, please refer to our documentation at **[link](/docs/tutorial/transformations)**. +::: + +
+ +Azure Blob - ToolJet + +
+ +## Supported Operations + +1. **[Create Container](#create-container)** +2. **[List Containers](#list-containers)** +3. **[List Blobs](#list-blobs)** +4. **[Upload Blob](#upload-blob)** +5. **[Read Blob](#read-blob)** +6. **[Delete Blob](#delete-blob)** + + +### Create Container + +The create container operation enables the creation of new containers within Azure Blob storage. Containers serve as logical units for organizing and managing blob data. Users can provide a unique name for the container. Once created, the container is available for use in storing and organizing blob data. If the container with the same name already exists, the operation fails. + +#### Required Parameters: + +- **Container Name:** Name of the container that you want to create. + +
+ +Azure blob: create container operation + +
+ +### List Containers + +The list container operation allows you to retrieve a list of containers within Azure Blob storage. + +
+ +Azure blob: list container operation + +
+ +### List Blobs + +The list blobs operation enables you to retrieve a list of blobs within a specific container in Azure Blob storage. + +#### Required Parameter: + +- **Container:** Specify the name of the container from which you wish to retrieve a list of blobs. +- **Page Size:** Specify the maximum number of blobs to be returned per page or request. + +#### Optional Parameters: + +- **Prefix:** Filter the list of blobs based on a specific prefix or prefix pattern, allowing you to narrow down the results to blobs with names that start with the specified prefix. +- **Continuation Token:** A marker or token used to retrieve the next page of results when there are more blobs available beyond the initial page. + +
+ +Azure blob: list blobs operation + +
+ +### Upload Blob + +The upload blob operation allows you to upload a new blob or update an existing blob in Azure Blob storage. It provides a convenient way to store data such as files, images, or documents in the specified container. + +#### Required Parameters: + +- **Container**: Specify the name of the container where the blob will be uploaded or updated. +- **Blob Name**: Provide a unique name for the blob. This name is used to identify and access the blob within the specified container. +- **Content Type**: Set the content type of the blob, which indicates the type of data being stored. It helps clients interpret the blob content correctly when accessing it. example: **image/jpeg** for JPEG images or **image/png** for PNG image. You can also get the content type from the exposed variable of the file picker component. +- **Upload Data**: Select or provide the data to be uploaded as the content of the blob. This can be a file from your local system, binary data, or text content. You can also get the data from the exposed variable of the file picker component. +- **Encoding**: Choose the encoding format for the uploaded data if applicable. This parameter determines how the data is encoded before being stored as the blob content. If the value is left blank then it takes **UTF-8** by default. + +### Read Blob + +The read blob operation allows you to retrieve the content of a specific blob stored in Azure Blob storage. It enables you to access and retrieve the data stored within the blob for further processing or display. + +#### Required Parameters: + +- **Container**: Specify the name of the container where the blob is located. +- **Blob Name**: Provide the unique name of the blob you want to read. This identifies the specific blob within the specified container + +
+ +Azure blob: read blob operation + +
+ +### Delete Blob + +The delete blob operation allows you to remove a specific blob from Azure Blob storage. This operation permanently deletes the blob and its associated data, freeing up storage space and removing the blob from the container. + +#### Required Parameters: + +- **Container**: Specify the name of the container from which you want to delete the blob. +- **Blob Name**: Provide the unique name of the blob you want to delete. This identifies the specific blob within the specified container. + +
+ +Azure blob: delete blob operation + +
diff --git a/docs/versioned_docs/version-2.23.0/data-sources/azureblobstorage.md b/docs/versioned_docs/version-2.23.0/data-sources/azureblobstorage.md new file mode 100644 index 0000000000..19bd438e37 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/azureblobstorage.md @@ -0,0 +1,11 @@ + +# azureblobstorage + +ToolJet can connect to Azure Blob Storage databases to read and write data. + +- [Connection](#connection) +- [Getting Started](#querying-azureblobstorage) + +## Connection + +## Querying Azure Blob Storage \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/baserow.md b/docs/versioned_docs/version-2.23.0/data-sources/baserow.md new file mode 100644 index 0000000000..4acd9fadbc --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/baserow.md @@ -0,0 +1,267 @@ +--- +id: baserow +title: Baserow +--- + +# Baserow + +ToolJet can connect to your Baserow account to read and write data. + +## Connection + +To connect to Baserow, you need to provide the following details: + +- **API token**: You can create an API token from your Baserow dashboard. You can follow the steps to create API token from [this link](https://baserow.io/user-docs/personal-api-tokens). +- **Host**: You can either select the Baserow Cloud or Self-hosted option. + - **Base URL**: If you select the self-hosted option, you need to provide the base URL of your Baserow instance. + + + +Baserow intro + + +## Supported Operations + +- [List fields](#list-fields) +- [List rows](#list-rows) +- [Get row](#get-row) +- [Create row](#create-row) +- [Update row](#update-row) +- [Move row](#move-row) +- [Delete row](#delete-row) + +### List fields + +This query lists all the fields in a table. + +#### Required parameters: + +- **Table ID** + + +Baserow list fields + + +Example response from Baserow: + +```json +[ + { + "id": 331156, + "table_id": 57209, + "name": "Name", + "order": 0, + "type": "text", + "primary": true, + "text_default": "" + }, + { + "id": 331157, + "table_id": 57209, + "name": "Last name", + "order": 1, + "type": "text", + "primary": false, + "text_default": "" + }, + { + "id": 331158, + "table_id": 57209, + "name": "Notes", + "order": 2, + "type": "long_text", + "primary": false + }, + { + "id": 331159, + "table_id": 57209, + "name": "Active", + "order": 3, + "type": "boolean", + "primary": false + } +] +``` + +### List rows + +This query lists all the rows in a table. + +#### Required parameters: + +- **Table ID** + + +Baserow list + + +Example response from Baserow: + +```json +{ + "count": 3, + "next": null, + "previous": null, + "results": [ + { + "id": 2, + "order": "0.99999999999999999991", + "Name": "Bill", + "Last name": "Gates", + "Notes": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce dignissim, urna eget rutrum sollicitudin, sapien diam interdum nisi, quis malesuada nibh eros a est.", + "Active": false + }, + { + "id": 3, + "order": "0.99999999999999999992", + "Name": "Mark", + "Last name": "Zuckerburg", + "Notes": null, + "Active": true + }, + { + "id": 1, + "order": "0.99999999999999999997", + "Name": "Elon", + "Last name": "Musk", + "Notes": null, + "Active": true + } + ] +} +``` + +### Get row + +#### Required parameters: + +- **Table ID** +- **Row ID** + + +Baserow get + + +Example response from Baserow: + +```json +{ + "id": 1, + "order": "0.99999999999999999997", + "Name": "Elon", + "Last name": "Musk", + "Notes": null, + "Active": true +} +``` + +### Create row + +#### Required parameters: + +- **Table ID** +- **Records** + + +Bserow create + + +#### Example Records: + +```json +{ + "Name": "Test", + "Last name": "Test Name", + "Notes": "Test Note", + "Active": true +} +``` + +Example response from Baserow: + +```json +{ + "id": 19, + "order": "0.99999999999999999996", + "Name": "Test", + "Last name": "Test Name", + "Notes": "Test Note", + "Active": true +} +``` + +### Update row + +#### Required parameters: + +- **Table ID** +- **Row ID** +- **Records** + + +Baserow update + +#### Example Records: + +```json +{ + "Name": "Test", + "Last name": "Test Name", + "Notes": "Test Note", + "Active": true +} +``` + +Example response from Baserow: + +```json +{ + "id": 19, + "order": "0.99999999999999999996", + "Name": "Test", + "Last name": "Test Name", + "Notes": "Test Note", + "Active": true +} +``` + +### Move row + +#### Required parameters: + +- **Table ID** +- **Row ID** + +#### Optional parameters: + +- **Before ID** (The row will be moved before the entered ID. If not provided, then the row will be moved to the end ) + + +Baserow move row + + +Example response from Baserow: + +```json +{ + "id": 3, + "order": "2.00000000000000000000", + "Name": "Mark", + "Last name": "Zuckerburg", + "Notes": null, + "Active": true +} +``` + +### Delete row + +#### Required parameters: + +- **Table ID** +- **Row ID** + + +Baserow delete + + +While deleting a row, the response will be either success or failure from Baserow diff --git a/docs/versioned_docs/version-2.23.0/data-sources/bigquery.md b/docs/versioned_docs/version-2.23.0/data-sources/bigquery.md new file mode 100644 index 0000000000..2b6eb57145 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/bigquery.md @@ -0,0 +1,157 @@ +--- +id: bigquery +title: BigQuery +--- + +# BigQuery + +ToolJet can connect to BigQuery databases to run BigQuery queries. + +## Connection + +To connect to BigQuery, you need to enable BigQuery API in your Google Cloud Console. You can follow the steps to enable BigQuery API from [this link](https://cloud.google.com/bigquery/docs/bigquery-web-ui). + +Next, you need to create a service account and generate a key for the same. You can follow the steps to create a service account from [this link](https://cloud.google.com/iam/docs/creating-managing-service-accounts). + +Now, copy and paste the data from the downloaded JSON file into the **Private key** field in the BigQuery data source form. + +**The json file should look like this:** + + ```json + { + "type": "service_account", + "project_id": "tooljet-279812", + "private_key_id": "ea6e234sdfsdf3242b91525626edeef74a14e58761", + "private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADAAhdh67sidfnIUWWWBAQC8V+z0vaM/rFiA\nrq8fzVjSpEu7Cietjn82SVtguAlAUP9YpRepzi4rDmRgVQiXe4KES7VGQhmg3hUj\nbBASbdI5WRCvAC2ujzrxv3rbfjYRWfm+OqzpUBWaEKbwSGc6rNkhmirvhjiFdl5k\nn7aK7w3bmQfBlnNM6+WiQdT09g2qx3lmRDoUUpuCngkhbWOs3gN/U6wlm0cHKtbF\nWUOwKdyeZrm3UORUDkFvq6rVSF8vob+FQxf24FuvpBmXi2o2dqqglle8rlm8Lz83\ns4kAVbqVjtGrVXm6QUcnLISqJCJUnFkSuFpo60GCcgAVrwyAq/6aQH3IM78QKzFL\n8q5b65rXAgMBAAECggEAClIF8tRk0VuG3NZH5lg3q8fDOyaLBFdVKcHKtzCec3Ez\no6C4RcxP6Hk5IbPrtgggjVIi/Z7exKRv2mAwFvuSuJJSQSSjXC7Fm87AQPdYFWYt\noFYIeLGPlFMO++H3Nh+Xt3I5NBLR58UmH48iBdgR3pygXi1C5eBvQ2rdNVTL/uxw\n3iULu8WcVBw8glzkdLNLDq94uqbW7/qyji7QWNkU+804sA0LEj4PWmO7B9k1LCLK\nFV0Ppv+SJYMS2MhWmXPHnYVfeNaKJKPQpHsS2ep/hyjEO/3Fvm3o3cp6SrEkNGIH\nGKeozlfV7MQj7tMHLqWddDBXtFwYVEmN0UJVafvGsQKBgQDsEVzb7DG/xlMpuDQv\nqpLGWXR5DdAhzxVJzeh11Ongb+XxBOVSyTDKJLvOX4rI7tDqqN7b2pabUA3ZjvXv\nhMPXr7AjL6yoJEzVCyo1+pi26OL99OcO+7gUDa0axHFt6LZuPw00r+2Nl0FqrXNR\n+qUiPuZpp2MuKjMwLCwhr5YuqwKBgQDMPv6TPMl+oocoQ4uc84uY58Ywb7XZjmhY\n8jXdA38I454EbQGeLja+2knDpDkF6g14cTzVJe/Ec4A6QmeIieTFSJKBV4VCZ3QN\npLR4PrET7o9GL3mtwnNqcHPw2dLNHtn1OgsOUfJMWPIrFK2abVNAmYIBtOGA4eyH\nrOl+NcAUhQKBgC4EKGy6OuxeFYHxZULRZjEB6QFb3vFoM4cieyjU6w4T4ee8g5NC\nop8U0AMnfp8yZkkHyAFlN6xoy3pYMrqQz7gwiA4j0e0ovk1dEspY4gHtnanRXmT+\nTmCiVdb86ft5vG37HnDhxlWuYVMRIoSdbikhx7papauvEDFYuvWKC6VnAoGBAJQr\nvxOhrauozNRw6//YzxUGT8kjwZEqtpiQXnMP7kDMn/4l9l6CuESMp6a+pH+d5FfU\nDoWzF9Y01HlvYxyyrLxSgbZDf/FEi/S54BK7qEsFbftExclAn+o/2lyIKV2VXBmD\nGjIxUM4CWOzX+3lkhlj/BEmop0+Qlr92uY1OASLhAoGAfTb/Le0Nf5bGLjK3hI9D\no/oDI5Ryj5rTMxmG/wRjE+1Jm6BjFzEyH2CvnFonccyHQ+wGn61AgbRFLn+Tg5fz\nZXpzD2Xq3Y/AXtrdaayK0wnpMvVE1bZt+ikeVAWX+gR79igTqSXRgCuyp+edsgcE\nZ+2Eser4Z5BpqfFjqFW8MhY=\n-----END PRIVATE KEY-----\n", + "client_email": "tooljettest@tooljet-279812.iam.gserviceaccount.com", + "client_id": "106795637455432158803", + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/tooljettest%40tooljet-279812.iam.gserviceaccount.com" +} +``` + +
+ +BQ create + +
+ +Click on **Test connection** button to verify if the credentials are correct and that the API is accessible to ToolJet server. Click on **Save** button to save the data source. + +## Querying BigQuery + +Click on `+` button of the query manager at the bottom panel of the editor and select the database added in the previous step as the data source. Select the operation that you want to perform and click **Save** to create the query. + + +BQ query + + + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: [link](/docs/tutorial/transformations) +::: + +## Supported operations + +- [List Datasets](#list-datatsets) + +- [List Tables](#list-tables) + +- [Query](#query) + +- [Insert Record ](#insert-record) + +- [Delete Record ](#delete-record) + +- [Update Record](#update-record) + + +- [Create View](#create-view) + + +- [Create Table](#create-table) + + +- [Delete Table](#create-table) + + + +### List Datasets + +Returns list of datasets. + +#### Optional parameters: + +- **Options:** This can be used to filter the list. + + +BQ list datasets + +### List Tables + +Return list of tables within a dataset + +#### Required parameters: + +- **Dataset:** Enter the dataset name. + + +BQ list tables + + +### Query + +Return data based on the `Query`. `Query options` ([Reference](https://cloud.google.com/bigquery/docs/reference/rest/v2/Job)), and `Query result options` ([Reference](https://cloud.google.com/nodejs/docs/reference/bigquery/latest/overview#_google_cloud_bigquery_QueryResultsOptions_type)). + + + +BQ query + +### Insert Record +- To insert a record. + + +BQ insert + + +### Delete Record +- To delete a record. + + +BQ delete + + +:::info +NOTE: Be careful when deleting records in a table. If you omit the WHERE clause, all records in the table will be deleted! +::: +### Update Record +- To update a record. + + +BQ update + + +:::info +NOTE: Be careful when deleting records in a table. If you omit the WHERE clause, all records in the table will be updated! +::: +### Create View + +- To create a view. + + +BQ create view + + + +### Create Table + +- To create a table. + +:::info +NOTE: visit -https://github.com/googleapis/nodejs-bigquery/blob/main/samples/createTable.js for more info on schema. +::: + +### Delete Table +- To delete a table. diff --git a/docs/versioned_docs/version-2.23.0/data-sources/clickhouse.md b/docs/versioned_docs/version-2.23.0/data-sources/clickhouse.md new file mode 100644 index 0000000000..a9d60b9cd4 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/clickhouse.md @@ -0,0 +1,211 @@ +--- +id: clickhouse +title: ClickHouse +--- + +# ClickHouse + +ToolJet can connect to the ClickHouse to read and write data. + +:::info +ToolJet uses this [NodeJS](https://github.com/TimonKK/clickhouse) client for ClickHouse. +::: + +## Connection + +To establish a connection with the Clickhouse data source, you can either click on the `+Add new data source` button located on the query panel or navigate to the **[Data Sources](/docs/data-sources/overview)** page through the ToolJet dashboard. + +ToolJet requires the following to connect to your ClickHouse Database: + +- **Username** +- **Password** +- **Host** +- **Port** +- **Database Name** +- **Protocol** +- **Use Post** +- **Trim Query** +- **Use Gzip** +- **Debug** +- **Raw** + +ClickHouse connection + +## Querying ClickHouse + +After setting up the ClickHouse data source, you can click on the `+` button of the query manager and select the ClickHouse data source that you added in the previous step to create a new query. + +:::info +For more details on clickhouse visit [Clickhouse docs](https://clickhouse.com/docs/en/quick-start). +::: + + +## Supported Operations: + +- [SQL Query](#sql-query) +- [Insert array of objects](#supported-operations) + +### SQL Query + +Use this to operation to enter **[ClickHouse SQL Statements](https://clickhouse.com/docs/en/sql-reference/statements/)**. These statements represent various kinds of action you can perform using SQL queries. + +#### Example SQL queries + +- **SELECT**: + + ```sql + SELECT * from test array; + ``` + +
+ + ClickHouse SQL Statement operation + +
+ +- **CREATE**: + + ```sql + CREATE TABLE test array3 ( + date Date, + str String, + arr Array(String), + arr2 Array (Date) + arr3 Array(UInt32) , + id1 UUID + )ENGINE=MergeTree () ORDER BY(str) + ``` + +
+ + ClickHouse SQL Statement operation + +
+ +- **ALTER TABLE**(add column) + + ```sql + ALTER TABLE test array1 ADD COLUMN Added2 UInt32; + ``` + +
+ + ClickHouse SQL Statement operation + +
+ +- **SELECT WITH WHERE CLAUSE** + ```sql + SELECT * FROM test array1 WHERE str='Somethingl...' + ``` + +
+ + ClickHouse SQL Statement operation + +
+ +- **UPDATE** + ```sql + ALTER TABLE test_array1 UPDATE arr = (12] WHERE str='Somethingl...' + ``` + +
+ + ClickHouse SQL Statement operation + +
+ +- **DELETE** + ```sql + ALTER TABLE test_array1 DELETE WHERE str= 'Somethingl...' + ``` + +
+ + ClickHouse SQL Statement operation + +
+ +- **NORMAL INSERT** + + 1) Step 1 - Creating Table + + ```sql + CREATE TABLE test array4 ( + name String, + date Date + )ENGINE=MergeTree () ORDER BY (name) + ``` + +
+ + ClickHouse SQL Statement operation + +
+ + 2) Step 2 - Insert + + ```sql + INSERT INTO test_array4 (*) VALUES ('juvane', '1996-01-13') + ``` + +
+ + ClickHouse SQL Statement operation + +
+ + :::info + **Giving Primary Key** + ``` + CREATE TABLE db.table_name + ( + name1 type1, name2 type2, ..., + PRIMARY KEY(expr1[, expr2,...])] + ) + ENGINE = engine; + + OR + + CREATE TABLE db.table_name + ( + name1 type1, name2 type2, ... + ) + ENGINE = engine + PRIMARY KEY(expr1[, expr2,...]); + ``` + ::: + +### Insert array of objects + +Use this operation for inserting array of objects. + +#### Required Parameters: +- **Body** +- **Fields** +- **Table name** + +**Example Body value:** +```javascript +[ + { + date: '2018-01-01', + str: 'Something1...', + arr: [], + arr2: ['1985-01-02', '1985-01-03'], + arr3: [1,2,3,4,5], + id1: '102a05cb-8aaf-4f11-a442-20c3558e4384' + }, + { + date: '2018-02-01', + str: 'Something2...', + arr: ['5670000000', 'Something3...'], + arr2: ['1985-02-02'], + arr3: [], + id1: 'c2103985-9a1e-4f4a-b288-b292b5209de1' + } + ]; +``` + +ClickHouse Insert array of objects operation diff --git a/docs/versioned_docs/version-2.23.0/data-sources/cosmosdb.md b/docs/versioned_docs/version-2.23.0/data-sources/cosmosdb.md new file mode 100644 index 0000000000..9ffe9b3e6d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/cosmosdb.md @@ -0,0 +1,90 @@ +--- +id: cosmosdb +title: CosmosDB +--- + +# Cosmosdb + +ToolJet can connect to CosmosDB databases to read and write data. + +## Connection + +To establish a connection with the CosmosDB data source, you can either click on the `+Add new data source` button located on the query panel or navigate to the **[Data Sources](/docs/data-sources/overview)** page through the ToolJet dashboard. + +ToolJet requires the following to connect to your Cosmos DB. + +- **Cosmos DB Account End point** +- **Cosmos DB Account Key** + +:::info +**Azure Cosmos DB End point** is the URL of the Cosmos DB service. +**Azure Cosmos DB Key** is the key that is used to access the Cosmos DB service. +You can find the endpoint and key in the **[Azure Portal](https://portal.azure.com/)**. +::: + +
+ +![ToolJet - Data source - CosmosDB](/img/datasource-reference/cosmosdb/cosmosdb-connect.png) + +
+ +## Supported Queries: + +- [Listing databases](#listing-databases) +- [Listing containers](#listing-containers) +- [Inserting item(s)](#inserting-items) +- [Retrieving an item](#retrieving-an-item) +- [Deleting an item](#deleting-an-item) +- [Querying documents](#querying-documents) + +### Listing Databases + +This query lists all the databases in a Cosmos DB. + +### Listing Containers + +This query lists all the containers of a database in a Cosmos DB. + +| Fields | Description | +| -------- | ------------------ | +| database | id of the database | + +### Inserting Item(s) + +This query inserts one or more items in a container of a database in a Cosmos DB. + +| Fields | Description | +| --------- | ---------------------------------------------------------------------------------- | +| database | id of the database | +| container | id of the container | +| items | items to be inserted. Example: `{{[{name: "one", val: 1}, {name:"two", val: 2}]}}` | + +### Retrieving An Item + +To read a single item from a container of a database in a Cosmos DB, use the following query. + +| Fields | Description | +| --------- | ------------------- | +| database | id of the database | +| container | id of the container | +| item | id of the item | + +### Deleting An Item + +To delete an item from a container of a database in a Cosmos DB, use the following query. + +| Fields | Description | +| --------- | ------------------- | +| database | id of the database | +| container | id of the container | +| item | id of the item | + +### Querying Documents + +To query documents from a container of a database in a Cosmos DB using SQL-like syntax, use the following query. + +| Fields | Description | +| --------- | --------------------------------------------------------------------------------- | +| database | id of the database | +| container | id of the container | +| query | query to be executed. Example: `SELECT * FROM c WHERE c.age > 20 AND c.age <= 30` | diff --git a/docs/versioned_docs/version-2.23.0/data-sources/couchdb.md b/docs/versioned_docs/version-2.23.0/data-sources/couchdb.md new file mode 100644 index 0000000000..d531ac0042 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/couchdb.md @@ -0,0 +1,304 @@ +--- +id: couchdb +title: CouchDB +--- + +# CouchDB + +ToolJet can connect to CouchDB databases to read and write data. CocuhDB uses basic auth for authentication , username and password for the database is required to create an CouchDB data source on ToolJet. For more info visit [CouchDB docs](https://docs.couchdb.org/en/stable/). + + +## Supported Queries: + +- [Listing Records](#listing-records) +- [Retrieving a Record](#retrieving-a-record) +- [Creating a Record](#creating-a-record) +- [Updating a Record](#updating-a-record) +- [Deleting a Record](#deleting-a-record) +- [Find](#find) +- [Retrieving a View](#retrieving-a-view) + +:::info +NOTE: Record ID is same as document ID("_id") . +::: +### Listing Records + +This query lists all the records in a database. + +#### Optional Parameters: + +- **Include docs** +- **Descending order** +- **Limit** +- **Skip** + +:::info +descending (boolean) – Return the documents in descending order by key. Default is false. + +limit (number) – Limit the number of the returned documents to the specified number. + +skip (number) – Skip this number of records before starting to return the results. Default is 0. + +include_docs (boolean) – include_docs key is set to false by default , if true it returns the document data along with the default fields. + +::: + + +Couch listing + + + +Example response from CouchDb: + +```json +{ + "total_rows": 3, + "offset": 0, + "rows": [ + { + "id": "23212104e60a71edb42ebc509f000dc2", + "key": "23212104e60a71edb42ebc509f000dc2", + "value": { + "rev": "1-0cc7f48876f15883394e5c139c628123" + } + }, + { + "id": "23212104e60a71edb42ebc509f00216e", + "key": "23212104e60a71edb42ebc509f00216e", + "value": { + "rev": "1-b3c45696b10cb08221a335ff7cbd8b7a" + } + }, + { + "id": "23212104e60a71edb42ebc509f00282a", + "key": "23212104e60a71edb42ebc509f00282a", + "value": { + "rev": "1-da5732beb913ecbded309321cac892d2" + } + }, + ] +} +``` + +### Retrieving a Record + +#### Required Parameters: + +- **Record ID** + + +Couch retrieve view + + + +Example response from CouchDb: + +```json +{ + "_id": "e33dc4e209689cb0400d095fc401a1e0", + "_rev": "1-a62af8e14451af88c150e7e718b7a0e8", + "0": { + "name": "test data" + } +} +``` +The returned JSON is the JSON of the document, including the document ID and revision number: + + +### Creating a Record + + +Couch create view + + +#### Example Records: + +```json + [{"name":"tooljet"}] +``` + +Click on the `run` button to run the query. + +Example response from CouchDb: +```json + + { + "ok": true, + "id": "23212104e60a71edb42ebc509f0049a2", + "rev": "1-b0a625abc4e21ee554737920156e911f" +} + +``` + +### Updating a Record + +You can get the revision id value, by sending a GET request to get the document details. +You get the document as JSON in the response. For each update to the document, the revision field "_rev" gets changed. + +#### Required Rarameters: +- **Revision ID** +- **Record ID** + + +Couch update view + + +#### Example Body: + +```json + [{"name":"tooljet"}] +``` + + +Click on the `run` button to run the query. + +:::info +NOTE: Query must be saved before running. +::: + +Example response from CouchDb: +```json +{ + "ok": true, + "id": "23212104e60a71edb42ebc509f0049a2", + "rev": "2-b0a625abc4e21ee554737920156e911f" +} +``` + +### Deleting a Record + +#### Required Parameters: +- **Revision ID** +- **Record ID** + + +Couch delete view + + + +Click on the `run` button to run the query. + + +Example response from CouchDb: + +```json +{ + "ok": true, + "id": "rev_id=2-3d01e0e87139c57e9bd083e48ecde13d&record_id=e33dc4e209689cb0400d095fc401a1e0", + "rev": "1-2b99ef28c03e68ea70bb668ee55ffb7b" +} +``` + +### Find + +Find documents using a declarative JSON querying syntax. + +#### Required Parameters: +- **Selector** + +:::info +NOTE: +selector syntax: https://pouchdb.com/guides/mango-queries.html +::: + + +Couch find + + +#### Example Body: + +```json +{ + "selector": { + "year": {"$gte": 2015} + }, + "fields": ["year"] +} +``` + + +Click on the `run` button to run the query. + +:::info +NOTE: +selector (json) – JSON object describing criteria used to select documents. + +More information : https://docs.couchdb.org/en/stable/api/database/find.html +::: + +Example response from CouchDb: + + +Couch find response + + +### Retrieving a View + +Views are the primary tool used for querying and reporting on CouchDB documents. + +#### Required Parameters: +- **View url** + +Reference for view :https://docs.couchdb.org/en/3.2.0/ddocs/views/intro.html#what-is-a-view + + +Couch get view + + +#### Optional Parameters: + +- **Start key** +- **End key** +- **Limit** +- **Skip** + +Click on the `run` button to run the query. + +:::info +startkey (json) – Return records starting with the specified key. + +endkey (json) – Stop returning records when the specified key is reached. + +limit (number) – Limit the number of the returned documents to the specified number. + +skip (number) – Skip this number of records before starting to return the results. Default is 0. +::: + +Example response from CouchDb: +```json +{ + "total_rows": 4, + "offset": 0, + "rows": [ + { + "id": "23212104e60a71edb42ebc509f000dc2", + "key": "23212104e60a71edb42ebc509f000dc2", + "value": { + "rev": "1-0cc7f48876f15883394e5c139c628123" + } + }, + { + "id": "23212104e60a71edb42ebc509f00216e", + "key": "23212104e60a71edb42ebc509f00216e", + "value": { + "rev": "1-b3c45696b10cb08221a335ff7cbd8b7a" + } + }, + { + "id": "23212104e60a71edb42ebc509f00282a", + "key": "23212104e60a71edb42ebc509f00282a", + "value": { + "rev": "1-da5732beb913ecbded309321cac892d2" + } + }, + { + "id": "23212104e60a71edb42ebc509f002cbd", + "key": "23212104e60a71edb42ebc509f002cbd", + "value": { + "rev": "1-ca5bb3c0767eb42ea6c33eee3d395b59" + } + + } + ] +} +``` \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/custom-js.md b/docs/versioned_docs/version-2.23.0/data-sources/custom-js.md new file mode 100644 index 0000000000..e9064bffef --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/custom-js.md @@ -0,0 +1,139 @@ +--- +id: run-js +title: Run JavaScript code +--- + +You can write custom JavaScript code to interact with components and queries. To do that, you just need to create a new query and select **Run JavaScript Code** from the default datasources section. + +
+ +Run JavaScript code + +
+ +## JS parameters + +JS parameters in RunJS queries offer a convenient way to customize JavaScript code execution without altering the code directly. You can add parameters by clicking the **Add** button in the RunJS query editor. + +Each parameter requires: +- **Name**: Name for the parameter +- **Default value**: The value can be constant strings, numbers and object. + +**Syntax for calling the parameter:** `parameters.` + +
+ +Run JavaScript code + +
+ +### Example: Alert a parameter + +Let's create a new parameter named `object1` and set the value as object `{key1: 'value1'}` and use the alert js method to show the value on the pop-up. + +Syntax: +``` +alert(parameters.object1) +``` + +When the query is triggered the alert will show the parameters value. + +
+ +Run JavaScript code + +
+ +### Example: Providing custom parameters by calling another query + +Let's demonstrate how to utilize parameters in RunJS queries and call one query from another by providing custom parameter values: + +1. Begin by creating a new RunJS query named `multiply`. In this query, add the following parameters: **num1** with a default value of `10` and **num2** with a default value of `2`. To display the result, place a text component on the canvas and set its text to **{{queries.multiply.data}}**. Save and Run the query. +
+ + Run JavaScript code + +
+ +2. Now, let's create another RunJS query called `callMultiply`, where we will invoke the `multiply` query created earlier using custom parameter values. Here's the code snippet for `callMultiply`: + ```js + queries.multiply.run({num1: 20, num2: 20}) + ``` + + By executing this code within `callMultiply`, we trigger the `multiply` query with specific values for its parameters. + +
+ + Run JavaScript code + +
+ +With this setup, the `multiply` query can be called from other queries, such as `callMultiply`, by providing custom parameter values. This allows you to reuse the `multiply` query with different inputs and display the results accordingly. + +## RunJS query examples + +### Displaying random number + +- Let's drag a **button** and a **text** widget inside a container widget. +- Click on the `+` on the query panel to create a query and select **Run JavaScript code** from the available datasources +- Write the code in **JavaScript editor** and save the query: +```jsx +const a = Math.floor(Math.random() * (10 - 1)) + 1; +return a; +``` +:::tip +- The `return` statement is used to end the code and the value specified to the `return` statement will be stored in the `data` property of the query. +ex: `{{queries.runjs1.data}}` +- You cannot use `console.log` in Run JavaScript code +::: + +- Let's edit the properties of widgets: + - Add an event handler to the button - Select **On Click** event, **Run Query** action, and select the `runjs1` query that we created. This will run the JavaScript code every time the button is clicked. + - Edit the property of text widget - In the text field enter **Random number: `{{queries.runjs1.data}}`**. It will display the output as Random number: *result from JS code* + +
+ +Run JavaScript code + +
+ +### Generating Unique ID +#### Code 1: + +```js +var id = "id" + Math.random().toString(16).slice(2); +return id; +``` + +In this code, the resulting ID will have the format "id" followed by a sequence of random hexadecimal characters. For example, it could be something like "id2f4a1b". + +#### Code 2: + +```js +return String(Date.now().toString(32) + Math.random().toString(16)).replace(/\./g, ''); +``` + +In this code, the resulting ID will have the format "timestamp + randomHex", where "timestamp" is the current time in base-32 and "randomHex" is a random hexadecimal value. This ID will be longer than the one generated by Code 1, and it could look like "2g3h1d6a4h3". + +Both code snippets will produce IDs that are highly likely to be unique. However, Code 1 generates shorter IDs and follows a more straightforward approach with a fixed prefix ("id"). On the other hand, Code 2 generates longer IDs by incorporating the current timestamp and using a combination of base-32 and hexadecimal representations. The choice between the two methods depends on the specific requirements of the application and the desired length of the generated IDs. + +:::tip Resources +- You can also write custom JavaScript code to get the data from **External APIs** and manipulate the response for graphical representation. Here's the [tutorial](https://blog.tooljet.com/build-github-stars-history-app-in-5-minutes-using-low-code/) on how we used custom JavaScript code to build an app using GitHub API. +- [Import external libraries](/docs/how-to/import-external-libraries-using-runjs) using RunJS. +- [Intentionally Fail](docs/how-to/intentionally-fail-js-query) a RunJS query. +- [Trigger query at specified intervals](/docs/how-to/run-query-at-specified-intervals) using RunJS. +::: + +## Libraries + +ToolJet allows you to internally utilize these libraries: + +| Name | Documentation | +| ----------- | ----------- | +| Moment | [https://momentjs.com/docs/](https://momentjs.com/docs/) | +| Lodash | [https://lodash.com/docs/](https://lodash.com/docs/) | +| Axios | [https://axios-http.com/docs/intro](https://axios-http.com/docs/intro) | + +:::info +Issues with writing custom JavaScript code? Ask in our [Slack Community](https://tooljet.com/slack). +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/dynamodb.md b/docs/versioned_docs/version-2.23.0/data-sources/dynamodb.md new file mode 100644 index 0000000000..127a917898 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/dynamodb.md @@ -0,0 +1,329 @@ +--- +id: dynamodb +title: DynamoDB +--- +# DynamoDB + +DynamoDB is a managed non-relational database service provided by Amazon. ToolJet has the capability to connect to DynamoDB for reading and writing data. + +## Connection + +To establish a connection with the DynamoDB data source, you can either click on the `+Add new data source` button located on the query panel or navigate to the **[Data sources](/docs/data-sources/overview)** page through the ToolJet dashboard. + +
+ +DynamoDB + +
+ +ToolJet supports connecting to DynamoDB using three methods: **IAM credentials**, **AWS Instance Profile**, or **AWS ARN Role**. + +When using **IAM credentials**, you will need to provide the following information: + +- **Region** +- **Access key** +- **Secret key** + +It is recommended to create a dedicated IAM user for the database in order to have granular control over ToolJet's access levels. + +
+ +ToolJet - DynamoDB connection + +
+ +To connect to DynamoDB using an **AWS Instance Profile**, select the option to **Use AWS Instance Profile**. This will utilize the IAM role attached to the EC2 instance where ToolJet is running. The WebIdentityToken parameter obtained from a successful login with an identity provider is used to access the metadata service of an ECS container and the EC2 instance. + +
+ +ToolJet - DynamoDB connection + +
+ +If you prefer to use an **AWS ARN Role**, you will need to provide the following details: + +- **Region** +- **Role ARN** + +
+ +ToolJet - DynamoDB connection + +
+ +:::info +Click the **Test connection** button to verify the correctness of the provided credentials and the accessibility of the database to the ToolJet server. Finally, click the **Save** button to save the data source configuration. +::: + +## Querying DynamoDB + +To perform queries on DynamoDB, click the `+` button in the query manager located at the bottom panel of the editor. Select the previously added database as the data source for the query. Choose the desired operation and click 'Save' to store the query. + +
+ +ToolJet - DynamoDB connection + +
+ +To execute the query, click the 'Run' button. Note that the query must be saved before running. + +:::tip +You can apply transformations to the query results. Refer to our transformations documentation for more information: [link](/docs/tutorial/transformations) +::: + +- **[List Tables](#list-tables)** +- **[Get Item](#get-item)** +- **[Query Table](#query-table)** +- **[Scan Table](#scan-table)** +- **[Delete Item](#delete-item)** +- **[Update Item](#update-item)** +- **[Describe Table](#describe-table)** +- **[Create Table](#create-table)** +- **[Put Item](#put-item)** + +### List Tables + +Returns an array of table names associated with the current account and endpoint. The output from List Tables is paginated, with each page returning a maximum of 100 table names. + +
+ +ToolJet - DynamoDB operations + +
+ +### Get Item + +Retrieves a single item from a table. You must specify the primary key for the item that you want. You can retrieve the entire item, or just a subset of its attributes. + +**Required parameters:** +- **Table** +- **Key name** + +Syntax for Key name: +```json +{ + "Key": { + "ForumName": { + "S": "Amazon DynamoDB" + }, + "Subject": { + "S": "How do I update multiple items?" + } +} +``` + +
+ +ToolJet - DynamoDB operations + +
+ +### Query Table + +Retrieves all items that have a specific partition key. You must specify the partition key value. You can retrieve entire items, or just a subset of their attributes. Optionally, you can apply a condition to the sort key values so that you only retrieve a subset of the data that has the same partition key. You can use this operation on a table, provided that the table has both a partition key and a sort key. You can also use this operation on an index, provided that the index has both a partition key and a sort key. + +**Required parameters:** +- **Query condition** + +Syntax for Query condition: +```json +{ + "TableName": "Reply", + "IndexName": "PostedBy-Index", + "Limit": 3, + "ConsistentRead": true, + "ProjectionExpression": "Id, PostedBy, ReplyDateTime", + "KeyConditionExpression": "Id = :v1 AND PostedBy BETWEEN :v2a AND :v2b", + "ExpressionAttributeValues": { + ":v1": {"S": "Amazon DynamoDB#DynamoDB Thread 1"}, + ":v2a": {"S": "User A"}, + ":v2b": {"S": "User C"} + }, + "ReturnConsumedCapacity": "TOTAL" +} +``` + +
+ +ToolJet - DynamoDB operations + +
+ +### Scan Table + +Retrieves all items in the specified table or index. You can retrieve entire items, or just a subset of their attributes. Optionally, you can apply a filtering condition to return only the values that you are interested in and discard the rest. + +**Required parameters:** +- **Scan condition** + +Syntax for Scan condition: + +```json +{"TableName": ""} +``` + +
+ +ToolJet - DynamoDB operations + +
+ +### Delete Item + +Deletes a single item from a table. You must specify the primary key for the item that you want to delete. + +**Required parameters:** +- **Table** +- **Key Name** + +Syntax for Key name: +```json +{ + "Key": { + "ForumName": { + "S": "Amazon DynamoDB" + }, + "Subject": { + "S": "How do I update multiple items?" + } + }, + "ConditionExpression": "attribute_not_exists(Replies)", + "ReturnValues": "ALL_OLD" +} +``` + +
+ +ToolJet - DynamoDB operations + +
+ +### Update Item + +Update an item in DynamoDB by specifying the primary key and providing new attribute values. If the primary key does not exist in the table then instead of updating it will insert a new row. + +**Required parameters:** +- **Update Condition** + +Syntax for Update Condition: +```json +{ + "TableName": "USER_DETAILS_with_local", + "Key": { + "USER_ID": 1, + "USER_NAME": "Nick" + }, + "UpdateExpression": "set USER_AGE = :age, USER_FEE = :fee", + "ExpressionAttributeValues": { + ":age": 40, + ":fee": 230545 + } +} +``` + +
+ +ToolJet - DynamoDB operations + +
+ +### Describe Table + +This operation in DynamoDB retrieves metadata and configuration details about a specific table. It provides information such as the table's name, primary key schema, provisioned throughput settings, and any secondary indexes defined on the table. + +**Required parameters:** +- **Table** + +
+ +ToolJet - DynamoDB operations + +
+ +### Create Table + +This operation in DynamoDB enables you to create a new table by specifying its name, primary key schema, and optional configurations. + +**Required parameters:** +- **Table Parameters** + +Syntax for Table Parameters: +```json +{ + "AttributeDefinitions": [ + { + "AttributeName": "USER_ID", + "AttributeType": "N" + }, + { + "AttributeName": "USER_FEE", + "AttributeType": "N" + } + ], + "KeySchema": [ + { + + "AttributeName": "USER_ID", + "KeyType": "HASH" + } + ], + "LocalSecondaryIndexes": [ + { + "IndexName": "USER_FEE", + "KeySchema": [ + { + "AttributeName": "USER_ID", + "KeyType": "HASH" + }, + { + "AttributeName": "USER_FEE", + "KeyType": "RANGE" + } + ], + "Projection": { + "ProjectionType": "KEYS_ONLY" + } + } + ], + "ProvisionedThroughput": { + "ReadCapacityUnits": 1, + "WriteCapacityUnits": 1 + }, + "TableName": "USER_FEE_LOCAL", + "StreamSpecification": { + "StreamEnabled": false + } +} +``` + +
+ +ToolJet - DynamoDB operations + +
+ +### Put Item + +This operation allows you to create or replace an item in a table. It enables you to specify the table name, provide the attribute values for the new item, and define the primary key attributes to uniquely identify the item. + +**Required parameters:** +- **New Item Details** + +Syntax for New Item Details: +```json +{ + "TableName": "USER_DETAILS_with_localS", + "Item": { + "USER_ID": 1, + "USER_NAME": "NICK", + "USER_AGE": 34, + "USER_FEE": 1234.56, + } +} +``` + +
+ +ToolJet - DynamoDB operations + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/elasticsearch.md b/docs/versioned_docs/version-2.23.0/data-sources/elasticsearch.md new file mode 100644 index 0000000000..6c996df16e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/elasticsearch.md @@ -0,0 +1,80 @@ +--- +id: elasticsearch +title: Elasticsearch +--- + +# Elasticsearch +ToolJet can connect to your Elasticsearch cluster to read and write data. + +## Connection +Please make sure the host/IP of the Elasticsearch cluster is accessible from your VPC if you have self-hosted ToolJet. If you are using ToolJet cloud, please **whitelist our IP**. + +To establish a connection with the ElasticSearch data source, you can either click on the `+Add new data source` button located on the query panel or navigate to the **[Data Sources](/docs/data-sources/overview)** page through the ToolJet dashboard. + +ToolJet requires the following to connect to your Elasticsearch cluster: +- **Host** +- **Port** +- **Username** +- **Password** + +
+ +Elastic connect + + +
+ +Elastic search data source is also providing an option for connecting services with ssl certificates. +- You can either use CA / Client certificates option. + +Elastic ssl + + + +## Querying Elasticsearch + +Click on `+` button of the query manager at the bottom panel of the editor and select the Elasticsearch added in the previous step as the data source. +Select the operation that you want to perform on your Elasticsearch cluster and click `Create` to save the query. + +
+ +Elastic query + + +
+ +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: **[link](/docs/tutorial/transformations)** +::: + +## Supported operations + +#### Search + +This operation allows you to execute a search query and get back search hits that match the query. Read the Elasticsearch's `Search` guide **[here](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html)**. + + +Elastic search + +#### Index a document + +This operation allows you to add a JSON document to the specified data stream or index. Read the Elasticsearch's `Index` guide **[here](https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html)**. + + +Elastic index + + +#### Get a document + +This operation allows you to retrieve the specified JSON document from the index. Read the Elasticsearch's `Get` guide **[here](https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html)**. + + +Elastic get + + +#### Update a document + +This operation allows to update a document using the specified script. Read the Elasticsearch's `Update` guide **[here](https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html)**. + + +Elastic update diff --git a/docs/versioned_docs/version-2.23.0/data-sources/firestore.md b/docs/versioned_docs/version-2.23.0/data-sources/firestore.md new file mode 100644 index 0000000000..4b86322ea5 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/firestore.md @@ -0,0 +1,165 @@ +--- +id: firestore +title: Cloud Firestore +--- + +# Cloud Firestore +ToolJet can connect to Cloud Firestore databases to read and write data. + +## Connection +ToolJet connects to your Cloud Firestore using JSON key of your GCP service account. Get your service account key as JSON from GCP console. For generating a new key, check out [Firestore's official documentation](https://cloud.google.com/iam/docs/creating-managing-service-account-keys#iam-service-account-keys-create-console). + +Once you have the key, open it in a text editor and copy the contents. Paste the contents in the **Private key** field of the Firestore data source modal. + +Click on **Test connection** button to verify if the key is valid. Click on **Save** button to save the data source. + + +firestore add ds + + +## Querying Firestore + +Click on `+` button of the query manager at the bottom panel of the editor and select the database added in the previous step as the data source. + + +firestore QUERY + + +Select the operation that you want to perform on Firestore and click **Save** to save the query. + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: **[link](/docs/tutorial/transformations)** +::: + +## Supported operations +1. [Get document](#get-document) +2. [Query collection](#query-collection) +3. [Add Document to Collection](#add-document-to-collection) +4. [Update document](#update-document) +5. [Set document](#set-document) +6. [Bulk update using document id](#bulk-update-using-document-id) +7. [Delete document](#delete-document) + +### Get document + +Use this operation to get the data in a document. + +#### Required parameters: + +- **Path**: Enter the path of the document. Path format: `collection name/document id`. ex: `books/23e2wsds32` + + +firestore get + + +### Query collection + +Use this operation to query all the documents in a collection. Check firestore doc [here](https://firebase.google.com/docs/reference/js/v8/firebase.database.Query). + +#### Required parameters: + +- **Path**: Enter the name of the collection to be queried. Example: `books` + +#### Optional parameters: + +- **Order type**: Select ascending or descending from the dropdown. + +- **Limit**: Maximum number of documents to return in response. By default will return maximum 25 results. Maximum of 100 results allowed per request. The Limit value should be of integer type. + +- **Field, Operator, and Value**: For filtering the results, you can enter a document field name, use appropriate operator from the dropdown and set a value. + + +firestore collection + + +### Add Document to Collection + +Use this operation for creating a new document in a collection. + +#### Required parameters: + +- **Collection**: Enter the path of the document in a collection. Path format: `collection name/document id`. ex: `books/33243dwe2332` +- **Body**: Enter the Field names and their values in json form. example body: +```json +{ +"Author": "Shubh", +"id": 5 +} +``` + + +firestore document + + +### Update document + +Use this operation for updating the existing document in a collection. Also, it only updates fields if they exist, but doesn't replace an entire object like [set operation](#set-document). + +#### Required parameters: + +- **Path**: Enter the path of the document in a collection. Path format: `collection name/document id`. ex: `books/33243dwe2332` +- **Body**: Enter the Field names and their values in json form. example body: +```json +{ +"Author": "Shubhendra", +"id": 3 +} +``` + + +firestore update + + +### Set document + +This operation replaces your chosen object with the value that you provide. So if your object has 5 fields, and you use Set operation and pass object with 3 fields, it will now have 3 fields. + +#### Required parameters: + +- **Path**: Enter the path of the document in a collection. Path format: `collection name/document id`. ex: `books/33243dwe2332` +- **Body**: Enter the Field names and their values in json form. example body: +```json +{ +"Author": "Shefewfbh", +"id": 9 +} +``` + + +firestore set + + +### Bulk update using document id + +Use this operation for bulk updating documents. + +#### Required parameters: + +- **Collection**: +- **Key for document ID**: +- **Records**: + + + +firestore bulk + + +### Delete document + +Use this operation for deleting a document in a collection. + +#### Required parameters: + +- **Path**: Enter the path of the document to be deleted in a collection. Path format: `collection name/document id`. ex: `books/33243dwe2332` + + +firestore delete + + +## Transforming firestore query result for Table widget + +The Firestore query result is in the form of object so we’ll need to transform it into array. + +```js +return data = Array(data) +``` diff --git a/docs/versioned_docs/version-2.23.0/data-sources/gcs.md b/docs/versioned_docs/version-2.23.0/data-sources/gcs.md new file mode 100644 index 0000000000..03cad29535 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/gcs.md @@ -0,0 +1,40 @@ +--- +id: gcs +title: Google Cloud Storage +--- + +# Google Cloud Storage + +ToolJet can connect to GCS buckets and perform various operation on them. + +## Supported operations + +- **Read file** +- **Upload file** +- **List buckets** +- **List files in a bucket** +- **Signed url for download** +- **Signed url for upload** + +## Connection + +To establish a connection with the Google Cloud Storage data source, you can either click on the `+Add new data source` button located on the query panel or navigate to the **[Data Sources](/docs/data-sources/overview)** page through the ToolJet dashboard. + +To connect to GCS, you need to provide the JSON Private Key of a service account that has access to the bucket. You can follow the [google documentation](https://cloud.google.com/docs/authentication/getting-started) to get started. + +gcs connection + +Click on **Test connection** button to verify if the credentials are correct and that the database is accessible to ToolJet server. Click on **Save** button to save the data source. + +## Querying GCS + +Click on `+` button of the **query manager** at the bottom panel of the editor and select the data source added in the previous step as the data source. Select the operation that you want to perform and click **Save** to save the query. + +gcs query + +Click on the **run** button to run the query. +**NOTE**: Query should be saved before running. + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: [link](/docs/tutorial/transformations) +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/google.sheets.md b/docs/versioned_docs/version-2.23.0/data-sources/google.sheets.md new file mode 100644 index 0000000000..d955c2cc33 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/google.sheets.md @@ -0,0 +1,134 @@ +--- +id: google.sheets +title: Google Sheets +--- + +# Google Sheets + +ToolJet has the capability to establish a connection with Google Sheet for both reading and writing data. By utilizing OAuth 2.0, ToolJet can establish a secure connection with Google Sheet, ensuring that the application's access to a user's account is restricted and limited appropriately. + +## Self-Hosted Configuration + +If you decide to self-host ToolJet, there are a few additional steps you need to take: + +1. Proceed with the setup steps provided in the [Google OAuth 2.0 guide](/docs/setup/env-vars#google-oauth--optional-) to configure the necessary settings. +2. Assign the corresponding values obtained from the previous step to the following environment variables: + - `GOOGLE_CLIENT_ID` + - `GOOGLE_CLIENT_SECRET` + - `TOOLJET_HOST` +3. Activate the Google Sheets API within the Google Cloud Platform (GCP) console. + +## Connection + +To establish a connection with Google Sheet, you have two options. First, you can click on the **+Add new global datasource** button found on the query panel. Alternatively, you can go to the **[Global Datasources](/docs/data-sources/overview)** page within the ToolJet dashboard. + +### Authorization Scopes + +When connecting to a Google Sheets datasource, you can choose between two permission scopes: + +1. **Read Only**: This scope allows you to access and retrieve data from the Google Sheet. +2. **Read and Write**: This scope grants you both read and write permissions, enabling you to retrieve and modify data within the Google Sheet. + +
+ +Google Sheet + +
+ +## Querying Google Sheet + +To perform operations on a Google Sheet, click the `+Add` button in the query manager located at the bottom panel of the app builder. Select the Google Sheet datasource under the Global datasource section. Choose the desired operation from the dropdown and click **Save** to save the query. + +Using Google sheets data source you can perform several operations from your applications like: + + 1. **[Read data from a sheet](/docs/data-sources/google.sheets#read-data-from-a-sheet)** + 2. **[Append data to a sheet](/docs/data-sources/google.sheets#append-data-to-a-sheet)** + 3. **[Update single row of a sheet](/docs/data-sources/google.sheets#update-single-row-of-a-sheet)** + 4. **[Delete row from a sheet](/docs/data-sources/google.sheets#delete-row-from-a-sheet)** + 5. **[Get spreadsheet info](/docs/data-sources/google.sheets#get-spreadsheet-info)** + +
+ +Google Sheet Operations + +
+ +### Read data from a sheet + +This operation allows you to retrieve the table data from a spreadsheet in the form of a JSON object. + +| Fields | description | +| ----------- | ----------- | +| Spreadsheet ID | Entering the spreadsheet ID is required and can be obtained from the URL of the spreadsheet. For example, in the URL `https://docs.google.com/spreadsheets/d/1W2S4re7zNaPk9vqv6_CqOpPdm_mDEqmLmzjVe7Nb9WM/edit#gid=0`, the `1W2S4re7zNaPk9vqv6_CqOpPdm_mDEqmLmzjVe7Nb9WM` represents the spreadsheet ID. | +| Range | This is optional. You can specify the range of cells in this field. If left empty, it will select the range `A1:Z500`. | +| Sheet | This is optional. You can specify `sheet name` if it has more than 1 sheets, else it will automatically choose the first sheet. | + +
+ +Google Sheet Operations + +
+ +### Append data to a sheet + +Add additional rows to a table by using the append operation. + +| Fields | description | +| ----------- | ----------- | +| Spreadsheet ID | Entering the spreadsheet ID is required and can be obtained from the URL of the spreadsheet. For example, in the URL `https://docs.google.com/spreadsheets/d/1W2S4re7zNaPk9vqv6_CqOpPdm_mDEqmLmzjVe7Nb9WM/edit#gid=0`, the `1W2S4re7zNaPk9vqv6_CqOpPdm_mDEqmLmzjVe7Nb9WM` represents the spreadsheet ID. | +| Sheet | This is optional. You can specify `sheet name` if it has more than 1 sheets, else it will automatically choose the first sheet. | +| Rows | To input row data, use the JSON array format where each object represents a single row. Here's an example: **`[ {"name":"John", "email":"John@tooljet.com"},{...},{...} ]`**. Within each object, the `key` corresponds to the **column name**, and the `value` represents the **cell data**.| + +
+ +Google Sheet Operations + +
+ +### Update single row of a sheet + +This operation allows you to update existing data in a sheet. + +| Fields | description | +| ----------- | ----------- | +| Spreadsheet ID | Entering the spreadsheet ID is required and can be obtained from the URL of the spreadsheet. For example, in the URL `https://docs.google.com/spreadsheets/d/1W2S4re7zNaPk9vqv6_CqOpPdm_mDEqmLmzjVe7Nb9WM/edit#gid=0`, the `1W2S4re7zNaPk9vqv6_CqOpPdm_mDEqmLmzjVe7Nb9WM` represents the spreadsheet ID. | +| Range | This is optional. You can specify the range of cells in this field. If left empty, it will select the range `A1:Z500`. | +| Sheet | This is optional. You can specify `sheet name` if it has more than 1 sheets, else it will automatically choose the first sheet. | +| Where | Specify the column name, such as `id`, to identify the row you want to update. | +| Operator | Select the `===` operator to perform an equality check. | +| Value | Enter the desired value for the `id`, which you want to update. | +| Rows | Enter the row data in the following format: **`{{({id: components.textinput4.value, company: components.textinput1.value, position: components.textinput2.value, url: components.textinput3.value, 'date-applied': components.datepicker1.value, status: components.dropdown1.value})}}`**. This example shows how to structure the row data, where each key represents a column name and its corresponding value is retrieved from the associated component. | + +
+ +Google Sheet Operations + +
+ +### Delete row from a sheet + +This operation allows you to delete a specific row from the sheet. + +| Fields | description | +| ----------- | ----------- | +| Spreadsheet ID | Entering the spreadsheet ID is mandatory. You can find the spreadsheet ID in the URL of the spreadsheet. For example, in the URL `https://docs.google.com/spreadsheets/d/1W2S4re7zNaPk9vqv6_CqOpPdm_mDEqmLmzjVe7Nb9WM/edit#gid=23456`, the `1W2S4re7zNaPk9vqv6_CqOpPdm_mDEqmLmzjVe7Nb9WM` is the spreadsheet ID. | +| GID | The GID is located at the end of the spreadsheet URL. In the provided example, the GID is `23456`. | +| Delete Row Number | Simply enter the row number that you wish to delete. | + +
+ +google sheets delete + +
+ +### Get spreadsheet info + +The "Get spreadsheet info" operation allows you to retrieve basic information about the spreadsheet, including the number of sheets, theme, time zone, format, and URL, among others. + +Here is a preview of the query that utilizes the "Get spreadsheet info" operation. + +
+ +google sheets get info + +
diff --git a/docs/versioned_docs/version-2.23.0/data-sources/graphql.md b/docs/versioned_docs/version-2.23.0/data-sources/graphql.md new file mode 100644 index 0000000000..82feeff3a2 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/graphql.md @@ -0,0 +1,50 @@ +--- +id: graphql +title: GraphQL +--- + +ToolJet can establish connections with GraphQL endpoints, enabling the execution of queries and mutations. + +## Connection + +To establish a connection with the GraphQL global datasource, you can either click on the **Add new global datasource** button located on the query panel or navigate to the **[Global Datasources](/docs/data-sources/overview)** page through the ToolJet dashboard. + +
+ +ToolJet - Data source - REST API + +
+ +ToolJet requires the following to connect to a GraphQL datasource: + +- **URL**: URL of the GraphQL endpoint +- **Headers**: Any headers the GraphQL source requires +- **URL parameters**: Additional query string parameters +- __Authentication Type__: The method of authentication to use with GraphQL requests. Supported Types: None, Basic, Bearer, and OAuth 2.0 + - **Basic**: Requires Username and Password + - **Bearer**: Requires a token, typically a JSON Web Token (JWT), to grant access + - **OAuth 2.0**: The OAuth 2.0 protocol mandates the provision of the following parameters: access token URL, access token URL custom headers, client ID, client secret, scopes, custom query parameters, authorization URL, custom authentication parameters, and client authentication. + +## Querying GraphQL + +Click on **`+Add`** button of the query manager at the bottom panel of the editor and select the GraphQL global datasource added in previous step. + +### Required Parameters: +- **Query** + +### Optional Parameters +- **Variable** +- **Headers** + +
+ +ToolJet - Data source - GraphQl + +
+ + +Click on the **Create** button to create the query or Click on the **Run** button to create and trigger the query. + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: [link](/docs/tutorial/transformations) +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/grpc.md b/docs/versioned_docs/version-2.23.0/data-sources/grpc.md new file mode 100644 index 0000000000..9c8adf06e4 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/grpc.md @@ -0,0 +1,88 @@ +--- +id: grpc +title: gRPC +--- + +
Self-hosted only
+ +:::caution +only self-hosted deployments will have access to a gRPC datasource that is capable of handling unary requests and responses. +::: + +- [Setup](#setup) +- [Querying gRPC](#querying-grpc) + +## Setup + +### Step 1: Upgrade ToolJet to the version 2.5 or above + +Find instructions on how to do this in the setup guides located here: https://docs.tooljet.com/docs/setup/. + +### Step 2: Add proto files + +At the root, create a directory named "**protos**" and add a "**service.proto**" file inside it. + + +### Step 3: Mount Volumes + +In the `docker-compose.yml` add + +```bash +./protos:/app/protos +``` + +to the 2 volume sections for **plugins** and **server** + + +
+ +gRPC: datasource + +
+ +
+ +gRPC: datasource + +
+ +### Step 4: Reboot the instance + +```bash +docker-compose up -d +``` + +## Querying gRPC + +After setting up your proto files, you should be able to establish a connection to gRPC by going to the [global datasource](/docs/data-sources/overview) page. + +### Connect the gRPC datasource + +ToolJet requires the following to connect to gRPC servers: + +- **Server URL** +- **Authentication type** (None, Basic, Bearer, and API key) + +
+ +gRPC: connection + +
+ +Once you have added the gRPC from the global datasource page, you'll find it on the query panel of the application. + +
+ +gRPC: connection + +
+ +### Creating query + +You can now query a particular RPC method of the added services. + +
+ +gRPC: connection + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/influxdb.md b/docs/versioned_docs/version-2.23.0/data-sources/influxdb.md new file mode 100644 index 0000000000..27f881e957 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/influxdb.md @@ -0,0 +1,129 @@ +--- +id: influxdb +title: InfluxDB +--- + +# InfluxDB + +ToolJet can connect to InfluxDB databases to read and write data. Use the Token authentication scheme to authenticate to the InfluxDB API. For more info visit [InfluxDB docs](https://docs.influxdata.com/). + +## Connection + +ToolJet connects to InfluxDB using : + +- **API Token** +- **Host** +- **Port** +- **Protocol** (HTTP/HTTPS) + +:::info +For generating API Token visit [InfluxDB docs](https://docs.influxdata.com/influxdb/cloud/security/tokens/create-token/). +::: + +
+ +![ToolJet - Data source - influxDB](/img/datasource-reference/influxdb/influxauth.png) + +
+ +## Supported queries: + +- [Write data](#write-data) + +- [Query data](#query-data) + +- [Generate an Abstract Syntax Tree (AST) from a query](#generate-an-abstract-syntax-tree-ast-from-a-query) + +- [Retrieve query suggestions](#retrieve-query-suggestions) + +- [Retrieve query suggestions for a branching suggestion](#retrieve-query-suggestions-for-a-branching-suggestion) + +- [Analyze a Flux query](#analyze-a-flux-query) + +- [List buckets](#list-buckets) + +- [Create a bucket](#create-a-bucket) + +- [Retrieve a bucket](#retrieve-a-bucket) + +- [Update a bucket](#update-a-bucket) + +- [Delete a bucket](#delete-a-bucket) + + +influx operations + + +### Write data + +This operation writes data to a bucket. + +#### Required parameters: + +- **Bucket** +- **Organization name or ID** + +#### Optional parameters: + +- **Precision** + +### Query data + +Retrieves data from InfluxDB buckets. + +#### Required parameters: +- **Organization name or ID** + +### Generate an Abstract Syntax Tree (AST) from a query + +This operation analyzes flux query and generates a query specification. + +#### Required parameters: + +- **Query** + +### Retrieve query suggestions + +This query retrieve query suggestions. + +### Retrieve query suggestions for a branching suggestion + +This operation retrieve query suggestions for a branching suggestion. + +#### Required parameters: +- **Name** + +### Analyze a Flux query + +This Analyzes a Flux query. + +#### Required parameters: + +- **Query** + +### List buckets + +This operation lists all the buckets in a database. +### Create a bucket + +#### Required parameters: + +- **Query** + +### Retrieve a bucket + +This operation retrieve a bucket in a database. + +#### Required parameters: +- **Bucket ID** + +### Update a bucket + +#### Required parameters: +- **Bucket ID** +- **Query** + +### Delete a bucket + +#### Required parameters: +- **Bucket ID** diff --git a/docs/versioned_docs/version-2.23.0/data-sources/mailgun.md b/docs/versioned_docs/version-2.23.0/data-sources/mailgun.md new file mode 100644 index 0000000000..09907b82d1 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/mailgun.md @@ -0,0 +1,60 @@ +--- +id: mailgun +title: Mailgun +--- + +# Mailgun + +ToolJet can connect to your Mailgun account to send emails. + +ToolJet - Data source - Mailgun + +:::info +The Mailgun API Datasource supports for interaction with the mail endpoint of the [Mailgun API](https://documentation.mailgun.com/en/latest/api-intro.html#authentication-1). +::: + +## Connection + +To establish a connection with the MailGun data source, click on the `+Add new data source` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. + +Enter your **Mailgun API key** in the "API key" field. + +:::tip +Mailgun API key is required to create an Mailgun datasource on ToolJet. You can generate API key by visiting [Mailgun account page](https://app.mailgun.com/app/account/security/api_keys). +::: + +Click on the 'Save' button to save the data source. + +## Supported operations + +1. Email service + +### Email service + +Required parameters: + +- Send email to +- Send email from +- Subject +- Body as text + +Optional parameters: + +- Body as HTML + +ToolJet - Query Mailgun + +:::info +**Send mail to** - accepts a single email id. +For example: +`{{"dev@tooljet.io"}}`. + +**Send mail from** - accepts a string. +For example: `admin@tooljet.io` +::: + +:::tip +**Send a single email to multiple recipients** - The `Send mail to` field can contain an array of recipients, which will send a single email with all of the recipients in the field. + +**Send multiple individual emails to multiple recipients** - set Multiple recipients field to `{{true}}` and the `Send mail to` field will be split into multiple emails and send to each recipient. +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/mariadb.md b/docs/versioned_docs/version-2.23.0/data-sources/mariadb.md new file mode 100644 index 0000000000..6a7930c345 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/mariadb.md @@ -0,0 +1,185 @@ +--- +id: mariadb +title: MariaDB +--- + +# MariaDB + +ToolJet can connect to both self-hosted and cloud-based MariaDB servers to read and write data. + +## Connection + +To establish a connection with the MariaDB global datasource, you can either click on the `+Add new global datasource` button located on the query panel or navigate to the **[Global Datasources](/docs/data-sources/overview)** page through the ToolJet dashboard. + +
+ +MariaDB + +
+ +**ToolJet requires the following connection details to connect to MariaDB:** + +- **Host:** The hostname or IP address of the MariaDB server. +- **Username:** The username for the MariaDB account. +- **Password:** The password for the MariaDB account. +- **Connection Limit:** The maximum number of concurrent connections allowed to the MariaDB server. +- **Port:** The port number of the MariaDB server. +- **Database:** The name of the database that you want to connect to. +- **SSL:** Whether or not to use SSL to connect to the MariaDB server. +- **SSL Certificate:** There are three options for the SSL Certificate connection detail: + - **CA Certificate:** This option allows you to use a certificate issued by a Certificate Authority (CA). This is the most secure option, as it ensures that the identity of the MariaDB server has been verified by a trusted third party. + - **Self-Signed Certificate:** This option allows you to use a self-signed certificate. This is less secure than using a CA certificate, as it does not ensure the identity of the MariaDB server has been verified by a trusted third party. However, it is a good option if you do not have access to a CA certificate. + - **None:** This option does not use SSL. This is the least secure option, as it allows anyone to intercept your communications with the MariaDB server. + +
+ +MariaDB + +
+ +:::info +Click on **Test connection** button to verify if the credentials are correct and that the database is accessible to ToolJet server. Click on **Save** button to save the data source. +::: + +## Querying MariaDB + +Once you have connected to the MariaDB datasource, follow these steps to write queries and interact with a MariaDB database from the ToolJet application: + +1. Open the ToolJet application and navigate to the query panel at the bottom of the app builder. +2. Click the `+Add` button to open the list of available `local` and `global datasources`. +3. Select **MariaDB** from the global datasource section. +4. Enter the SQL query in the editor. +5. **Rename**(optional) and **Create** the query. +6. Click **Preview** to view the data returned from the query or click **Run** to execute the query. + +:::tip +Query results can be transformed using Transformation. For more information on transformations, please refer to our documentation at **[link](/docs/tutorial/transformations)**. +::: + +
+ +MariaDB query + +
+ +## CRUD queries + +Suppose there exists a MariaDB database named "customers." We can create an example table called "users" with the following columns: + +- `id` (integer, auto-increment) +- `name` (varchar) +- `age` (integer) +- `email` (varchar) + +The above command will create the "users" table within the "customers" database. Now, let's explore the CRUD commands for this table in MariaDB: + +```sql +CREATE TABLE user( + id INT AUTO_INCREMENT PRIMARY KEY, + name VARCHAR(50), + age INT, + email VARCHAR(100) +); +``` + +Here are the CRUD commands for this table in MariaDB: + +### Create (Insert) +- To insert a single user: +```sql +INSERT INTO user (name, age, email) +VALUES ('John Doe', 25, 'john@example.com'); +``` + +
+ +MariaDB query + +
+ +- To insert multiple users: +```sql +INSERT INTO user (name, age, email) +VALUES + ('John Doe', 25, 'john@example.com'), + ('Jane Smith', 30, 'jane@example.com'), + ('Bob Johnson', 35, 'bob@example.com'); +``` + +
+ +MariaDB query + +
+ +### Read (Select) +- To retrieve all users: +```sql +SELECT * FROM user; +``` + +
+ +MariaDB query + +
+ +- To retrieve specific columns from users: +```sql +SELECT name, age, email FROM user; +``` + +
+ +MariaDB query + +
+ +- To add conditions and filters to the selection: +```sql +SELECT name, age, email +FROM user +WHERE age > 25; +``` + +
+ +MariaDB query + +
+ +### Update +- To update the age of a user: +```sql +UPDATE user +SET age = 26 +WHERE id = 1; +``` + +
+ +MariaDB query + +
+ +### Delete +- To delete a user: +```sql +DELETE FROM user WHERE id = 1; +``` + +
+ +MariaDB query + +
+ +Remember to adjust the values and conditions based on your specific needs. These commands will allow you to create the table, insert data, retrieve data, update data, and delete data in the "users" table in MariaDB. + +## Troubleshooting tips +If you are having trouble connecting a MariaDB data source to ToolJet, try the following: +- Make sure that your MariaDB server is running and accessible from the ToolJet server. +- Check the spelling and capitalization of your credentials. +- Try restarting the ToolJet server. + +If you are still having trouble, please contact [ToolJet support](mailto:hello@tooljet.com) or ask on [slack](https://tooljet.com/slack) for assistance. diff --git a/docs/versioned_docs/version-2.23.0/data-sources/minio.md b/docs/versioned_docs/version-2.23.0/data-sources/minio.md new file mode 100644 index 0000000000..0ac53fd17d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/minio.md @@ -0,0 +1,51 @@ +--- +id: minio +title: MinIO +--- + +# MinIO + +ToolJet can connect to minio and perform various operation on them. + +## Supported operations + +- **Read object** +- **Put object** +- **Remove object** +- **List buckets** +- **List objects in a bucket** +- **Presigned url for download** +- **Presigned url for upload** + + +## Connection + +To establish a connection with the Minio data source, click on the `+Add new data source` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. + +ToolJet requires the following to connect to your DynamoDB: + +- **Host** +- **Port** +- **Access key** +- **Secret key** + +
+ +miniIo connect + +
+ +Click on **Test connection** button to verify if the credentials are correct and that the database is accessible to ToolJet server. Click on **Save** button to save the data source. + +## Querying Minio + +Click on `+` button of the **query manager** at the bottom panel of the editor and select the data source added in the previous step as the data source. Select the operation that you want to perform and click **Save** to save the query. + +miniIo query + +Click on the **run** button to run the query. + + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: [link](/docs/tutorial/transformations) +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/mongodb.md b/docs/versioned_docs/version-2.23.0/data-sources/mongodb.md new file mode 100644 index 0000000000..8a4dea7b16 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/mongodb.md @@ -0,0 +1,146 @@ +--- +id: mongodb +title: MongoDB +--- + +# MongoDB + +ToolJet can connect to MongoDB to read and write data. + +## Connection + +Please make sure the host/ip of the database is accessible from your VPC if you have self-hosted ToolJet. If you are using ToolJet cloud, please whitelist our IP. + +To establish a connection with the MongoDB data source, click on the `+Add new data source` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. + +ToolJet requires the following to connect to your MongoDB. + +- **Host** +- **Port** +- **Username** +- **Password** + +It is recommended to create a new MongoDB user so that you can control the access levels of ToolJet. + +ToolJet - Mongo connection + +Click on 'Test connection' button to verify if the credentials are correct and that the database is accessible to ToolJet server. Click on 'Save' button to save the data source. + +## Querying MongoDB + +Click on `+` button of the query manager at the bottom panel of the editor and select the database added in the previous step as the data source. Select the operation that you want to perform and click 'Save' to save the query. + +ToolJet - Mongo query + +Click on the 'run' button to run the query. + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: [link](/docs/tutorial/transformations) +::: + +### Supported operations + +- [List Collections](#list-collections) +- [Find One](#find-one) +- [Find Many](#find-many) +- [Total Count](#total-count) +- [Count](#count) +- [Distinct](#distinct) +- [Insert One](#insert-one) +- [Insert Many](#insert-many) +- [Update One](#update-one) +- [Update Many](#update-many) +- [Replace One](#replace-one) +- [Find One and Update](#find-one-and-update) +- [Find One and Replace](#find-one-and-replace) +- [Find One and Delete](#find-one-and-delete) +- [Aggregate](#aggregate) +- [Delete One](#delete-one) +- [Delete Many](#delete-many) +- [Bulk Operations](#bulk-operations) + +#### List Collections + +Returns list of collections + +#### Fine One + +Return a document which satisfy the given filter and options. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/findOne) + +#### Fine Many + +Return list of documents which satisfy the given filter and options. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/find/) + +#### Total Count + +Returns an estimation of the number of documents in the collection based on collection metadata. [Reference](https://mongodb.github.io/node-mongodb-native/4.0/classes/collection.html#estimateddocumentcount) + +#### Count + +Returns the number of documents based on the filter. [Reference](https://mongodb.github.io/node-mongodb-native/4.0/classes/collection.html#countdocuments) + +#### Distinct + +Retrieve a list of distinct values for a field based on the filter. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/distinct/) + +#### Insert One + +Insert a document. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/insertOne/) + +#### Insert Many + +Insert list of documents. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/insertMany/) + +#### Update One + +Update a document based on the filter. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/updateOne/) + +#### Update Many + +Update many documents based on the filter. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/updateMany/) + +#### Replace One + +Replace a document based on filter. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/replaceOne/) + +#### Find One and Update + +If your application requires the document after updating, use this instead of `Update One`. [Reference](https://mongodb.github.io/node-mongodb-native/4.0/classes/collection.html#findoneandupdate) + +#### Find One and Replace + +If your application requires the document after updating, use this instead of `Replace One`. [Reference](https://mongodb.github.io/node-mongodb-native/4.0/classes/collection.html#findoneandreplace) + +#### Find One and Delete + +If your application requires the document after deleting, use this instead of `Delete One`. [Reference](https://mongodb.github.io/node-mongodb-native/4.0/classes/collection.html#findoneanddelete) + +#### Aggregate + +Aggregation operations are expressions you can use to produce reduced and summarized results. [Reference](https://docs.mongodb.com/drivers/node/v4.0/fundamentals/aggregation/) + +#### Delete One + +Delete a record based on the filter. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/deleteOne/) + +#### Delete Many + +Delete many records based on the filter. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/deleteMany/) + +#### Bulk Operations + +Perform bulk operations. [Reference](https://docs.mongodb.com/drivers/node/v4.0/usage-examples/bulkWrite/) + +### Dynamic Quries + +```javascript +{ amount: { $lt: '{{ components.textinput1.value }}' }} + +// Dates +// supported: Extended JSON syntax +{ createdAt: { $date: '{{ new Date('01/10/2020') }}'} } +// not supported: MongoDB classic syntax +{ createdAt: new Date('01/10/2020') } +``` + +Reference on [mongodb extended JSON](https://docs.mongodb.com/manual/reference/mongodb-extended-json/) supported data types diff --git a/docs/versioned_docs/version-2.23.0/data-sources/mssql.md b/docs/versioned_docs/version-2.23.0/data-sources/mssql.md new file mode 100644 index 0000000000..0f9fa32b2f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/mssql.md @@ -0,0 +1,42 @@ +--- +id: mssql +title: MS SQL Server / Azure SQL databases +--- + +# MS SQL Server / Azure SQL databases + + +ToolJet can connect to MS SQL Server & Azure SQL databases to read and write data. + +## Connection + +Please make sure the host/ip of the database is accessible from your VPC if you have self-hosted ToolJet. If you are using ToolJet cloud, please whitelist our IP. + +To establish a connection with the MS SQL Server data source, click on the `+Add new data source` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. + +ToolJet requires the following to connect to your PostgreSQL database. + +- **Host** +- **Port** +- **Username** +- **Password** +- **Azure** - Select this option if you are using Azure SQL databases. + +It is recommended to create a new database user so that you can control the access levels of ToolJet. + +Click on 'Test connection' button to verify if the credentials are correct and that the database is accessible to ToolJet server. Click on 'Save' button to save the data source. + +ToolJet - Redis connection + + +## Querying SQL Server / Azure SQL databases +Click on '+' button of the query manager at the bottom panel of the editor and select the database added in the previous step as the data source. + +Click on the 'run' button to run the query. + +ToolJet - Redis connection + + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: [link](/docs/tutorial/transformations) +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/mysql.md b/docs/versioned_docs/version-2.23.0/data-sources/mysql.md new file mode 100644 index 0000000000..c349d83171 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/mysql.md @@ -0,0 +1,97 @@ +--- +id: mysql +title: MySQL +--- + +ToolJet can connect to MySQL databases to read and write data. + +## Connection + +To establish a connection with the MySQL data source, you can either click on the `+Add New` button located on the query panel or navigate to the **[Data Sources](/docs/data-sources/overview)** page through the ToolJet dashboard. + +
+ +MySQL data source + +
+
+ +:::info +Please make sure the **Host/IP** of the database is accessible from your VPC if you have self-hosted ToolJet. If you are using ToolJet cloud, please **whitelist** our IP. +::: + +**ToolJet requires the following to connect to your MySQL database:** + +| Parameter | Description | +| :-------------- | :------------------------------------------------------------------------ | +| Username | Username of the MySQL database | +| Password | Password of the MySQL database | +| Database name | Name of the MySQL database | +| Connection type | Connection type of the MySQL database: either **Hostname** or **Socket**. | + +If you are using **Hostname** as the connection type, you will need to provide the following information: + +| Parameter | Description | +| :-------- | :------------------------------------------- | +| Host/IP | Hostname or IP address of the MySQL database | +| Port | Port number of the MySQL database | +| SSL | Enable SSL connection to the MySQL database | + +If you are using **Socket** as the connection type, you will need to provide the following information: + +| Parameter | Description | +| :---------- | :---------------------- | +| Socket path | Path of the socket file | + +It is recommended to create a new MySQL database user so that you can control the access levels of ToolJet. + +
+ +mysql + +
+ +Click on **Test connection** to verify the correctness of the provided credentials and the accessibility of the database to the ToolJet server. Finally, click the **Save** button to save the data source configuration. + +## Querying MySQL + +Once the MySQL data source is added, you can create queries to read and write data to the database. You can create queries from the **[Query Panel](/docs/app-builder/query-panel#add)** located at the bottom panel of the app builder. + +1. **[SQL mode](/docs/data-sources/mysql#sql-mode)** +2. **[GUI mode](/docs/data-sources/mysql#gui-mode)** + +### SQL mode + +SQL mode can be used to query MySQL database using SQL queries. Select SQL mode from the dropdown and then enter the SQL query in the editor. + +**Example:** + +```sql +SELECT * FROM users +``` + +
+ +mysql + +
+ +### GUI mode + +GUI mode can be used to query MySQL database without writing queries. Select GUI mode from the dropdown and then choose the operation **Bulk update using primary key**. Enter the **Table** name and **Primary key column** name. Now, in the editor enter the records in the form of an array of objects. Each object should contain the primary key column and the columns to be updated. + +**Example:** + +```json +{{ [ {id: 1, channel: 33}, {id:2, channel:24} ] }} +``` + +
+ +mysql + +
+ +:::tip +Query results can be transformed using transformations. Learn more about transformations [here](/docs/tutorial/transformations). +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/n8n.md b/docs/versioned_docs/version-2.23.0/data-sources/n8n.md new file mode 100644 index 0000000000..0b555ab95e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/n8n.md @@ -0,0 +1,51 @@ +--- +id: n8n +title: n8n +--- + +# n8n + +ToolJet can trigger n8n workflows using webhook URLs. Please refer [this](https://docs.n8n.io/) to know more about n8n. + +## Connection + +To establish a connection with the n8n data source, click on the `+Add new data source` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. + +n8n webhooks can be called with or without an **Authentication**. You can keep the `Authentication type` as `none` if your webhook didn't have one or if it has one then you can choose the one from the dropdown and provide credentials: + +#### Authentication Types +- **Basic Auth**: To connect your n8n webhooks using basic auth you'll need to provide the following credentials: + - **Username** + - **Password** + +
+ +n8n basicauth + +
+ +- **Header Auth**: To connect your n8n webhooks using header auth the following fields are required: + - **Name / Key** + - **Value** + +
+ +n8n headerauth + +
+ +:::tip +Webhook credentials and instance credentials are different. Please use the credentials that you use with the webhook trigger. Know more: **[Webhook Authentication](https://docs.n8n.io/nodes/n8n-nodes-base.webhook/#:~:text=then%20gets%20deactivated.-,Authentication,-%3A%20The%20Webhook%20node)**. +::: + +## Trigger Workflow + +Click on `+` button of the query manager at the bottom panel of the editor and the select n8n as the datasource. + +You can trigger a workflow with `GET/POST` URL. Choose the request type from the `Methods` dropdown and then provide the required fields: + - **URL parameters** (Support for GET & POST) `Optional` + - **Body** (Only for POST URL) `Required` + + +n8n query + diff --git a/docs/versioned_docs/version-2.23.0/data-sources/notion.md b/docs/versioned_docs/version-2.23.0/data-sources/notion.md new file mode 100644 index 0000000000..a224116642 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/notion.md @@ -0,0 +1,260 @@ +--- +id: notion +title: Notion +--- + +# Notion + +ToolJet can connect to a Notion workspace to do operations on notion pages, databases and blocks. + +## Connection + +To establish a connection with the Notion data source, click on the `+Add new data source` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. + +For integrating Notion with ToolJet we will need the API token. The API token can be generated from your Notion workspace settings. Read the official Notion docs for [Creating an internal integration with notion API](https://www.notion.so/help/create-integrations-with-the-notion-api). + +
+ +notion api + +
+ +## Querying Notion + +Notion API provides support for: + +- **[Database](#database)** +- **[Page](#page)** +- **[Block](#blocks)** +- **[User](#user)** + +notion querying + +:::tip + +Before querying Notion, you must share the database with your integration. Click the share button in your database view, find your integration name select it. + +notion share + +::: + +### Database + +On database resource you can perform the following operations: + +- **[Retrieve a database](#1-retrieve-a-database)** +- **[Query a database](#2-query-a-database)** +- **[Create a database](#3-create-a-database)** +- **[Update a database](#4-update-a-database)** + +notion db + +#### 1. Retrieve a database + +This operations retrieves a Database object using the ID specified. + +##### Required parameters: + +- **Database ID**: You'll find the Database ID in the url. Suppose this is the example url: `https://www.notion.so/workspace/XXX?v=YYY&p=ZZZ` then `XXX` is the database ID, `YYY` is the view ID and `ZZZ` is the page ID. + +notion db retreieve + +#### 2. Query a database + +This operation gets a list of **Pages** contained in the database, filtered and ordered according to the filter conditions and sort criteria provided in the query. + +##### Required parameters: + +- **Database ID** : You'll find the Database ID in the url. Suppose this is the example url: `https://www.notion.so/workspace/XXX?v=YYY&p=ZZZ` then `XXX` is the database ID, `YYY` is the view ID and `ZZZ` is the page ID. + +##### Optional parameters: + +- **Filter** : This must be an object of filters +- **Sort** : Array of sort objects +- **Limit** : limit for pagination +- **Start Cursor** : Next object id to continue pagination + +#### 3. Create a database + +This operation creates a database as a subpage in the specified parent page, with the specified properties. + +##### Required parameters: + +- **Database ID** : You'll find the Database ID in the url. Suppose this is the example url: `https://www.notion.so/workspace/XXX?v=YYY&p=ZZZ` then `XXX` is the database ID, `YYY` is the view ID and `ZZZ` is the page ID. +- **Page ID** : Page ID of the parent +- **Properties** : Properties defines the columns in a database + +##### Optional parameters: + +- **Title** : Title should be an array of rich_text properties +- **Icon type** : Currently notion api accepts two icon options, emoji, external URL +- **Icon value** : Value of selected icon type +- **Icon type** : Currently notion api accepts only external URL +- **Cover value** : Value of selected cover type + +#### 4. Update a database + +This operation updates an existing database as specified by the parameters. + +##### Required parameters: + +- **Database ID** + +##### Optional parameters: + +- **Title** : Title should be an array of rich_text properties +- **Properties** : Properties defines the columns in a database +- **Icon type** : Currently notion api accepts two icon options, emoji, external URL +- **Icon value** : Value of selected icon type +- **Icon type** : Currently notion api accepts only external URL +- **Cover value** : Value of selected cover type + +### Page + +On page resource you can perform the following operations: + +- **[Retrieve a page](#1-retrieve-a-page)** +- **[Create a page](#2-create-a-page)** +- **[Update a page](#3-update-a-page)** +- **[Retrieve a page property](#4-retrieve-a-page-property-item)** +- **[Archive a page](#5-archive-delete-a-page)** + +notion page + +#### 1. Retrieve a page + +This operation retrieves a **Page** object using the ID specified. + +##### Required parameters: + +- **Page ID** + +#### 2. Create a page + +This operation creates a new page in the specified database or as a child of an existing page. If the parent is a database, the property values of the new page in the properties parameter must conform to the parent database's property schema. If the parent is a page, the only valid property is title. + +##### Parameters: + +- **Page ID** +- **Properties** : Property values of this page +- **Icon type** : Currently notion api accepts two icon options, emoji, external URL +- **Icon value**: Value of selected icon type +- **Icon type** : Currently notion api accepts only external URL +- **Cover value** : Value of selected cover type + +#### 3. Update a page + +This operation updates page property values for the specified page. Properties that are not set via the properties parameter will remain unchanged. + +##### Parameters: + +- **Page ID** +- **Parent type**: A database parent or page parent +- **Properties** : Property values of this page +- **Children** : Page content for the new page as an array of block objects +- **Icon type** : Currently notion api accepts two icon options, emoji, external URL +- **Icon value**: Value of selected icon type +- **Icon type** : Currently notion api accepts only external URL +- **Cover value** : Value of selected cover type + +#### 4. Retrieve a page property item + +This operation retrieves a property_item object for a given page ID and property ID. Depending on the property type, the object returned will either be a value or a paginated list of property item values. See Property item objects for specifics. + +##### Parameters: + +- **Page ID** +- **Property ID** +- **Limit** +- **Start cursor** + +#### 5. Archive (delete) a page + +##### Required parameters: + +- **Page ID** +- **Archive**: Dropdown for archive and un archive the page + +### Blocks + +The following operations can be performed on the block resource: + +- **[Retrieve a block](#1-retrieve-a-block)** +- **[Append block children](#2-append-new-block-children)** +- **[Retrieve block children](#3-retrieve-block-children)** +- **[Update a block](#4-update-a-block)** +- **[Delete a block](#5-delete-a-block)** + +notion block + +:::info +To get the id for blocks, simply click on the menu icon for the block and click "Copy link". Afterwards, paste the link in the browser and it should look like this: `https://www.notion.so/Creating-Page-Sample-ee18b8779ae54f358b09221d6665ee15#7fcb3940a1264aadb2ad4ee9ffe11b0e` the string after **#** is the block id i.e. `7fcb3940a1264aadb2ad4ee9ffe11b0e`. +::: + +#### 1. Retrieve a block + +This operation retrieves a **Block** object using the ID specified. + +##### Required parameters: + +- **Block ID** + +#### 2. Append new block children + +This operation creates and appends new children blocks to the parent block_id specified. + +##### Required parameters: + +- **Block ID** +- **Children**: Array of block objects + +#### 3. Retrieve block children + +This operation retrieves a paginated array of child block objects contained in the block using the ID specified. + +##### Required parameters: + +- **Block ID** +- **Limit** +- **Start cursor** + +#### 4. Update a block + +This operation updates the content for the specified block_id based on the block type. + +##### Required parameters: + +- **Block ID** +- **Properties**: The block object type value with the properties to be updated +- **Archive** + +#### 5. Delete a block + +##### Required parameters: + +- **Block ID** + +### User + +The following operations can be performed on the user notion resource: + +#### 1. Retrieve a user from current workspace + +This operation retrieves a User using the ID specified. + +notion user + +##### Required parameters: + +- **User ID** + +#### 2. Retrieve list of users of a workspace + +This operation returns a paginated list of Users for the workspace. + +##### Required parameters: + +- **Limit** +- **Start cursor** + +[Read more about notion API](https://developers.notion.com/reference/intro) diff --git a/docs/versioned_docs/version-2.23.0/data-sources/openapi.md b/docs/versioned_docs/version-2.23.0/data-sources/openapi.md new file mode 100644 index 0000000000..403b84456a --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/openapi.md @@ -0,0 +1,42 @@ +--- +id: openapi +title: OpenAPI +--- + +# OpenAPI + +OpenAPI is a specification for designing and documenting RESTful APIs. Using OpenAPI datasource, ToolJet can generate REST API operations from OpenAPI Specs. + +## Connection + +To establish a connection with the OpenAPI global datasource, you can either click on the `+Add new global datasource` button located on the query panel or navigate to the **[Global Datasources](/docs/data-sources/overview)** page through the ToolJet dashboard. + +- Connections are created based on OpenAPI specifications. +- The available authentication methods currently supported are Basic Auth, API Key, Bearer Token, and OAuth 2.0. +- It is also possible to use specifications that require multiple authentications. Learn more [here](https://swagger.io/docs/specification/authentication/). + +:::info +OpenAPI datasource accepts specifications only in **JSON** and **YAML** formats. +::: + +
+ +OpenAPI + +
+ +## Querying OpenAPI + +- Operations will be automatically generated from the specifications, and each operation will be distinct from others. + +### Fields + +- **Host** (Base URL): Some specifications may have one or multiple base URLs/servers, and certain operations might have separate base URLs. Therefore, you can choose the appropriate URL from the host selection. + +- **Operation** + +
+ +OpenAPI + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/oracledb.md b/docs/versioned_docs/version-2.23.0/data-sources/oracledb.md new file mode 100644 index 0000000000..c0d3118cc8 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/oracledb.md @@ -0,0 +1,54 @@ +--- +id: oracledb +title: Oracle DB +--- + +# Oracle DB + +ToolJet can connect to Oracle databases to read and write data. + +## Connection + +To establish a connection with the Oracle DB data source, click on the `+Add new` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. + +A Oracle DB can be connected with the following credentails: +- **Host** +- **Port** +- **SID / Service Name** ( Database name must be a SID / Service Name ) +- **Database Name** +- **SSL** +- **Username** +- **Password** +- **Client Library Path** ( Only required for local setup ) + +
+ +![ToolJet - Data source - OracleDB](/img/datasource-reference/oracledb/oracleauth.png) + +
+ +Click on **Test connection** button to verify if the credentials are correct and that the database is accessible to ToolJet server. Click on **Save** button to save the data source. + +## Querying Oracle DB + +Once you have added a Oracle DB data source, click on `+` button of the query manager to create a new query. There are two modes by which you can query SQL: + + 1. **[SQL mode](/docs/data-sources/oracledb#sql-mode)** + 2. **[GUI mode](/docs/data-sources/oracledb#gui-mode)** + +#### SQL mode + +SQL mode can be used to write raw SQL queries. Select SQL mode from the dropdown and enter the SQL query in the editor. Click on the `run` button to run the query. + + +#### GUI mode + +GUI mode can be used to query Oracle database without writing queries. Select GUI mode from the dropdown and then choose the operation **Bulk update using primary key**. Enter the **Table** name and **Primary key column** name. Now, in the editor enter the records in the form of an array of objects. + +**Example**: `{{ [ {id: 1, channel: 33}, {id:2, channel:24} ] }}` + +Click on the **run** button to run the query. **NOTE**: Query should be saved before running. + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: **[link](/docs/tutorial/transformations)** +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/overview.md b/docs/versioned_docs/version-2.23.0/data-sources/overview.md new file mode 100644 index 0000000000..26b25c3701 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/overview.md @@ -0,0 +1,150 @@ +--- +id: overview +title: Overview +--- + +# Data Sources : Overview + +Data Sources pull in and push data to any source including databases, external APIs, or services. Once a data source is connected to a workspace, the connection can be shared with any app of that workspace. + +:::caution +Data Source page is available only on **ToolJet version 2.3.0 and above**. +::: + +
+ +Data Sources: Overview + +
+ +## Connecting data sources + +1. **Create a new app** from the dashboard, and Click on the **+ Add new** button from the query panel. +
+ + Data Sources: Overview + +
+ + Or you can directly go to the **Data Sources** page from the left sidebar of the dashboard + +
+ + Data Sources: Overview + +
+ +2. Within the **Data Sources** page, you'll find various categories of data sources on the left side, including Databases, APIs, Cloud Storages, and plugins. Click on each category to view the list of accessible data sources. As you hover over the desired data source, an `Add` button will appear. Upon clicking this button, the selected data source will be integrated into the workspace. + +
+ + Overview of Data Sources + +
+ +3. Once the data source is added, you'll be required to input the configuration details for establishing a connection. + + ***Note: For paid plans, configuration entry and saving are necessary to enable availability across [multiple environments](/docs/release-management/multi-environment/).*** + +
+ + Overview of Data Sources + +
+ +4. Returning to the dashboard, proceed to generate a new application. The recently added data source will be accessible within the query panel under the **Available data sources** section. Data Sources that have been added can now be utilized in both **existing applications** and **newly created applications**. + +
+ + Overview of Data Sources + +
+ +5. At this point, you can create queries to the connected data sources. Within these queries, the option exists to switch between **distinct connections** associated with the same data source, in cases where multiple connections have been established. + +
+ + Overview of Data Sources + +
+ +## Default data sources + +By default, 4 data sources will be available on every app on ToolJet: +- **[ToolJet Database](/docs/tooljet-database/)** +- **[RestAPI](/docs/data-sources/restapi/)** +- **[Run JavaScript Query](/docs/data-sources/run-js/)** +- **[Run Python Query](/docs/data-sources/run-py/)** + +
+ +Data Sources: Overview + +
+ +## User Permissions + +Changing the **Permissions** for Data Sources is a privilege reserved for **Admins** and **[Super Admins](/docs/Enterprise/superadmin)** within the workspace. + +To configure these permissions, navigate to **Workspace Settings** -> **Groups Settings**. Admins and Super Admins have the authority to assign the following permissions to user groups: + +
+ +#### Creation and Deletion of data sources within the workspace + +| Permission | Description | +|:---|:---| +| **Just Create** | Add new data sources and modify existing ones. Delete button will not be visible on hovering over the connected data source. | +| **Just Delete** | Remove connected data sources from the workspace. Delete button will show up on hovering over the connected data source. | +| **Both Create and Delete** | Add new data sources and remove connected data sources from the workspace. | +| **Niether Create nor Delete** | No access to the Data Sources page from the Dashboard. Error toast will popup on trying to access the Data Sources page using URL. | + +
+ +Data Sources: Overview + +
+ +
+ +#### Authorization to View or Edit permitted data sources from the data source page + +| Permission | Description | +|:---|:---| +| **View** | Connect to authorized data sources for their user group. Users can't update the credentials of authorized data sources. | +| **Edit** | Users can update the credentials of authorized data sources. | + +
+ +Data Sources: Overview + +
+ +
+ +## Changing scope of data sources on an app created on older versions of ToolJet + +On ToolJet versions below 2.3.0, the data source connection was made from within the individual apps. To make it backward compatible, we added an option to change the scope of the data sources and make it global data source. + +1. When dealing with apps that were created using ToolJet versions prior to 2.3.0, you will notice the presence of the data source manager in the left sidebar of the App Builder. +
+ + Data Sources: Overview + +
+ +2. To change the scope, locate the kebab menu situated next to the connected data source. From this menu, select the **change scope** option. +
+ + Data Sources: Overview + +
+ +3. Once you change the scope of the data source and make it global, you'll see that the **data source manager** is removed from the left sidebar and now you'll find the data source on the **query panel** under Global Data sources. You can now configure the data source from the Data Sources page on the **dashboard**. +3. Once you have successfully changed the scope of the data source, thereby transforming it into a global data source, you will observe that the **data source manager** from the left sidebar is removed. Subsequently, the data source will be accessible within the **query panel** under the Available data sources section. Now you can configure this data source from the Data Sources page located on the **Dashboard**. + +
+ + Data Sources: Overview + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/postgresql.md b/docs/versioned_docs/version-2.23.0/data-sources/postgresql.md new file mode 100644 index 0000000000..1a5b4e8fb6 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/postgresql.md @@ -0,0 +1,91 @@ +--- +id: postgresql +title: PostgreSQL +--- + +ToolJet has the capability to connect to PostgreSQL databases for data retrieval and modification. + +## Establishing a Connection + +To establish a connection with the PostgreSQL global datasource, you can take either of the following steps: click on the "Add new global datasource" button in the query panel, or access the [Global Datasources](/docs/data-sources/overview) page through the ToolJet dashboard. + +ToolJet requires the following information to connect to your PostgreSQL database: + +- **Host** +- **Port** +- **SSL** +- **Database Name** +- **Username** +- **Password** +- **Connection Options** +- **SSL Certificate** + +We recommend creating a new PostgreSQL database user to have control over ToolJet's access levels. + +:::caution +Ensure that the host/IP of the database is accessible from your VPC in case you are using self-hosted ToolJet. If you are using ToolJet cloud, please whitelist our IP. +::: + +
+ +PG connection + +
+ +Click the **Test connection** button to verify the correctness of the credentials and the accessibility of the database to ToolJet server. Click the **Save** button to save the data source. + +## Querying PostgreSQL + +Click on `+Add` button on the query panel and select the PostgreSQL from the global datasources. + +PostgreSQL query editor has two modes, **SQL** & **GUI**. **[SQL mode](/docs/data-sources/postgresql#sql-mode)** can be used to write raw SQL queries and **[GUI mode](/docs/data-sources/postgresql#gui-mode)** can be used to query your PostgreSQL database without writing queries. + +
+ +PG connection + +
+ +#### SQL Mode + +To execute SQL queries, select the SQL mode from the dropdown and enter your query in the editor. Click the `Run` button to execute the query. + +
+ +PG connection + +
+ +#### GUI Mode + +Choose the GUI mode from the dropdown and select the operation **Bulk update using primary key**. Provide the **Table** name and the **Primary key column** name. Then, in the editor, input the **records** as an array of objects. + +Here is an example of records for a bulk update using the provided format: + +```json +[ + { + "customer_id": 1, + "country": "India" + }, + { + "customer_id": 2, + "country": "USA" + } +] +``` + +Please note that the records should be enclosed within square brackets `[]`, and each record should be represented as an object with key-value pairs. + +Click the `Run` button to execute the query. + +
+ +PG connection + +
+ +:::tip +- You can apply transformations to the query results. Refer to our transformations documentation for more details: **[link](/docs/tutorial/transformations)** +- Check out this how-to guide on **[bulk updating multiple rows](/docs/how-to/bulk-update-multiple-rows)** from a table component. +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/redis.md b/docs/versioned_docs/version-2.23.0/data-sources/redis.md new file mode 100644 index 0000000000..a1aeaf03d4 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/redis.md @@ -0,0 +1,87 @@ +--- +id: redis +title: Redis +--- + +ToolJet enables you to execute Redis commands on your Redis instances. + +## Connecting to Redis + +To establish a connection with the Redis global datasource, you have two options. You can either click on the **`+Add new global datasource`** button on the query panel or access the **[Global Datasources](/docs/data-sources/overview)** page from the ToolJet dashboard. + +
+ +Redis + +
+ +**To connect ToolJet with Redis, you need to provide the following connection details:** + +- **Host**: The address or hostname of the Redis server +- **Port**: The port number used by the Redis server (default is 6379) +- **Username**: The username used for authentication +- **Password**: The password used for authentication + +:::info +Click on **Test connection** button to verify if the credentials are correct and that the Redis is accessible to ToolJet server. Click on **Save** button to save the data source. +::: + +## Redis Queries + +Here are some examples of Redis commands and their usage. You can refer to the [Redis Official Documentation](https://redis.io/commands) for a complete list of supported commands. + +### PING Command + +The `PING` command is used to test the connection to Redis. If the connection is successful, the Redis server will respond with `PONG`. + +```shell +PING +``` + +### SET Command + +The `SET` command is used in Redis to assign a value to a specific key. + +```shell +SET key value +``` + +**Example 1/2:** +When the input value contains spaces, you should encode the value before providing it as an input: + +```shell +SET products {{encodeURI('John Doe')}} +``` + +
+ +Redis + +
+ +### GET Command + +The `GET` command is used in Redis to retrieve the value associated with a specific key. + +```shell +GET key +``` + +**Example 2/2:** +To retrieve a value that was previously encoded while setting, you can use transformations. + +- Enter the GET command in the editor: + ```shell + GET products + ``` + +- Enable Transformations (JS) and use `decodeURI`: + ```js + return JSON.parse(decodeURI(data)); + ``` + +
+ + Redis + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/restapi.md b/docs/versioned_docs/version-2.23.0/data-sources/restapi.md new file mode 100644 index 0000000000..04d8057d36 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/restapi.md @@ -0,0 +1,275 @@ +--- +id: restapi +title: REST API +--- + +ToolJet can establish a connection with any available REST API endpoint and create queries to interact with it. + +## Connection + +To establish a connection with the REST API data source, you can either click on the `Add new` button located on the query panel or navigate to the **[Data Sources](/docs/data-sources/overview)** page through the ToolJet dashboard. + +
+ +ToolJet - Data source - REST API + +
+ +**ToolJet requires the following to connect to a REST API data source:** + +- __Base URL__: REST API endpoint URL +- __Headers__: Key-value pairs to include as headers with REST API requests. +- __Authentication Type__: The method of authentication to use with REST API requests. Supported Types: None, Basic, Bearer, and OAuth 2.0 + - **Basic**: Requires Username and Password + - **Bearer**: Requires a token, typically a JSON Web Token (JWT), to grant access + - **OAuth 2.0**: The OAuth 2.0 protocol mandates the provision of the following parameters: access token URL, access token URL custom headers, client ID, client secret, scopes, custom query parameters, authorization URL, custom authentication parameters, and client authentication. +- __SSL Certificate__: SSL certificate to use with REST API requests. Supported Types: None, CA Certificate, and Client Certificate + - **CA Certificate**: Requires a CA certificate to verify the server certificate + - **Client Certificate**: Requires a client certificate to authenticate with the server + +
+ +ToolJet - Data source - REST API + +
+ +## Querying REST API + +Once you have connected to the REST API data source, follow these steps to write queries and interact with a REST API in the ToolJet application: + +1. Open the ToolJet application and navigate to the query panel at the bottom of the app builder. +2. Click the `+Add` button to open the list of available `Data Sources`. +3. Select **REST API** from the Data Source section. +4. Enter the required query parameters. +5. Click `Preview` to view the data returned from the query or click `Run` to execute the query. + +:::tip +Query results can be transformed using the **[Transformations](/docs/how-to/transformations)** feature. +::: + +
+ +ToolJet - Data source - REST API + +
+ +
+ +ToolJet supports the REST HTTP methods **GET**, **POST**, **PUT**, **PATCH**, and **DELETE**. You can select the method from the dropdown menu. + +
+ +ToolJet - Data source - REST API + +
+
+ +## Additional header + +Whenever a request is made to the REST API, a **tj-x-forwarded-for** header is added to the request, the value of the header will be the IP address of the user who is logged in to the ToolJet application. This header can be used to identify the user who is making the request to the REST API. + +
+ +ToolJet - Data source - REST API + +
+ +## Response types + +REST APIs can return data in a variety of formats, including **JSON** and **Base64**. JSON is a common format used for data exchange in REST APIs, while Base64 is often used for encoding binary data, such as images or video, within a JSON response. +When the response `content-type` is **image**, the response will be a `base64` string. + +### Example JSON response + +```json +[ + { + "id": 1, + "title": "Fjallraven - Foldsack No. 1 Backpack, Fits 15 Laptops", + "price": 109.95, + "description": "Your perfect pack for everyday use and walks in the forest. Stash your laptop (up to 15 inches) in the padded sleeve, your everyday", + "category": "men's clothing", + "image": "https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg", + "rating": { + "rate": 3.9, + "count": 120 + } + }, + { + "id": 2, + "title": "Mens Casual Premium Slim Fit T-Shirts ", + "price": 22.3, + "description": "Slim-fitting style, contrast raglan long sleeve, three-button henley placket, light weight & soft fabric for breathable and comfortable wearing. And Solid stitched shirts with round neck made for durability and a great fit for casual fashion wear and diehard baseball fans. The Henley style round neckline includes a three-button placket.", + "category": "men's clothing", + "image": "https://fakestoreapi.com/img/71-3HjGNDUL._AC_SY879._SX._UX._SY._UY_.jpg", + "rating": { + "rate": 4.1, + "count": 259 + } + }, + { + "id": 3, + "title": "Mens Cotton Jacket", + "price": 55.99, + "description": "great outerwear jackets for Spring/Autumn/Winter, suitable for many occasions, such as working, hiking, camping, mountain/rock climbing, cycling, traveling or other outdoors. Good gift choice for you or your family member. A warm hearted love to Father, husband or son in this thanksgiving or Christmas Day.", + "category": "men's clothing", + "image": "https://fakestoreapi.com/img/71li-ujtlUL._AC_UX679_.jpg", + "rating": { + "rate": 4.7, + "count": 500 + } + }, + { + "id": 4, + "title": "Mens Casual Slim Fit", + "price": 15.99, + "description": "The color could be slightly different between on the screen and in practice. / Please note that body builds vary by person, therefore, detailed size information should be reviewed below on the product description.", + "category": "men's clothing", + "image": "https://fakestoreapi.com/img/71YXzeOuslL._AC_UY879_.jpg", + "rating": { + "rate": 2.1, + "count": 430 + } + } +] +``` + +The JSON response can be easily loaded on the components like **table** and **listview** using **`{{queries..data}}`** + +
+ +ToolJet - Data source - REST API + +
+ +You can also use JS methods like **map** to load data on components like **dropdown** using **`{{queries.restapi1.data.map(i => i.title)}}`** + +
+ +ToolJet - Data source - REST API + +
+ +### Example base64 response + +```base64 +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 +``` + +Read the guide on **[loading base64 data](/docs/how-to/loading-image-pdf-from-db)** + +
+ +ToolJet - Data source - REST API + +
+ +## OAuth 2.0 method for authenticating REST APIs + +ToolJet’s REST API data source supports OAuth 2.0 as the authentication type. + +Before setting up the REST API data source in ToolJet, we need to configure the **Google Cloud Platform** to gather the API keys required for the authorization access. + +### Setting up Google Cloud Platform + +Google Cloud Platform provides access to more than 350 APIs and Services that can allow us to access data from our Google account and its services. Let's create an OAuth application that can be given permission to use our Google profile data such as Name and Profile picture. + +1. Sign in to your [Google Cloud](https://cloud.google.com/) account, and from the console create a New Project. +2. Navigate to the **APIs and Services**, and then open the **OAuth consent screen** section from the left sidebar. +3. Enter the Application details and select the appropriate scopes for your application. We will select the profile and the email scopes. +4. Once you have created the OAuth consent screen, Create new credentials for the **OAuth client ID** from the **Credentials** section in the left sidebar. +5. Select the application type, enter the application name, and then add the following URIs under Authorised Redirect URIs: + 1. `https://app.tooljet.com/oauth2/authorize` (if you’re using ToolJet cloud) + 2. `http://localhost:8082/oauth2/authorize` (if you’re using ToolJet locally) +6. Now save and then you’ll get the **Client ID and Client secret** for your application. + +ToolJet - How To - REST API authentication using OAuth 2.0 + +### Configuring ToolJet Application with Google's OAuth 2.0 API + +Let's follow the steps to authorize ToolJet to access your Google profile data: + +- Go to the **Data Sources** page from the ToolJet dashboard, select API category on sidebar and choose the **REST API** data source. + + :::info + You can rename the data source by clicking on its default name `restapi` + ::: + +- In the **Base URL** field, enter the base URL `https://www.googleapis.com/oauth2/v1/userinfo`; the base URL specifies the network address of the API service. +- Select **Authentication** type as `OAuth 2.0` +- Keep the default values for **Grant Type**, **Add Access Token To**, and **Header Prefix** i.e. `Authorization Code`, `Request Header`, and `Bearer` respectively. +- Enter **Access Token URL**: `https://oauth2.googleapis.com/token`; this token allows users to verify their identity, and in return, receive a unique access token. +- Enter the **Client ID** and **Client Secret** that we generated from the [Google Console](http://console.developers.google.com/). +- In the **Scope** field, enter `https://www.googleapis.com/auth/userinfo.profile`; Scope is a mechanism in OAuth 2.0 to limit an application's access to a user's account. Check the scopes available for [Google OAuth2 API here](https://developers.google.com/identity/protocols/oauth2/scopes#oauth2). +- Enter **Authorization URL:** `https://accounts.google.com/o/oauth2/v2/auth`; the Authorization URL requests authorization from the user and redirects to retrieve an authorization code from identity server. +- Create three **Custom Authentication Parameters:** + + | Params | Description | + |:----------- |:----------- | + | response_type | code ( `code` refers to the Authorization Code) | + | client_id | **Client ID** | + | redirect_uri | `http://localhost:8082/oauth2/authorize` if using ToolJet locally or enter this `https://app.tooljet.com/oauth2/authorize` if using ToolJet Cloud. | + +- Keep the default selection for **Client Authentication** and **Save** the data source. + +ToolJet - How To - REST API authentication using OAuth 2.0 + +### Authenticating REST API + +Let’s create a query to make a `GET` request to the URL, it will pop a new window and ask the user to authenticate against the API. + +- Add a new query and select the REST API data source from the dropdown +- In the **Method** dropdown select `GET` and enabe the `Run query on application load?` +- Run the query. +- A new window will pop for authentication and once auth is successful, you can run the query again to get the user data like Name and Profile Picture. + +## Bearer Token method for authenticating REST APIs + +ToolJet’s REST API data source supports Bearer Token as the authentication type. Bearer Token is a security token that is issued by the authentication server to the client. The client then uses the token to access the protected resources hosted by the resource server. + +### Configuring REST API data source with Bearer Token + +- Go to the **Data Sources** page from the ToolJet dashboard, select **API** category on sidebar and choose the **REST API** data source. + + :::info + You can rename the data source by clicking on its default name `restapi` + ::: + +- In the **Base URL** field, enter the base URL. The base URL specifies the network address of the API service. For example, `http://localhost:3001/api/bearer-auth` +- Enter the **Headers** if required. Headers are key-value pairs to include as headers with REST API requests. +- Select **Authentication** type as `Bearer` from the dropdown. +- Enter the **Token** in the field. The token is a security token that is issued by the authentication server to the client. The client then uses the token to access the protected resources hosted by the resource server. +
+ + ToolJet - Data source - REST API + +
+ +- Now you have option to select the **SSL Certificate** if required. SSL certificate is used to verify the server certificate. By default, it is set to `None`. You can provide the **CA Certificate** or **Client Certificate** from the dropdown. + - **CA Certificate**: Requires a CA certificate to verify the server certificate. Copy the content of `server.crt` file and paste it in the **CA Cert** field. `server.crt` file is the certificate file that is used to verify the server certificate. + +
+ + ToolJet - Data source - REST API + +
+ + - **Client Certificate**: Requires a client certificate to authenticate with the server. `client.key`, `client.crt`, and `server.crt` files are the certificate files that are used to authenticate with the server. Copy the content of `client.key` file and paste it in the **Client Key** field. Copy the content of `client.crt` file and paste it in the **Client Cert** field. Copy the content of `server.crt` file and paste it in the **CA Cert** field. + +
+ + ToolJet - Data source - REST API + +
+ +- Once you have configured the REST API data source, click on the **Save** button. + +### Authenticating REST API + +Create a query to make a `GET` request to the URL, and it will return a success message if the token is valid. + +
+ +ToolJet - Data source - REST API + +
diff --git a/docs/versioned_docs/version-2.23.0/data-sources/rethinkdb.md b/docs/versioned_docs/version-2.23.0/data-sources/rethinkdb.md new file mode 100644 index 0000000000..6ffd11e7dc --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/rethinkdb.md @@ -0,0 +1,52 @@ +--- +id: rethinkdb +title: RethinkDB +--- +# RethinkDB + +ToolJet can connect to RethinkDB databases to read and write data. For more info visit this [doc](https://rethinkdb.com/api/javascript). + +ToolJet - Data source - RethinkDB + +## Connection + +ToolJet connects to InfluxDB using : + +- **Database** +- **Host** +- **Port** +- **Username** +- **Password** + + +## Supported queries: + +- Delete database + +- Delete Table + +- Create database + +- Create Table + +- List table + +- List database + +- Get all documents + +- Insert table data + +- Update all table data + +- Update by id + +- Delete table data by id + +- Delete all table data + +- Get document from primary key + +:::info +NOTE: Name field in all operation is database name if not given will take the default database used for connection. +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/run-py.md b/docs/versioned_docs/version-2.23.0/data-sources/run-py.md new file mode 100644 index 0000000000..e60dc2c629 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/run-py.md @@ -0,0 +1,56 @@ +--- +id: run-py +title: Run Python code +--- + +You can write custom Python code to interact with components and queries. To do that, you just need to create a new query and select **Run Python Code** from the available datasources. + +
+ +Run JavaScript code + +
+ +#### Example: Using Python code to trigger component specific actions + +- Let's drag a **button** and a **text** widget onto the canvas. We will set a text on the text component and trigger button click event from the Python query. +- Click on the `+` on the query panel to create a query and select **Run Python code** from the available datasources +- Let's write the code in **Python Editor** and save the query: + + ```python + class Person: + def __init__(self, name, age): + self.name = name + self.age = age + + def myfunc(self): + return "Hello my name is " + self.name + + p1 = Person(tj_globals.currentUser.firstName, 36) + + components.text1.setText(p1.myfunc()) + components.button1.click() + ``` +- The code above has a function `myfunc` which returns a string and we using the component specific action to set the **text component**'s value from the Python query. We are also triggering the button click using `components.button1.click()` + +:::tip +- ToolJet's global variables can be accessed using **tj_globals**. ex: `tj_globals.currentUser.firstName` +- As of now, Run Python code only supports the [Python standard library](https://docs.python.org/3/library/) only. +- Check **[RunPy Limitations](/docs/contributing-guide/troubleshooting/runpy-limitations)** +::: + +- Let's edit the properties of widgets: + - Add an event handler to the button - Select **On Click** event, **Show alert** action, and set a success message `Triggered using RunPy`. This will show a success alert popup whenever the button click event is triggered from the Python code. + - For the text component, we don't have to edit any property since we are changing the value directly from the Python code. + +
+ +Run Python code + +
+ +You can also write custom Python code to get the data from **External APIs** and manipulate the response for graphical representation. + +:::info +Issues with writing custom Python code? Ask in our [Slack community](https://www.tooljet.com/slack). +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/s3.md b/docs/versioned_docs/version-2.23.0/data-sources/s3.md new file mode 100644 index 0000000000..60488139a9 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/s3.md @@ -0,0 +1,159 @@ +--- +id: s3 +title: Amazon S3 +--- + +# Amazon S3 + +ToolJet can connect to Amazon S3 buckets and perform various operation on them. + +## Connection + +To add a new S3 source, go to the **Data sources manager** on the left sidebar of the app editor and click on `Add data source` button. Select **AWS S3** from the modal that pops up. + +ToolJet supports connecting to AWS S3 using **IAM credentials**, **AWS Instance Profile** or **AWS ARN Role**. + +If you are using **IAM credentials**, you will need to provide the following details: + +- **Region** +- **Access key** +- **Secret key** + +It is recommended to create a new IAM user for the database so that you can control the access levels of ToolJet. + +
+ +aws s3 modal + +
+ +To connect to AWS S3 using **AWS Instance Profile**, select the **Use AWS Instance Profile**. This will use the IAM role attached to the EC2 instance where ToolJet is running. +To access the metadata service of an ECS container and the EC2 instance, we use the WebIdentityToken parameter which is obtained from a successful login with an identity provider. + +
+ +aws s3 modal + +
+ +If you are using **AWS ARN Role**, you will need to provide the following details: + +- **Region** +- **Role ARN** + +
+ +aws s3 modal + +
+ +Click on **Test connection** button to verify if the credentials are correct and that the database is accessible to ToolJet server. Click on **Save** button to save the data source. + +:::tip +You can now connect to **[different S3 Hosts using custom endpoints](/docs/how-to/s3-custom-endpoints)**. +::: + +## Querying AWS S3 + +Click on `+` button of the **query manager** at the bottom panel of the editor and select the data source added in the previous step as the data source. Select the operation that you want to perform and click **Save** to save the query. + +
+ +aws s3 query + +
+ +Click on the **run** button to run the query. + +**NOTE**: Query should be saved before running. + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: **[link](/docs/tutorial/transformations)** +::: + +## Query operations + +You can create query for AWS S3 data source to perform several actions such as: + 1. **[Read object](/docs/data-sources/s3#read-object)** + 2. **[Upload object](/docs/data-sources/s3#upload-object)** + 3. **[List buckets](/docs/data-sources/s3#list-buckets)** + 4. **[List objects in a bucket](/docs/data-sources/s3#list-objects-in-a-bucket)** + 5. **[Signed url for download](/docs/data-sources/s3#signed-url-for-download)** + 6. **[Signed url for upload](/docs/data-sources/s3#signed-url-for-upload)** + +### Read object + +You can read an object in a bucket by using this operation. It requires two parameters - **Bucket** name and **Key**. + + +aws s3 read object + +### Upload object + +You can use this operation to upload objects(files) to your S3 bucket. It requires four parameters: + 1. **Bucket**: Specify the bucket name + 2. **Key**: Key of the object/file + 3. **Content type**: Specify file type such as text, image etc. + 4. **Upload data**: File/object that is to be uploaded. + + +aws s3 upload + + +### List buckets + +This operation will list all the buckets in your S3. This does not require any parameter. + + +aws s3 bucket + + +### List objects in a bucket + +This operation will fetch the list of all the files in your bucket. It requires two parameters: + 1. **Bucket**: Bucket name (mandatory) + 2. **Prefix**: To limit the response to keys that begin with the specified prefix (optional) + 3. **Max keys**: The maximum number of keys returned in the response body (optional). Default value is 1000. + 4. **Offset**: The key to start with when listing objects in a bucket (optional). + 5. **"Next Continuation Token"**: `Next Continuation Token` indicates Amazon S3 that the list is being continued on this bucket with a token. ContinuationToken is obfuscated and is not a real key (optional). + + +:::info +**Next Continuation Token** +For listing a bucket for objects that begin with a specific character or a prefix, then use the `Offset` parameter. For example, if you want to list all the objects that begin with `a`, then set the `Offset` parameter to `a`. Similarly, if you want to list all the objects that begin with `ab`, then set the `Offset` parameter to `ab`. + +The `Next Continuation Token` is used to list the next set of objects in a bucket. It is returned by the API when the response is truncated. The results will contain `Next Continuation Token` if there are more keys in the bucket that satisfy the list query. To get the next set of objects, set the `Next Continuation Token` parameter and run the query again. +The results will continue from where the last listing finished. +::: + + +aws s3 list object + + +### Signed url for download + +The object owner can optionally share objects with others by creating a presigned URL, using their own security credentials, to grant time-limited permission to download the objects. For creating a presigned URL, the required parameters are: + 1. **Bucket**: name of the bucket for uploading the file + 2. **Key**: an object key + 3. **Expires in**: an expiration time of URL + + +aws s3 signed download + + +### Signed url for upload + +The presigned URLs are useful if you want your user/customer to be able to upload a specific object to your bucket, but you don't require them to have AWS security credentials or permissions. For creating a presigned URL, the required parameters are: + 1. **Bucket**: name of the bucket for uploading the file + 2. **Key**: an object key + 3. **Expires in**: an expiration time of URL + 4. **Content type**: the content type such as text, image etc. + + +aws s3 signed upload + + + +:::info +We built an app to view and upload files to AWS S3 buckets. Check out the complete tutorial **[here](https://blog.tooljet.com/build-an-aws-s3-broswer-with-tooljet/)**. +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/saphana.md b/docs/versioned_docs/version-2.23.0/data-sources/saphana.md new file mode 100644 index 0000000000..1a18eea40b --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/saphana.md @@ -0,0 +1,48 @@ +--- +id: saphana +title: SAP HANA +--- + +# SAP HANA + +ToolJet can connect to SAP HANA databases to read and write data. + +- [Connection](#connection) +- [Querying SAP HANA](#querying-sap-hana) + +## Connection + +To add a new SAP HANA database, click on the `+` button on data sources panel at the left-bottom corner of the app editor. Select SAP HANA from the modal that pops up. + +ToolJet requires the following to connect to your SAP HANA database: + +- **Host** +- **Port** +- **Username** +- **Password** + +:::info +Please make sure the host/ip of the database is accessible from your VPC if you have self-hosted ToolJet. If you are using ToolJet cloud, please whitelist our IP. +::: + +
+ +![ToolJet - Data source - SAP HANA](/img/datasource-reference/saphana/connect.png) + +
+ +Click on **Test connection** button to verify if the credentials are correct and that the database is accessible to ToolJet server. Click on **Save** button to save the data source. + +## Querying SAP HANA + +Click on `+` button of the query manager at the bottom panel of the editor and select the database added in the previous step as the data source. Enter the query in the editor. Click on the `run` button to run the query. + +**NOTE**: Query should be saved before running. + + +saphana query + + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: **[link](/docs/tutorial/transformations)** +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/sendgrid.md b/docs/versioned_docs/version-2.23.0/data-sources/sendgrid.md new file mode 100644 index 0000000000..fa45ffd56d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/sendgrid.md @@ -0,0 +1,62 @@ +--- +id: sendgrid +title: SendGrid +--- + +# SendGrid + +ToolJet can connect to your SendGrid account to send emails. + +ToolJet - Data source - SendGrid + +:::info +The SendGrid API Datasource supports for interaction with the mail endpoint of the [SendGrid v3 API](https://docs.sendgrid.com/api-reference/how-to-use-the-sendgrid-v3-api/authentication). +::: + +## Connection +To add a new SendGrid API datasource, click the **Datasource manager** icon on the left-sidebar of the app builder and click on the `Add datasource` button, then select SendGrid API from the modal that pops up. + +Enter your **SendGrid API key** in the "API key" field. + +:::tip +SendGrid API key is required to create an SendGrid datasource on ToolJet. You can generate API key by visiting [SendGrid account page](https://app.sendgrid.com/settings/api_keys). +::: + +Click on the 'Save' button to save the data source. + +## Supported operations +1. Email service + + +### Email service +Required parameters: +- Send email to +- Send email from +- Subject +- Body as text + + +Optional parameters: +- Body as HTML + +ToolJet - Query SendGrid + +:::info +**Send mail to** - accepts an array/list of emails separated by comma. +For example: +`{{["dev@tooljet.io", "admin@tooljet.io"]}}`. + +**Send mail from** - accepts a string. +For example: `admin@tooljet.io` +::: + +:::tip +**Send a single email to multiple recipients** - The `Send mail to` field can contain an array of recipients, which will send a single email with all of the recipients in the field. + +**Send multiple individual emails to multiple recipients** - set Multiple recipients field to `{{true}}` and the `Send mail to` field will be split into multiple emails and send to each recipient. +::: + + +:::note +NOTE: Query should be saved before running. +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/slack.md b/docs/versioned_docs/version-2.23.0/data-sources/slack.md new file mode 100644 index 0000000000..04005fde9a --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/slack.md @@ -0,0 +1,81 @@ +--- +id: slack +title: Slack +--- + +# Slack + +ToolJet can connect to your Slack workspace to send messages. + +
+ +Slack datasource: ToolJet + +
+ +## Connection +- To add the Slack datasource, click the **Datasource manager** icon on the left-sidebar of the app builder and click on the `Add datasource` button, then select Slack from the modal that pops up. + +- In the next dialog, you'll be asked to choose the **permission scope**. Choose the permission scope and then click on **Connect to Slack** button. + +- A new tab will open up asking for authorization confirmation. Once done, you can close the tab. + +
+ +Slack datasource: ToolJet + +
+ +- Click on the '**Save data source** button to save the data source. + + +:::note +The App (which credentials are provided) needs to be installed in the workspace to use the Slack data source, and it needs to be added to the channel where you want to post the message. +::: + +## Supported operations + +1. **List members** +2. **Send message** +3. **List messages from a channel** + +### List members + +This operation will return the data of all the members in your slack workspace. + +
+ +Slack datasource: ToolJet + +
+ +### Send message + +This operation will send/post the message to a specified channel or posting to direct messages (also known as DMs or IMs) in your slack workspace. + +| Property | Description | +| :--- | :--- | +| Channel | The channel ID or user ID to post the message to. | +| Message | The message to post. | + +
+ +Slack datasource: ToolJet + +
+ +### List messages + +This operation will get the messages from a specified channel. + +| Property | Description | +| :--- |:----------------------------------------| +| Channel | The channel ID to get the messages from | +| Limit | The maximum number of messages to return. | +| Next Cursor | A cursor value returned by a previous call to list messages. | + +
+ +Slack datasource: ToolJet + +
diff --git a/docs/versioned_docs/version-2.23.0/data-sources/smtp.md b/docs/versioned_docs/version-2.23.0/data-sources/smtp.md new file mode 100644 index 0000000000..9f09a14ac4 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/smtp.md @@ -0,0 +1,57 @@ +--- +id: smtp +title: SMTP +--- + +# SMTP + +The SMTP datasource facilitates the connection between ToolJet applications and email servers, enabling the apps to send emails. + +## Connection + +To connect to an SMTP server, the following credentials are typically required: + +- **Host** +- **Port** +- **Username** +- **Password** + +:::tip Finding configuration details: +The SMTP configuration details like host and port can usually be obtained from your email service provider. Here are some general settings for the most commonly used email providers: +- **Gmail**: `Host`: smtp.gmail.com; `Port`: 587 or 465 (SSL); `Username`: your full Gmail email address; `Password`: your Gmail password. +- **Yahoo Mail**: `Host`: smtp.mail.yahoo.com; `Port`: 465 (SSL); `Username`: your Yahoo Mail email address; `Password`: your Yahoo Mail password. +- **Outlook.com/Hotmail**: `Host`: smtp.office365.com; `Port`: 587 or 465 (SSL); `Username`: your Outlook.com/Hotmail email address; `Password`: your Outlook.com/Hotmail password. + +Before saving the configuration, it's possible to test the connection by clicking the "Test Connection" button. +::: + +
+ +smtp connect + +
+ +## Querying SMTP + +To create a query for sending an email, follow these steps: + +1. Open the query panel located at the bottom panel of the editor. +2. Click the `+Add` button on the left to create a new query. +3. Select `SMTP` from the global datasource. +4. Provide the following properties: + - **From** `required` : Email address of the sender + - **From Name** : Name of the sender + - **To** `required` : Recipient's email address + - **CC mail to** : Email address of the recipients that will receive a copy of the email, and their email addresses will be visible to other recipients. + - **BCC mail to** : Email address of the recipients that will receive a copy of the email but the email addressed will be hidden to other recipients. + - **Subject** : Subject of the email. + - **Body** : You can enter the body text of the email in either raw text or html format, in their respective fields. + - **Attachments** : You can add attachments to an SMTP query by referencing the file from the File Picker component in the attachments field. + +For instance, you can set the `Attachments` field value to `{{ components.filepicker1.file }}` or pass an array of `{{ name: 'filename.jpg', dataURL: '......' }}` objects to include attachments. + +
+ +smtp connect + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/snowflake.md b/docs/versioned_docs/version-2.23.0/data-sources/snowflake.md new file mode 100644 index 0000000000..6b3b30d283 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/snowflake.md @@ -0,0 +1,52 @@ +--- +id: snowflake +title: Snowflake +--- + +# Snowflake + +ToolJet can connect to Snowflake databases to read and write data. + +- [Connection](#connection) +- [Getting Started](#querying-snowflake) + +## Connection + +Please make sure the host/ip of the database is accessible from your VPC if you have self-hosted ToolJet. If you are using ToolJet cloud, please whitelist our IP. You can find snowflake docs on network policies **[here](https://docs.snowflake.com/en/user-guide/network-policies.html)**. + + +To add a new Snowflake database, click on the `+` button on data sources panel at the left-bottom corner of the app editor. Select Snowflake from the modal that pops up. + +ToolJet requires the following to connect to your Snowflake database. + +- **Account** +- **Username** +- **Password** + +:::info +You can also configure for **[additional optional parameters](https://docs.snowflake.com/en/user-guide/nodejs-driver-use.html#additional-connection-options)**. +::: + +
+ +![ToolJet - Snowflake connection](/img/datasource-reference/snowflake/snowflake-connect.png) + +
+ +## Querying Snowflake + +Click on `+` button of the query manager at the bottom panel of the editor and select the database added in the previous step as the datasource. Query manager then can be used to write raw SQL queries. + +
+ +![ToolJet - Snowflake query](/img/datasource-reference/snowflake/snowflake-query.png) + +
+ +Click on the `run` button to run the query. + +**NOTE:** Query should be saved before running. + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: [link](/docs/tutorial/transformations) +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/stripe.md b/docs/versioned_docs/version-2.23.0/data-sources/stripe.md new file mode 100644 index 0000000000..e6fa073e9c --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/stripe.md @@ -0,0 +1,192 @@ +--- +id: stripe +title: Stripe +--- + +# Stripe + +ToolJet can connect to your Stripe account to read or write customers' and payments' data. + +:::info +Check out the **[Stripe Refund App tutorial](https://blog.tooljet.com/build-a-stripe-refund-tool-using-low-code/)** +::: + +## Connection + +To add a new Stripe data source, click on the `+` button on data sources panel at the left-bottom corner of the app editor. Select Stripe from the modal that pops up. + +ToolJet requires the **Stripe API key** to connect to your database. + +
+ +![ToolJet - Data source - Stripe](/img/datasource-reference/stripe/connect.png) + +
+ +You can get the Stripe API key from the dashboard of your Stripe account. Go to the Stripe account dashboard, click on the **Developers** on the top right, then on the left-sidebar go to the **API Keys**, you can simple reveal the **Secret Key** and copy-paste on ToolJet. + +
+ +![ToolJet - Data source - Stripe](/img/datasource-reference/stripe/apikey.png) + +
+ +## Querying Stripe + +Click on **+** button of the query manager at the bottom panel of the editor and select the Stripe datasource added in the previous step. Enter the query in the editor. Click on the `Save and Run` button to save and then run the query. + +**NOTE**: Query should be saved before running. + +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: **[link](/docs/tutorial/transformations)** +::: + +## Supported operations + + +You can check out the some of the operations mentioned below. All the operations for Stripe are available and can be performed from ToolJet. Check out the **[Stripe API documentation](https://stripe.com/docs/api/)** for the detailed information about each operation. + +- **delete,/v1/account** +- **get,/v1/account** +- **post,/v1/account** +- **post,/v1/account/bank_accounts** +- **delete,/v1/account/bank_accounts/{id}** +- **get,/v1/account/bank_accounts/{id}** +- **post,/v1/account/bank_accounts/{id}** +- **get,/v1/account/capabilities** +- **get,/v1/account/capabilities/{capability}** +- **post,/v1/account/capabilities/{capability}** +- **get,/v1/account/external_accounts** +- **post,/v1/account/external_accounts** +- **delete,/v1/account/external_accounts/{id}** +- **get,/v1/account/external_accounts/{id}** +- **post,/v1/account/external_accounts/{id}** +- **post,/v1/account/login_links** +- **get,/v1/account/people** +- **post,/v1/account/people** +- **delete,/v1/account/people/{person}** +- **get,/v1/account/people/{person}** +- **post,/v1/account/persons** +- **delete,/v1/account/persons/{person}** +- **get,/v1/account/persons/{person}** +- **post,/v1/account/persons/{person}** +- **post,/v1/account_links** +- **get,/v1/accounts** +- **post,/v1/accounts** +- **delete,/v1/accounts/{account}** +- **get,/v1/accounts/{account}** +- **post,/v1/accounts/{account}** +- **post,/v1/accounts/{account}/bank_accounts** +- **delete,/v1/accounts/{account}/bank_accounts/{id}** +- **get,/v1/accounts/{account}/bank_accounts/{id}** +- **get,/v1/accounts/{account}/bank_accounts/{id}** +- **get,/v1/accounts/{account}/capabilities** +- **get,/v1/accounts/{account}/capabilities/{capability}** +- **post,/v1/accounts/{account}/capabilities/{capability}** +- **get,/v1/accounts/{account}/external_accounts** +- **post,/v1/accounts/{account}/external_accounts** +- **delete,/v1/accounts/{account}/external_accounts/{id}** +- **get,/v1/accounts/{account}/external_accounts/{id}** +- **get,/v1/accounts/{account}/external_accounts/{id}** +- **post,/v1/accounts/{account}/login_links** +- **get,/v1/accounts/{account}/people** +- **post,/v1/accounts/{account}/people** +- **delete,/v1/accounts/{account}/people/{person}** +- **get,/v1/accounts/{account}/people/{person}** +- **post,/v1/accounts/{account}/people/{person}** +- **get,/v1/accounts/{account}/persons** +- **post,/v1/accounts/{account}/persons** +- **delete,/v1/accounts/{account}/persons/{person}** +- **get,/v1/accounts/{account}/persons/{person}** +- **post,/v1/accounts/{account}/persons/{person}** +- **post,/v1/accounts/{account}/reject** +- **get,/v1/apple_pay/domains** +- **post,/v1/apple_pay/domains** +- **delete,/v1/apple_pay/domains/{domain}** +- **get,/v1/apple_pay/domains/{domain}** +- **get,/v1/application_fees** +- **get,/v1/application_fees/{fee}/refunds/{id}** +- **post,/v1/application_fees/{fee}/refunds/{id}** +- **get,/v1/application_fees/{id}** +- **post,/v1/application_fees/{id}/refund** +- **get,/v1/application_fees/{id}/refunds** +- **post,/v1/application_fees/{id}/refunds** +- **get,/v1/apps/secrets** + + + + + + + + + diff --git a/docs/versioned_docs/version-2.23.0/data-sources/twilio.md b/docs/versioned_docs/version-2.23.0/data-sources/twilio.md new file mode 100644 index 0000000000..daac9e7e32 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/twilio.md @@ -0,0 +1,54 @@ +--- +id: twilio +title: Twilio +--- + +# Twilio + +ToolJet can connect to your Twilio account to send sms. + +
+ +![ToolJet - Data source - Twilio](/img/datasource-reference/twilio/connect.png) + +
+ +## Connection +- To add the Twilio datasource, click the **Datasource manager** icon on the left-sidebar of the app builder and click on the `Add datasource` button, then select **Twilio** from the modal that pops up. + +- In the next dialog, you'll be asked to enter the Auth Token, Account SID, and Messaging Service SID. + +- You can get the **Auth Token and Account SID** on the dashboard of your Twilio account. + +
+ +![ToolJet - Data source - Twilio](/img/datasource-reference/twilio/auth.png) + +
+ +- For **Messaging Service SID**, you'll need to create a messaging service first from the Services under Messaging in the left-sidebar. + +
+ +![ToolJet - Data source - Twilio](/img/datasource-reference/twilio/sid.png) + +
+ +- After entering the three credentials, you can **Save** the datasource. + +## Supported operations + +1. **Send message** + +### Send message + +This operation will send the specified message to specified mobile number. + +
+ +![ToolJet - Data source - Twilio](/img/datasource-reference/twilio/sms.png) + +
+ + + diff --git a/docs/versioned_docs/version-2.23.0/data-sources/typesense.md b/docs/versioned_docs/version-2.23.0/data-sources/typesense.md new file mode 100644 index 0000000000..48d885bd7f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/typesense.md @@ -0,0 +1,92 @@ +--- +id: typesense +title: TypeSense +--- + +# TypeSense +ToolJet can connect to your TypeSense deployment to read and write data. + +## Connection +Please make sure the host/IP of the TypeSense deployment is accessible from your VPC if you have self-hosted ToolJet. If you are using ToolJet cloud, please **whitelist our IP**. + +ToolJet requires the following to connect to your TypeSense deployment: +- **Host** +- **Port** +- **API Key** +- **Protocol** + +
+ +typesense connect + +
+ +## Querying TypeSense + +Click on `+` button of the query manager at the bottom panel of the editor and select the TypeSense added in the previous step as the data source. +Select the operation that you want to perform on your TypeSense cluster and click `Create` to save the query. + +
+ +typesense query + +
+ +:::tip +Query results can be transformed using transformations. Read our transformations documentation to see how: **[link](/docs/tutorial/transformations)** +::: + +## Supported operations + +#### 1. Create a Collection + +With this operation you can easily create `Collections` in your TypeSense cluster. In the schema field, you'll need to define the schema for creating a new collection. Check out TypeSense docs to know more about collections **[here](https://typesense.org/docs/0.22.2/api/collections.html#create-a-collection)** + + +typesense collection + + +#### 2. Index a document + +Use this operation to index a document to your collection. You'll need to specify the **Collection Name** where you want your document to be indexed and also provide the document data according the schema defined in the collection. Read more about Indexing a document in TypeSense **[here]( +https://typesense.org/docs/0.22.2/api/documents.html#index-a-single-document)**. + + +typesense index + + +#### 3. Search + +Use this operation to perform a search within the specified collection. Know more about the search parameters in the TypeSense doc **[here](https://typesense.org/docs/0.22.2/api/documents.html#search)**. + + +typesense search + + +#### 4. Get a document + +Use this operation to fetch an individual document in a collection by providing the `id` of the document. Read more about it **[here](https://typesense.org/docs/0.22.2/api/documents.html#retrieve-a-document)**. + + +typesense get + + +#### 5. Update a document + +Use this operation to update an individual document by providing the **Collection Name** and **Id** of the document. You'll need to provide the updated document data in the form of specified schema. Check out the TypeSense's doc on updating a document **[here](https://typesense.org/docs/0.22.2/api/documents.html#update-a-document)**. + + +typesense update + + +#### 6. Delete a document + +Delete a document from collection by providing the `Id` of the document. Check out the TypeSense's doc on deleting documents **[here](https://typesense.org/docs/0.22.2/api/documents.html#delete-documents)**. + + +typesense delete + + +:::tip +Make sure that you supply JSON strings instead of JavaScript objects for any document or schema that is being passed to the server, in any of the above operations. +::: diff --git a/docs/versioned_docs/version-2.23.0/data-sources/woocommerce.md b/docs/versioned_docs/version-2.23.0/data-sources/woocommerce.md new file mode 100644 index 0000000000..45567819c6 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/woocommerce.md @@ -0,0 +1,64 @@ +--- +id: woocommerce +title: WooCommerce +--- +# WooCommerce + +ToolJet can connect to WooCommerce databases to read and write data. + +- [Connection](#connection) +- [Getting Started](#querying-woocommerce) + +## Connection + +Auth +You may use [HTTP Basic Auth] by providing the REST API Consumer Key as the username and the REST API Consumer Secret as the password. +- **Host** +- **Consumer key** +- **Consumer secret** + +![ToolJet - Data Source - Woocommerce](/img/datasource-reference/woocommerce/woocomerce-auth.png) + +:::info +NOTE: For generating keys visit admin dashboard of woocommerce , more info: https://woocommerce.github.io/woocommerce-rest-api-docs/?javascript#authentication +::: + +## Querying Woocommerce + +**Operations** + +**Customer** + +- list customer +- update customer +- delete customer +- batch update customer +- create customer +- retrieve customer + +**PRODUCT** + +- list product +- update product +- delete product +- batch update product +- create product +- retrieve product + +**ORDER** + +- list order +- update order +- delete order +- batch update order +- create order +- retrieve order + +**Coupon** + +- list coupon +- create coupon + +:::info +NOTE: For more info visit https://woocommerce.github.io/woocommerce-rest-api-docs/?javascript. +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/data-sources/zendesk.md b/docs/versioned_docs/version-2.23.0/data-sources/zendesk.md new file mode 100644 index 0000000000..7c9e2eaac0 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/data-sources/zendesk.md @@ -0,0 +1,96 @@ +--- +id: zendesk +title: Zendesk +--- + +# Zendesk + +ToolJet can connect to Zendesk APIs to read and write data using OAuth 2.0, which helps us to limit an application's access to a user's account. + + - [Connection](#connection) + - [Querying Zendesk](#querying-zendesk) + +## Connection + +ToolJet connects to your Zendesk app using : +- **Zendesk Sub-domain** +- **Client ID** +- **Client Secret** + +## Authorization Scopes + +You can create a Zendesk data source with one of either of the two permission scopes : + 1. **Read Only** + 2. **Read and Write** + + + + +:::info +You must first be a verified user to make Zendesk API requests. This is configured in the Admin Center interface in **Apps and integrations > APIs > Zendesk APIs.** For more information, see Security and Authentication in the [Zendesk Support API reference](https://developer.zendesk.com/api-reference/ticketing/introduction/#security-and-authentication) or [check out Zendesk's docs](https://support.zendesk.com/hc/en-us/articles/4408845965210). +::: + +To connect Zendesk datasource to your ToolJet application, go to the data source manager on the left-sidebar and click on the `+` button. Select Zendesk from the list of available datasources, provide the credentials and click **Connect to Zendesk** and authenticate via OAuth. And click **Save** to save the datasource. + +
+ +![ToolJet - Data source - Zendesk](/img/datasource-reference/zendesk/zendesk.gif) + +
+ +## Operations +1. **[List Tickets](/docs/data-sources/zendesk#list-tickets)** +2. **[List requested Tickets](/docs/data-sources/zendesk#list-requested-tickets)** +3. **[Show a Ticket](/docs/data-sources/zendesk#show-tickets)** +4. **[Update a Ticket](/docs/data-sources/zendesk#update-tickets)** +5. **[List Users](/docs/data-sources/zendesk#list-users)** +6. **[Get Profile](/docs/data-sources/zendesk#get-profile)** +7. **[Search query](/docs/data-sources/zendesk#search-query)** + + +### List Tickets +Lists all the tickets in your Zendesk account. + +### List requested Tickets +Lists all the tickets requested by the user. + +| Fields | description | +| ----------- | ----------- | +| User ID | The id of the user | + +### Show Tickets +Gets a ticket's properties with the given ID, though not the ticket comments. + +| Fields | description | +| ----------- | ----------- | +| Ticket ID | The id of the ticket | + +### Update Tickets +Updates a ticket's properties with the given ID. + +| Fields | description | +| ----------- | ----------- | +| Ticket ID | The id of the ticket | +| Body | The properties and values to update. Example: `{{({ "ticket": {"status": "solved"} })}}` | + +### List Users +Lists all the users in your Zendesk account. + +### Get Profile +Gets a user's profile with the given ID. + +| Fields | description | +| ----------- | ----------- | +| User ID | The id of the user | + +### Search Query +The Search Query uses Zendesk's Search API to return tickets, users, and organizations with defined filters. +Common filters include: +- `type:ticket` +- `type:user` +- `type:organization` +- `type:ticket organization:12345 status:open` + +| Fields | description | +| ----------- | ----------- | +| Query | The search query | diff --git a/docs/versioned_docs/version-2.23.0/getting-started.md b/docs/versioned_docs/version-2.23.0/getting-started.md new file mode 100644 index 0000000000..a1caaa8949 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/getting-started.md @@ -0,0 +1,480 @@ +--- +id: getting-started +title: Getting Started +description: ToolJet is an open-source low-code framework to build and deploy custom internal tools. ToolJet can connect to your data sources such as databases ( PostgreSQL, MongoDB, MS SQL Server, Snowflake, , BigQuery, etc ), API/GraphQL endpoints, SaaS tools ( Airtable, Stripe, Google Sheets, etc ) and cloud object storage services ( AWS S3, Google Cloud Storage and Minio ). Once the data sources are connected, ToolJet can run queries on these data sources to fetch and update data. The data fetched from data sources can be visualised and modified using the UI widgets such as tables, charts, forms, etc. +slug: / +--- + +# Welcome to ToolJet Docs + +--- + +## What is ToolJet + +ToolJet is an **open-source low-code framework** to build and deploy custom internal tools. + +ToolJet ships with its built-in database called **[ToolJet DB](/docs/tooljet-database)** (built on top of PostgreSQL). You can also connect to the **external data sources** such as **databases** ( PostgreSQL, MongoDB, MS SQL Server, Snowflake, , BigQuery, etc ), **API/GraphQL endpoints**, **SaaS tools** ( Airtable, Stripe, Google Sheets, etc ) and **cloud object storage services** ( AWS S3, Google Cloud Storage and Minio ). + +Once the data sources are connected, ToolJet can run **queries** on these data sources to fetch and update data. The data fetched from data sources can be **visualised and modified** using the UI widgets such as tables, charts, forms, etc. You can also use **[Javascript](/docs/data-sources/run-js)** or **[Python](/docs/data-sources/run-py)** queries for writing business logic or interacting with the user interface of the application. + +Getting started Demo app + + + +## How ToolJet works + +
+ +How ToolJet works flow + +
+ +**With ToolJet, you can build apps in 3 simple steps:** + +1. **Connect to datasources:** Connect to the ToolJet's built-in database **[ToolJet DB](/docs/tooljet-database)** (built on top of PostgreSQL) or your existing data sources such as PostgreSQL, MySQL, Firestore, Stripe, Google Sheets, API endpoints, etc. + +2. **Build queries:** ToolJet comes with query builders for all supported data sources. You can also write **[Javascript](/docs/data-sources/run-js)** or **[Python](/docs/data-sources/run-py)** queries or use **[Transformations](/docs/tutorial/transformations)** to transform the query response. + +3. **Build User Interface:** ToolJet's visual **[App Builder](/docs/app-builder/overview)** allows you to drag and drop components ( Eg: tables, charts, forms, etc ) to quickly build the user-interface of the apps. Components have events such as `on click`, `on row selected`, `on page changed`, etc. ToolJet apps can be used in light and dark mode. + + :::tip + ToolJet binds together the datasources, queries and components to convert business logic into custom applications. You can also secure your ToolJet apps with **[Group & Permissions](/docs/org-management/permissions)** and **[Audit Logging](/docs/Enterprise/audit_logs)**. + ::: +## Choose your ToolJet + +There are a few different ways to set up ToolJet depending on how you intend to use it: + +- **[ToolJet Cloud](https://www.tooljet.com)**: hosted solution, just sign-up for free and start building apps in seconds. +- **[Deploy on premise](/docs/setup/)**: recommended method for production or customized use cases. You'll find Server setup guides for popular platforms (AWS, GCP, Kubernetes etc) and one-click deployment guides (Heroku, DigitalOcean etc). +- **[Try ToolJet on local machine](/docs/setup/try-tooljet/)**: the fastest way to try out ToolJet on your computer using docker. + +:::info +- Data security is top priority at ToolJet, read about our **[data security here](/docs/security)**. +::: + +## Quickstart Guide + +In this quickstart guide, we'll cover the fundamentals of ToolJet by building a **Time Tracking Application** that will allow end-users to record their daily working hours with supporting details. + +
+ Application Preview +
+ +If you don't already have a ToolJet account, head over to **[tooljet.com](https://tooljet.com)** to sign up for free. Existing users can simply log in. + +### Create Database Table + +We'll first create a table in ToolJet's built-in **[database](/docs/tooljet-database)**. + +Navigate to the **Database** tab from the left sidebar. Click on the **Create new table** button on the top-left. A dialog box will slide from the right to configure the database table properties. + +
+
+

+ In the Table name field, enter timeTracker. +
+
+ The id field will be present by default to create a unique identifier for each record in our database table. +
+
+ Click on the Add more columns button and enter employee in the Name field and select varchar as the Type. +
+
+ Similarly, add four more columns:

+ - Name: taskname | Type: varchar

+ - Name: duration | Type: integer

+ - Name: dateoftask | Type: varchar

+ - Name: description | Type: varchar +
+
+ Click on the Create button on the bottom right to create the table. +

+
+
+ ToolJet Database Table +
+
+
+ +For every column, you can choose from four data types - **varchar** for text, **integer** for numbers, **float** for decimal or fractional numbers and **boolean** for true or false values. The **Default** field allows you to enter a default value that will be used if no value is received from the frontend. + +Add three rows of dummy data by clicking on the **Add New Row** button and entering the required values. We are entering email IDs for the employee column. Later, we'll use this **employee column** to display data specific to the logged-in user. + +
+ Add Dummy Data +
+ +### Create UI For Home Page Using ToolJet App-Builder + +We'll now go ahead and build the Home page of our application using the **ToolJet** **[App-Builder](/docs/app-builder/overview)**. + +Click on the **Dashboard** button on the sidebar and click on the **Create new app** button. A new application will be created with an empty canvas. + +We can see the **Component Library** on the right, we can drag and drop pre-built components from the **Component Library** on the canvas to create the UI. The **Query Panel** at the bottom can be used to create and manage queries to interact with the database. + +
+ App-Builder Overview +
+ +Rename the application to *Time Tracker*. Minimize the Query Panel by clicking on the **Hide Query Panel** button on its top-left. + +Click and drag a **[Container](/docs/widgets/container)** component to the canvas. Adjust the borders of the **Container** and expand it till it covers the visible portion of the canvas. + +
+ Drag and Drop Container +
+ +Each time you click and select the **Container** or any other component on the canvas, configuration related to the component will appear on the right. + +
+
+

+ Each component will show a different configuration based on its overall functionality. +
+
+ Right at the top is an input field that lets us name the component. We'll click on it and rename the container to home. +
+
+ Below we have the Properties and Styles tab. +
+
+ Properties tab lets us configure the functional behaviour of a component. +
+
+ Style tab allows us to add custom styling to the components. +

+
+
+ Container Configuration +
+
+
+ +We'll give each component in this application a name that reflects its function. This naming strategy will become increasingly beneficial as the application expands and we need to identify specific components. + +Let's build the header of our application. Click and drag an **[Image](/docs/widgets/image)** component to the canvas from the library and rename it to *Logo*. Select the Image component, you'll see its configuration on the right. +Enter the below value as **URL**: + +```js +https://static-00.iconduck.com/assets.00/tooljet-icon-1024x908-0mi0u3op.png +``` + +
+ Image Component Configuration +
+ +Feel free to add any other URL that you might wish to use as the logo. +

+ +Place a **[Text](docs/widgets/text)** component next to it and rename the component to *headerText*. Paste following value under **Text** property: + +```js +Time Tracker Application⏳ +``` +
+ Text Component Configuration +
+ +Under **Styles**, change the **Text Size** to 25. We are now ready with the Header of the application. + +Next we'll use a **[Table](/docs/widgets/table)** component to display all the time tracker logs. The **Table** component offers a simple and intuitive way to display and interact with data. + +Drag and drop a table component on the canvas. Adjust the width and make it slightly wider than the header. The default name of the table will be *table1*, rename it to *trackerTable*. We already have some dummy data in the **Table** component. We'll replace it with actual data later on. + +
+ Drag and Drop Table Component +
+ +### Create Your First Query In ToolJet + +It's time to add some real data to our application. + +Click on the **Show Query Panel** button on the top-left of the **Query Panel** to expand it. Click on the **+Add** and select **ToolJet Database** - a new query will be created. Rename the query to *getTrackerSummary*. Select *timeTracker* (the database table that we had created at the start) as the Table name and **List Rows** as Operations. + +
+ Create a Get Query +
+ +Enable **Run this query on load?** toggle, this will ensure that the query runs every time the application loads. We'll generally use this setting for queries that are used to fetch data. Click on the **Run** button to run the query. + +To see the preview of the returned data, press on the **Preview** button in the **Query Panel**. + +
+ Query Preview +
+ +### Adding Queried Data To The Table + +We need to use double curly braces `{{}}` to write custom JavaScript code or access values such as query results, component variables and other variables available in the ToolJet App-Builder. + +The general format to access queries is: + +```js +{{queries.queryName.data}} +``` + +A quick way to look at available queries (and other accessible values) would be to click on the **Inspector** button in the left side-bar and expand the **queries** dropdown. + +
+ Inspector +
+ + +We can use the queried data in our components. Let's insert the data returned by the *getTrackerSummary* query in our table. Hide the query panel and click on the **Table** component. Under the **Data** property, paste the below code: + +```js +{{queries.getTrackerSummary.data}} +``` + +We've now replaced the static data with dynamic data that we are fetching from the database. The table now displays data fetched using the *getTrackerSummary* query. + +
+ Table With Queried Data +
+ +Let's make some more changes in the **Table** configuration. Disable all the properties under **Search sort and filter** and **Additional Actions**. We don't need them for our use-case. + +### Creating Form To Submit Data + +The **Modal** component can be used to create a pop-up form to submit data. + +Drag a **[Modal](/docs/widgets/modal)** component from the components library and place it at the bottom-right of the table - you will notice that only a button with the label **Launch Modal** shows up on the canvas. We'll first change the name of the button to *logTimeButton* and **Trigger Button label** property to **Log Time**. + +
+ Modal Button Configuration +
+ + +To edit the modal, click on the **Log Time** button(named *Launch Modal* earlier) - a modal will open up on your canvas. The modal will stay open till you click on the `X` button/close button on the top-right. You can edit the modal and place other components over it while it is open. We'll place components on our modal to create a form layout to submit the time tracker details. + +Let's change the **Title** property of the modal to *Log Details*. Click on the back button/`←` on the top-left of Modal component's configuration and go back to the components library. + +
+ Modal Label Change +
+ +Drag four **[Text](/docs/widgets/text)** components on the modal and align them vertically. We'll rename the components and their labels according to the table below: + +| Component | Component Name | Text property | +|:----------------|:-------------------|:-----------------| +| Text |taskName | Task Name | +| Text |duration | Duration (In Hours) | +| Text |dateOfTask | Date Of Task | +| Text |taskDescription | Task Description | + +
+ Modal Text Labels +
+ +We are ready with the labels, let's place the input components next to the labels. Drag **[Text Input](/docs/widgets/text-input)**, **[Number Input](/docs/widgets/number-input)**, **[Date Picker](/docs/widgets/datepicker)** and **[Textarea](/docs/widgets/textarea)** components and arrange them next to the labels. You'll find all the input fields under the **Form** section of the component library. We'll also add a **Submit** button below the input fields. Refer to the below table to rename the component name and default values: + +| Component | Component Name | Default Value | +|:----------------|:-------------------|:-----------------| +| Text Input | taskNameInput | Development | +| Number Input | taskDurationInput | 1 | +| Date Picker | taskDateInput | {{moment().format("DD/MM/YYYY")}}| +| Textarea | taskDescriptionInput| Creating a modal component | + +
+ Modal With Input Fields +
+ +For the **Date Picker** field, we are using double curly braces to pass JavaScript code. Using the **Moment.js** library, we are getting today's date in the dd/mm/yyyy format. ToolJet comes with **Moment.js**, **Lodash** and **Axios** libraries to make it more convenient for you to work with custom JavaScript code. + +We'll close the modal by clicking on the `X`/close button on the top-right. + +
+ Open and Close the Modal Component +
+ +### Creating Query To Write Data + +We are ready with the form. Now we need to create a query that will help us add new entries to the *timeTracker* table in the database. Click on the **+ Add** button in the Query Panel. Select **ToolJet Database** from the list of available sources. + +Rename the query to *addLog*, select **Create row** as Operations and use the below configuration for the columns. We'll see how we can use custom code and use different keys to access the data available in the app-builder in the below table. + +| Column Name | Keys | +| :-------------- | :------------------------ | +| employee | {{globals.currentUser.email}} | +| taskname | {{components.taskNameInput.value}} | +| duration | {{components.taskDurationInput.value}} | +| dateoftask | {{components.taskDateInput.value}} | +| taskdescription | {{components.taskDescriptionInput.value}} | + +
+ Configuration for the addLog query +
+ + +Click on the **Inspector** on the left-sidebar to look at the available values under **globals** and **components**. + +
+
+

+ The currentUser object holds all the values related to logged-in user. +
+
+ You can refer to the logged-in user's firstName, lastName, email and groups using the currentUser object. +
+
+ Similarly, the components object holds all the values related to the components in our application. +
+
+ Now every time the addLog query runs, the values present in the referred keys will be written to the database. +

+
+
+ Details in the Inspector Objects +
+
+
+ +Later, we'll plug this query to the **Submit** button on *logTimeModal*. + +### Using Events + +**Events** allow us to run queries and other application functions based on button clicks, query completion and an array of other triggers. + +The *addLog* query will add data to the the *timeTracker* table in the database when it runs. But we would want our **Table** component to be reloaded with the new data every time we add or delete the entries. Since the data in the **Table** component is coming from the *getTrackerSummary* query, we'll trigger the *getTrackerSummary* query after running the *addLog* query. + +Click on the **+ New Event Handler** button in the *addLog* query - a new event will be added. Click on the event and select **Run Query** as Action and *getTrackerSummary* as Query. + +
+ Configuration for the addLog query +
+ +Now the *getTrackerSummary* will run every time the *addLog* query is successfully executed, the **Table** component will also get updated with the new data since it displays the data returned by the *getTrackerSummary*. + +It's time to add the *addLog* query to the modal and see it in action. Open the modal by clicking on *logTimeButton* and select the *submit* button that we've placed inside the modal. + +Under **Events** configuration of the *submit* button, click on **+ Add Handler**, leave the Event as **On Click**, select the Action as **Run Query** and select *addLog* as the query. + +
+ Add addLog Query To Modal +
+ +Now whenever we click on the submit button, the *addLog* query will run and values present in the input fields will be written to the database. + +We also need to show a prompt to indicate that the data has been added. Click on **+ Add Handler**, leave the Event as **On Click**, select the Action as **Show Alert** and enter **Log Added** as the Message and leave Alert Type as **Info**. + +
+ Add Alert Event +
+ +Finally, we would want our modal to close once we click on **Submit** and the required query and alert is triggered. Add one more **Event**, select **Close Modal** as the action type and *logTimeModal* as **Modal**. + +
+ Event to Close Modal +
+ +Now every time we click on the **Submit** button on the modal, the *addLog* query will run, followed by an alert and the modal being closed. + +
+ Add New Log Entries +
+ +### Adding Actions To Tables + +Let's create a way to delete entries from the **Table** component using **Actions**. + +We'll first create the required query to perform the action. Click on the **+ Add** button in the Query Panel. Select **ToolJet Database** from the list of available sources. Rename the query to *deleteLog*, select **Delete rows** as Operations. + +For the **Filter**, select **id** as the column(first field), **equals** as the operation(second field) and paste the below code in the **key** input(third field): +```js +{{components.trackerTable.selectedRow.id}} +``` + +
+ Delete Log Entries +
+ +When you click on a table row, its values get stored under the selectedRow key. To remove that row from the database, we match **selectedRow.id** with the database's **id** field. + +We also need to run the *getTrackerSummary* query once the *deleteLog* query is completed to ensure that the **Table** component gets reloaded with the updated data. Click on the **+ New Event Handler** button in the *deleteLog* query - a new event will be added. Click on the newly created event, leave Event as **Query Success**, select **Run Query** as Action and *getTrackerSummary* as Query. + +
+ Delete Query Success Event +
+ + +Now let's use this query with **Actions** in the **Table** component. + +Go to the **Action Buttons** section of the *trackerTable* properties. Click on **+ New action button** and change Button Text to **Delete**, Background color to **Red**(first color in the palette) and Text color to **White**(last color in the palette.) + +Click on **+ New event handler** and leave the Event as **On click** and select **Run Query** as the Action. Select *deleteLog* for the Query dropdown. + +
+ Delete Action Configuration +
+ +Now every time we click on the **Delete** action button, the *deleteLog* query will run and delete the related row. + +
+ Delete Log Entries +
+ +### Filter Data Based On The Logged-In User + +In a typical time-tracking application, we only need to show the data related to the logged-in user. To achieve that, we need to add a filter to our *getTrackerSummary* query. + +Open the *getTrackerSummary* query in the **Query Panel**, click on the **+ Add Condition** button associated with **Filter**. + +For the **Filter**, select **employee** as the column(first field), **equals** as the operation(second field) and paste the below code in the **key** input(third field): +```js +{{globals.currentUser.email}} +``` + +Add some new entries to the Time Tracker. Earlier, we had put some test entries with test@gmail.com as the value for the **employee** column. Now, those entries will not appear and only the entries you have added with your current email(or logged in account) will appear on the table. + +
+ Filtered Data For Logged-In User +
+ +Congratulations! You've successfully built a time tracker application and, in the process, covered the essential fundamentals of ToolJet. Now you're well-equipped to take on more complex projects. Happy building! + + +## What Can I Do With ToolJet + +If you are building internal tool for your organization, here are few tutorials of sample use-cases for you to get started: + +- **[Build a Feature Request Management App](https://youtu.be/c2sbFTDUMzs)** +- **[Build a Ticket Triaging App with Baserow and ToolJet](https://blog.tooljet.com/build-a-ticket-triaging-app-with-baserow-and-tooljet/)** +- **[Building a MinIO file explorer app](https://blog.tooljet.com/building-a-minio-file-explorer-app-in-30-minutes/)** +- **[Building a Google Cloud Storage (GCS) file explorer app](https://blog.tooljet.com/build-internal-file-explorer-application-using-google-cloud-storage-gcs-and-tooljet/)** +- **[Build an AWS S3 file explorer app](https://blog.tooljet.com/building-an-app-to-view-and-upload-files-in-aws-s3-bucket/)** +- **[Build Stripe Refund App](https://blog.tooljet.com/build-a-stripe-refund-tool-using-low-code/)** +- **[Build a WhatsApp CRM](https://blog.tooljet.com/build-a-whatsapp-crm-using-tooljet-within-10-mins/)** +- **[Build a cryptocurrency dashboard](https://blog.tooljet.com/how-to-build-a-cryptocurrency-dashboard-in-10-minutes/)** +- **[Build a Redis GUI](https://blog.tooljet.com/building-a-redis-gui-using-tooljet-in-5-minutes/)** + +Find more Tutorials on our **[Blog](https://blog.tooljet.com/)**. + +## For ToolJet Contributors + +To contribute to ToolJet code, plugins, and documentation, refer to our **[Contributing Guide](/docs/category/contributing-guide)**. + +[![GitHub contributors](https://img.shields.io/github/contributors/tooljet/tooljet)](https://github.com/ToolJet/ToolJet/contributors) +[![GitHub issues](https://img.shields.io/github/issues/ToolJet/ToolJet)](https://github.com/ToolJet/ToolJet/issues) +[![GitHub stars](https://img.shields.io/github/stars/ToolJet/ToolJet)](https://github.com/ToolJet/ToolJet/stargazers) +[![GitHub license](https://img.shields.io/github/license/ToolJet/ToolJet)](https://github.com/ToolJet/ToolJet) + + + contributors + + +## Help and Support +- We have extensively documented the features of ToolJet, but in case you are stuck, please feel free to e-mail us at **hello@tooljet.com** +- If you are using ToolJet cloud, click on the chat icon at the bottom-left corner for instant help. +- If you have found a bug, please create a **[GitHub issue](https://github.com/ToolJet/ToolJet/issues)** for the same. +- Feel free to join our highly active **[Slack Community](https://www.tooljet.com/slack)**. diff --git a/docs/versioned_docs/version-2.23.0/how-to/_category_.json b/docs/versioned_docs/version-2.23.0/how-to/_category_.json new file mode 100644 index 0000000000..cd5b99d44a --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "How To", + "position": 8, + "collapsed": true +} \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/access-cellvalue-rowdata.md b/docs/versioned_docs/version-2.23.0/how-to/access-cellvalue-rowdata.md new file mode 100644 index 0000000000..f04cef2571 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/access-cellvalue-rowdata.md @@ -0,0 +1,115 @@ +--- +id: access-cellvalue-rowdata +title: Change text color in columns of the table +--- + +# Change text color in columns by accessing `cellValue` and `rowData` in the table + +In this how-to guide, we will build an app that will use a sample RestAPI to display the data in the table, and then we will change the text color of the columns according to the condition. + +- Let's start by creating a new application and then adding a table widget into the canvas. + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/newapp.gif) + +
+ +- Now go to the **Query Panel** at the bottom of the app editor and click on the `+` button. +- Choose **RestAPI** data source + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/restapi.png) + +
+ +- Now we will use a sample RestAPI endpoint - I have used the API provided by **coinstats.app**, API-URL: +https://api.coinstats.app/public/v1/coins?skip=0&limit=100¤cy=USD +- Choose `GET` method, enter the request URL (API URL in previous step), name the query - I have named it `crypto`, and then **Create** the query + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/apiendpoint.png) + +
+ +- Now hit the **Run** button next to the query name to run the query. + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/runquery.png) + +
+ +- Once you run the query, you can check the data returned by the query in the **Inspector** on the left sidebar. + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/inspectord.png) + +
+ +- Now that we have got the data, we will display it on the table. To do this, click on the widget handle of the table to open its properties in the right sidebar. +- In the Table Data field, enter `{{queries.crypto.data.coins}}` - as you can see in the screenshot of the inspector the data is inside the `coins` array. You'll see the data in the Preview(green box) below the field. + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/data.png) + +
+ +- Let's add the columns that we want to display on the table. Go to the **Columns** section, Add columns, set their Names, and set **key** for each column. I have added 5 columns: **Rank**, **Name**, **Symbol**, **Price**, and **Market Cap**. + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/columns.png) + +
+ +- Once you've added the columns, you'll get the table like this: + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/table.png) + +
+ +### Using cellValue to change column text color + +Now that we have our data on the table, we will change the color of the text in the **Price** and **Market Cap** columns. + +- Edit table properties, go to **Columns**, and click on the Price Column to open its properties. +- For **Price** column, we want to change color of those cells who have value which is greater than 1000 to red else to green if it is less than 1000. So to do this, we will set a condition in **Text Color** property of this column: `{{cellValue >= 1000 ? 'red' : 'green'}}` + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/price.png) + +
+ +- Similarly, we will do for **Market Cap** column. We want to change the text color of those cells who have value which is greater than 60000000000 to red else to green if it is less than 60000000000. so the condition will be `{{cellValue >= 60000000000 ? 'red' : 'green'}}` +- Now the text color of cells in the columns will be updated. + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/cellvalue.png) + +
+ +:::info +You can also use Hex Color Code instead of mentioning color in plane text. +::: + +### Using rowData to change column text color + +- To change the color of the text using `rowData` variable it is required to mention the column name whose cell value we will be comparing in the condition. Let's take a look by changing the text color of **Symbol** column. +- We will add a condition to look in the row data and if the row has column called `name` which has value `Solana` then it should change the color to red else the color should be green. +- Edit the properties of the Symbol column, set the **Text Color** field value to `{{rowData.name === 'Solana' ? 'red' : 'green'}}`. +- You'll see that in the Symbols column all the values has become green except the one that has Solana in Name column. + +
+ +![ToolJet - How To - Change text color in columns of the table](/img/how-to/change-text-color/rowData.png) + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/access-users-groups.md b/docs/versioned_docs/version-2.23.0/how-to/access-users-groups.md new file mode 100644 index 0000000000..4fdf9cabe0 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/access-users-groups.md @@ -0,0 +1,54 @@ +--- +id: access-currentuser +title: Enable/Disable a component using current user's property +--- + +# Enable/Disable a component using current user's property + +Let's take look at the exposed variables of the current user property: + +- **email** : The value can accessed using `{{globals.currentUser.email}}` +- **firstName** : The value can accessed using `{{globals.currentUser.firstName}}` +- **lastName** : The value can accessed using `{{globals.currentUser.lastName}}` +- **lastName** : The value can accessed using `{{globals.currentUser.lastName}}` +- **groups** : By default, the admin will be in the two groups `all_users` and `admin`, and any user who is not admin will always be in the `all_users` group by default. Since the **groups** is an array you’ll have to provide the index ([0], [1], and so on) to return the group name. The value can be accessed using `{{globals.currentUser.groups[1]}}`. + +
+ +Properties of current user + +
+ +### Example: Disable a button if a user is not admin + +- Click on the **Button** handle to open its properties, on the **Styles** tab go to the **Disable** property. + +
+ + Properties of button + +
+ +- Set a condition on the Disable field so that if the the user who is using the app does not have **admin** value in the first index of **groups** array return **true**. The condition can be: + + ```javascript + {{globals.currentUser.groups[1] !== "admin" ? true : false}} + ``` + +
+ + Disable Property of button + +
+ +- Now, when you'll **release** the app, if the user is not is not admin the button will be disabled. + +
+ + Released button disabled when user is not admin + +
+ +:::info +In this how-to we have used the **Groups** property of the **Current User**. You can use any of the exposed variables mentioned above according to your use. +::: diff --git a/docs/versioned_docs/version-2.23.0/how-to/access-users-location.md b/docs/versioned_docs/version-2.23.0/how-to/access-users-location.md new file mode 100644 index 0000000000..1b7cfd7194 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/access-users-location.md @@ -0,0 +1,85 @@ +--- +id: access-users-location +title: Access a user's location +--- + +# Access a user's location using RunJS query (Geolocation API) + +In this how-to guide, we will build a ToolJet application that will utilize the **JavaScript Geolocation API** to get the user's location. The Geolocation API provides access to geographical location data associated with a user's device. This can be determined using GPS, WIFI, IP Geolocation and so on. + +:::info +To protect the user's privacy, Geolocation API requests permission to locate the device. If the user grants permission, you will gain access to location data such as latitude, longitude, altitude, and speed. +::: + +- Let's start by creating a new application + +
+ + New App + +
+ +- In the app editor, go to the query panel at the bottom and create a **[RunJS query](/docs/data-sources/run-js/#runjs-query-examples)** by selecting **Run JavaScript Code** as the datasource + +
+ + New App + +
+ +- You can use the following javascript code that makes use of geolocation api to get the location + + ```js + function getCoordinates() { + return new Promise(function(resolve, reject) { + navigator.geolocation.getCurrentPosition(resolve, reject); + }); + } + + async function getAddress() { + // notice, no then(), cause await would block and + // wait for the resolved result + const position = await getCoordinates(); + let latitude = position.coords.latitude; + let longitude = position.coords.longitude; + + return [latitude, longitude]; + } + + return await getAddress() + ``` + +- Now, go to the **Advanced** tab and enable the `Run query on page load?` option. Enabling this option will run this javascript query every time the app is opened by the user and the query will return the location + +- **Save** the query and hit the fire button + +- As soon as you hit the fire button, the browser will prompt you to allow the permission to share the location access to ToolJet app. You'll need to **allow** it to return the location data + +
+ + New App + +
+ +- Now, to check the data returned by the query go to the **Inspector** on the left sidebar. Expand the queries -> `runjs1`(query name) -> and then expand the **data**. You'll find the coordinates + +
+ + New App + +
+ +- Next, we can use these coordinates returned by the query on the **map component** to show the location. Drop a map component on the canvas and edit its properties. In the **Initial location** property, enter + + ```js + {{ {"lat": queries.runjs1.data[0], "lng": queries.runjs1.data[1]} }} + ``` + +
+ + New App + +
+ +- Finally, you'll see the location updated on the **map component** + diff --git a/docs/versioned_docs/version-2.23.0/how-to/build-plugin-for-marketplace.md b/docs/versioned_docs/version-2.23.0/how-to/build-plugin-for-marketplace.md new file mode 100644 index 0000000000..301121b4e6 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/build-plugin-for-marketplace.md @@ -0,0 +1,381 @@ +--- +id: build-plugin-for-marketplace +title: Build a new plugin for marketplace +--- + +## Introduction + +ToolJet marketplace is a place where you can find custom plugins and install them in your ToolJet instance. This document will help you to build a new plugin for ToolJet marketplace. + +## Prerequisites +- [Node.js](https://nodejs.org/en/download/) (v18.3.0) +- [npm](https://www.npmjs.com/get-npm) (v8.11.0) + +## Getting started +### 1. Enabling the marketplace for your instance +To enable the marketplace for your instance, you need to set the `ENABLE_MARKETPLACE` environment variable to `true` in your `.env` file. +Marketplacwe is disabled by default. +Once you set the environment variable, restart your ToolJet instance. You can find the instructions to run ToolJet locally [here](/docs/setup/). +Marketplace can be accessed from '/integrations' route. + +### 2. Installing tooljet-cli +ToolJet marketplace uses [tooljet-cli](https://www.npmjs.com/package/@tooljet/cli) to build and publish plugins. You can install it using npm. +```bash +npm install -g tooljet-cli + +# verify the installation +tooljet --version +``` + +### 3. Creating a new plugin - Github plugin +Let's create a new Github plugin for ToolJet marketplace, which will authenticate a user using Github Personal Access Token and will include basic operations like fetching user details, fetching repositories, fetching issues and fetching pull requests. + +```bash +# create a new plugin +tooljet plugin create github +``` +Provide the plugin name and select the plugin type, which is a `api` in this case. +Select `yes` when asked to create a new plugin for marketplace. + +Provide the repository URL if hosted on GitHub, otherwise leave it blank. + +When you create a plugin using the ToolJet CLI, an object is automatically added to the plugins.json file, which is located in the `ToolJet/server/src/assets/marketplace/` directory. This object contains metadata about the plugin, such as its name, description, version, author, and other details. +This plugins.json file serves as a registry of all the plugins that are available for use in ToolJet. When ToolJet server starts up, it reads this file and loads all the plugins that are listed in it. + +:::note +It's important to note that the plugins.json file should not be manually edited as it is automatically generated by the ToolJet CLI. Any changes made to this file may cause issues with the proper functioning of the plugins in the system. +::: + +All marketplace plugins are stored in the `/marketplace` directory of the ToolJet repository. You can find the Github plugin [here](https://github.com/ToolJet/ToolJet/tree/develop/marketplace/plugins/github). + +The directory structure of a typical ToolJet plugin looks like this: + +```bash +github/ + package.json + lib/ + icon.svg + index.ts + operations.json + manifest.json +``` + +- manifest.json should include information such as the name of plugin, description, etc. +- operations.json should include the metadata of all the operations supported by the plugin. +- index.ts is the main file. It defines a QueryService for the plugin. The QueryService handles running of queries, testing connections, caching connections, etc. +- icon.svg is the icon for the plugin. +- package.json is auto generated by the cli. + + +:::info +**Why do we need a manifest.json file or a operations.json file?** + +The manifest.json files are consumed by a React component to create dynamic UI for connection forms by defining the schema of an API or data source. The schema includes information about the source, such as its name, type, and any exposed variables. It also includes options for authentication and other properties that can be customized by the user. The properties section defines the specific fields and their types that are required for connecting to the API or data source. The React component reads the manifest.json file and generates the necessary UI components based on the schema, allowing users to enter the required information for connecting to the source. This can include text inputs, dropdowns, checkboxes, and other UI elements, depending on the schema defined in the manifest.json file. + +The operations.json file contains a schema definition for a particular data source, for example, Github. It describes the available operations and their parameters that can be used to query the data source. + +A React component uses this schema to create queries in ToolJet applications to generate a UI that allows users to select the desired operation and provide the required parameters. + +The component would use the properties defined in the operations.json file to create various UI elements, such as dropdowns, and input fields, and handle user interactions to create the final query. Once the user has filled in the required parameters, the component would use them to generate a query that can be executed against the data source, and return the results to the user. + +In conclusion, *manifest.json* and *operations.json* files play an important role in creating dynamic UI components in ToolJet applications. These files define the schema for data sources and available operations, which is then consumed by React components to generate the necessary UI elements for users to interact with. By using these files, ToolJet enables users to easily connect to various APIs and data sources, perform queries and retrieve data in a user-friendly way. +::: + + +### 4. Defining the manifest.json file +We need to include the necessary options to construct the connection form. +```json + "properties": { + "credentials": { + "label": "Authentication", + "key": "auth_type", + "type": "dropdown-component-flip", + "description": "Single select dropdown for choosing credentials", + "list": [ + { + "value": "personal_access_token", + "name": "Use Personal Access Token" + } + ] + + }, + "personal_access_token": { + "token": { + "label": "Token", + "key": "personal_token", + "type": "password", + "description": "Enter personal access token", + "hint": "You can generate a personal access token from your Github account settings." + } + } + } +``` +It includes information about authentication options, specifically a dropdown to choose a type of credentials and a field to enter a personal access token. The label, key, type, description, and hint properties are used to define the specific fields and their types required for connecting to the API or data source. + +### 5. Defining the operations.json file +```json + "properties": { + "operation": { + "label": "Operation", + "key": "operation", + "type": "dropdown-component-flip", + "description": "Single select dropdown for operation", + "list": [ + { + "value": "get_user_info", + "name": "Get user info" + }, + { + "value": "get_repo", + "name": "Get repository" + }, + { + "value": "get_repo_issues", + "name": "Get repository issues" + }, + { + "value": "get_repo_pull_requests", + "name": "Get repository pull requests" + } + ] + }, + "get_user_info": { + "username": { + "label": "Username", + "key": "username", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter username", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "Enter username" + } + }, + "get_repo": { + "owner": { + "label": "Owner", + "key": "owner", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter owner name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "developer" + }, + "repo": { + "label": "Repository", + "key": "repo", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter repository name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "tooljet" + } + }, + "get_repo_issues": { + "owner": { + "label": "Owner", + "key": "owner", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter owner name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "developer" + }, + "repo": { + "label": "Repository", + "key": "repo", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter repository name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "tooljet" + }, + "state": { + "label": "State", + "key": "state", + "className": "codehinter-plugins col-4", + "type": "dropdown", + "description": "Single select dropdown for choosing state", + "list": [ + { + "value": "open", + "name": "Open" + }, + { + "value": "closed", + "name": "Closed" + }, + { + "value": "all", + "name": "All" + } + ] + } + }, + "get_repo_pull_requests": { + "owner": { + "label": "Owner", + "key": "owner", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter owner name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "developer" + }, + "repo": { + "label": "Repository", + "key": "repo", + "type": "codehinter", + "lineNumbers": false, + "description": "Enter repository name", + "width": "320px", + "height": "36px", + "className": "codehinter-plugins", + "placeholder": "tooljet" + }, + "state": { + "label": "State", + "key": "state", + "type": "dropdown", + "className": "codehinter-plugins col-4", + "description": "Single select dropdown for choosing state", + "list": [ + { + "value": "open", + "name": "Open" + }, + { + "value": "closed", + "name": "Closed" + }, + { + "value": "all", + "name": "All" + } + ] + } + } + } +``` +The operations.json file defines the operations that can be performed on the data source. It includes information about the operation type, the fields required to perform the operation, and the type of each field. The label, key, type, description, and hint properties are used to define the specific fields and their types required for connecting to the API or data source. + +### 6. Add the npm package of Gitub to the plugin dependencies + +```bash +# change directory to the plugin directory and install the npm package +cd plugins/github +npm i octokit --workspace=@tooljet-marketplace/github +``` + +:::info +Steps to install npm package to a plugin + +```bash +npm i --workspace= +``` + +The command `npm i --workspace=` is used to install a specific npm package into a particular workspace of a multi-package repository. + +The *--workspace* flag is used to specify the workspace where the package should be installed. In this case, we are installing the package in the *@tooljet-marketplace/github* workspace. +::: + +### 7. Implement the query execution logic in index.ts +The QueryService for the Github plugin handles the logic for running queries in index.ts. The QueryService receives the metadata of the data source, including the credentials and configurations for connecting and parameters for the query that was run. + +For the Github datasource, the sourceOptions will include the credentials required for authentication, such as the personal access token. The queryOptions will have the configurations and parameters for the specific query, including the operation to be performed, such as getting the list of repositories for a specific user. + +The QueryService will use this information to create and execute the necessary API requests against the Github API. The resulting data will be returned to the caller, which can then be further processed as required. + + +Create a new file query_operations.ts in the plugins/github/src directory and add the following code to it. +```typescript +import { Octokit } from 'octokit' +import { QueryOptions } from './types' + + +export async function getUserInfo(octokit: Octokit, options: QueryOptions): Promise { + const { data } = await octokit.request( + 'GET /users/{username}', + { + username: options.username + } + ); + return data; +} + +export async function getRepo(octokit: Octokit, options: QueryOptions): Promise { + const { data } = await octokit.request( + 'GET /repos/{owner}/{repo}', + { + owner: options.owner, + repo: options.repo + } + ); + return data; +} + +export async function getRepoIssues(octokit: Octokit, options: QueryOptions): Promise { + const { data } = await octokit.request( + 'GET /repos/{owner}/{repo}/issues', + { + owner: options.owner, + repo: options.repo, + state: options.state || 'all' + + } + ); + return data; +} + +export async function getRepoPullRequests(octokit: Octokit, options: QueryOptions): Promise { + const { data } = await octokit.request( + 'GET /repos/{owner}/{repo}/pulls', + { + owner: options.owner, + repo: options.repo, + state: options.state || 'all' + } + ); + return data; +} + +``` + +The query_operations.ts file contains the functions that will be used to execute the queries. The functions will be called by the QueryService in index.ts. + +The Github class has three methods: +- run: This method is called when a query needs to be executed. It takes in *sourceOptions* and *queryOptions* as input, which represent the source metadata and the query configuration, respectively. The run method uses the octokit library to make API requests to the GitHub API and returns the result of the query in a QueryResult object. + +- testConnection: When a new data source is being added to a ToolJet application, the connection can be tested. +This method is called when a connection needs to be tested. It takes in sourceOptions as input, which represents the source metadata. The testConnection method tests the connection by attempting to get the authenticated user and returns a ConnectionTestResult object that indicates whether the connection was successful or not. + +:::note +Every data source might not have a way to test connection. If not applicable for your data source, you can disable the test connection feature by adding "customTesting": true, to the manifest.json of your plugin. +:: + +- getConnection: This method is a helper method that returns an authenticated octokit client that is used to make requests to the GitHub API. It takes in sourceOptions as input, which represents the source metadata, and returns an authenticated octokit client. + + + + + + + + + + + + + + diff --git a/docs/versioned_docs/version-2.23.0/how-to/bulk-update-multiple-rows-in-table.md b/docs/versioned_docs/version-2.23.0/how-to/bulk-update-multiple-rows-in-table.md new file mode 100644 index 0000000000..b29e582b46 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/bulk-update-multiple-rows-in-table.md @@ -0,0 +1,116 @@ +--- +id: bulk-update-multiple-rows +title: Bulk update multiple rows in table +--- + +# Bulk update multiple rows in table + +Currently, the datasources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. + +In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database, currently, this workaround can be used only for PostgreSQL and MySQL. + +## 1. Create a query to get the data from the database + +Let's create the query that will be getting the data from the database: + +
+ +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/postgres1.png) + +
+ +## 2. Display the data on the table + +- Drag a **Table** widget on the canvas and click on its handle to open the properties on the left sidebar +- Edit the **Table data** field value and enter **`{{queries.postgresql1.data}}`** + +
+ +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/showData.png) + +
+ +## 3. Make the columns editable + +- Go to the **Columns**, Add or edit columns section and enter the **Column Name** that you want to display on the table and the **Key** name. Key is the name of the column in your database. +- Enable the toggle for **Make editable** for the columns that you want to be editable. + +
+ +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/columns.png) + +
+ +## 4. Enable bulk update options for table widget + +- Go to the **Options** section and enable the **Show update buttons**. Enabling this will add two buttons - **Save Changes** and **Discard Changes** at the bottom of the table, only when any cell in the table is edited. +- You can also enable highlight selected row.(**Optional**) + +
+ +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/options.png) + +
+ +## 5. Create a Custom JS query + +We will create a new Custom JS query(**runjs1**) that will generate SQL query for updating multiple rows. + +```js +const uniqueIdentifier = "id" +const cols = Object.values(components.table1.changeSet).map((col, index) => { + return { + col: Object.keys(col), + [uniqueIdentifier]: Object.values(components.table1.dataUpdates)[index][uniqueIdentifier], + values: Object.values(col), + }; +}); + +const sql = cols.map((column) => { + const { col, id, values } = column; + const cols = col.map((col, index) => `${col} = '${values[index]}'`); + return `UPDATE users SET ${cols.join(", ")} WHERE id = '${id}';`; +}); + +return sql +``` +:::info +Here the **Unique identifier** is **id**, this is the column name that is used to identify the row in the database. +Update the **Unique identifier** if you are using a different column name. +Update **table1** with the name of the table you are using. +::: +
+ +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/runjs1.png) + +
+ +## 6. Create an Update query + +Let's create a new PostgreSQL query and name it `update`. In **SQL mode**, enter `{{queries.runjs1.data.join(' ')}}` and **Save** it. + +
+ +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/update.png) + +
+ +## 7. Creating a flow for queries + +- Click on the handle of the **Table** widget to open its properties +- Go to the **Events**, and add a handler +- Select **Bulk Update** in Events, **Run Query** in Actions, and then select the **runjs1** query in Query. Now whenever a user will edit the table and hit the **Save Changes** button runjs1 will run. + +
+ +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/event.png) + +
+ +- Now, go to the **Advanced** tab of **runjs1** and add a handler to run update query for **Query Success** Event. Now whenever the runjs1 query will be run - the update operation will be performed on the database. + +
+ +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/success.png) + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/delete-multiple-rows-table.md b/docs/versioned_docs/version-2.23.0/how-to/delete-multiple-rows-table.md new file mode 100644 index 0000000000..a14e35bd67 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/delete-multiple-rows-table.md @@ -0,0 +1,151 @@ +--- +id: delete-multiple-rows +title: Delete multiple rows in table +--- + +The table component in the ToolJet has the option for bulk selection of rows that can have various use cases such as **updating** or **deleting** records. However, the datasources does not support bulk delete or bulk update operations. + +In this guide, we will learn how we can delete multiple rows in a table. We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database, currently, this workaround can be used only for PostgreSQL and MySQL. + +## 1. Create a query to fetch the data from the database + +Create a new query, name it `getRecords` and use SQL mode: +```sql +SELECT * FROM tooljet // replace tooljet with your table name +``` + +
+ +How-to: Delete multiple rows in table + +
+ +
+ +Enable the **Run the query on application load?** option. This will ensure that the query is executed when the application is loaded. + +## 2. Load the data on the table + +Now, we will load the data on the table. For this, we will use the `getRecords` query that we created in the previous step. Drag the table component from the right sidebar and drop it on the canvas. + +On table properties, go to the table data property and set the value to `{{queries.getRecords.data}}`. This will load the data from the `getRecords` query on the table. + +Run the query and you should see the data loaded on the table. + +
+ +How-to: Delete multiple rows in table + +
+ +
+ +## 3. Enable bulk row selection on table + +Now, we will enable the bulk row selection on the table. For this, go to the table properties and enable the **Bulk selection** option. Enabling this option will allow you to select multiple rows on the table. This option is disabled by default. + +
+ +How-to: Delete multiple rows in table + +
+ +
+ +## 4. Create a custom javascript query + +Now, we will create a custom javascript query that will **generate a SQL statement** to delete the selected rows from the table component based on a list of selected IDs, assuming the IDs are stored in the **id** column and that the name of the table component is **table1**. The actual database name should be replaced with **tooljet** as indicated in the SQL statemnent in the code below: + +```js +const uniqueIdentifier = "id"; +const idsToDelete = Object.values(components.table1.selectedRows).map(dataUpdate => dataUpdate[uniqueIdentifier]); + +const idsString = idsToDelete.map(id => `'${id}'`).join(', '); + +const SQL = `DELETE FROM tooljet WHERE ${uniqueIdentifier} IN (${idsString});`; + +return SQL; +``` + +If you click on the **Preview** button, you should see the SQL statement generated by the query: + +
+ +How-to: Delete multiple rows in table + +
+ +
+ +Now, let's select a few rows on the table and then preview the SQL query generated by the javascript query: + +
+ +How-to: Delete multiple rows in table + +
+ +
+ +## 5. Create a new query to delete the rows + +Now, we will create a new query to delete the rows from the table. Create a new query, name it `delete` and use SQL mode: + +```sql +{{queries.runjs1.data}} // replace runjs1 with the name of the javascript query +``` + +In this query, we are dynamically loading the SQL statement generated by the javascript query. + +
+ +How-to: Delete multiple rows in table + +
+ +
+ +## 6. Add a button to delete the selected rows + +Now, we will add a button to delete the selected rows from the table. Drag the button component from the right sidebar and drop it on the canvas. Edit its properties and set the **Button text** to **Delete**. + +Add a new **Event** to the button on **On click** event to trigger the **Run Query** action and select the `runjs1` query that we created in the previously. + +
+ +How-to: Delete multiple rows in table + +
+ +
+ +Optionally, we can add a loading state to the button whenever the `delete` or `getRecords` query is running: +```js +{{queries.delete.isLoading || queries.getRecords.isLoading}} +``` + +Now, whenever you click on the button, the javascript query will generate a SQL statement to delete the selected rows from the table but to delete the rows from the database, we need to add event handler to the **runjs1** query to trigger the **delete** query whenever the `runjs1` query is **executed and successfull**. + +
+ +How-to: Delete multiple rows in table + +
+ +
+ +Now, whenever you click on the button, the javascript query will generate a delete SQL statement with selected rows on the table and the `delete` query will delete the rows from the database. + +Similarly, you can add an Event to the **delete** query to trigger the **getRecords** query whenever the `delete` query is executed and successful. This will ensure that the table is updated with the latest data from the database. + +
+ +How-to: Delete multiple rows in table + +
+ +
+ +## 7. Preview the application + +The application is now ready. Click on the **Preview** button on the topbar of the app builder to preview the application. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/import-external-lib-js.md b/docs/versioned_docs/version-2.23.0/how-to/import-external-lib-js.md new file mode 100644 index 0000000000..1152b729f7 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/import-external-lib-js.md @@ -0,0 +1,96 @@ +--- +id: import-external-libraries-using-runjs +title: Import external libraries using RunJS +--- + +ToolJet allows you to utilize external libraries in your app by importing them using the [RunJS query](/docs/data-sources/run-js). + +In this how-to guide, we will import a few JavaScript libraries and use it in the application. + +:::tip +You can import any of the available libraries using their **CDN**. Find free CDN of the open source projects at **[jsDelivr](https://www.jsdelivr.com/)** +::: + +- Create a new application and then create a new RunJS query from the query panel. +
+ + Import external libraries using RunJS + +
+ +- Let's write some code for importing libraries. We will first create a function `addScript` that returns a `Promise`, the `Promise` creates a script tag -> sets an attribute -> and eventListener `resolves` if its loaded and `rejects` if there is an error, and then body is appended at the end. +- We are going to import two libraries using their CDNs: **MathJS** and **Flatten**, and display an alert when the libraries are loaded successfully. + ```js + function addScript(src) { + return new Promise((resolve, reject) => { + const s = document.createElement('script'); + s.setAttribute('src', src); + s.addEventListener('load', resolve); + s.addEventListener('error', reject); + document.body.appendChild(s); + }); + } + + try { + await addScript('https://cdn.jsdelivr.net/npm/mathjs@11.7.0'); + await addScript('https://cdn.jsdelivr.net/npm/flattenjs@2.1.3/lib/flatten.min.js'); + + await actions.showAlert("success", 'Mathjs and Flatten imported') + + + } catch (e) { + console.log(e); + } + ``` + +- Now, when you hit **create** and then **run** the query, the script will be injected into the DOM. An alert should pop-up with the message **Mathjs and Flatten imported**. + +
+ + Import external libraries using RunJS + +
+ +:::tip +Enable the **Run this query on application load?** option to make the libraries available throughout the application as soon as the app is loaded. +::: + +## Examples + +### Flatten the JSON objects using FlattenJS + +- Let's create a new **RunJS** query that will use **Flatten** library(imported in the above section) and the query will flatten the JSON object. + ```js + return flatten({ + key1: { + keyA: 'valueI' + }, + key2: { + keyB: 'valueII' + }, + key3: { a: { b: { c: 2 } } } + }) + ``` +- Save the query, you can either **Preview** the output on the query manager or **Run** the query to check the output on the inspector on the left-sidebar. + +
+ + Import external libraries using RunJS + +
+ +### Computation using MathJS + +- Let's create a new **RunJS** query that will return the result of calculation performed by [atan2](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/atan2) method and then divided by [pi](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/PI). +```js +return math.atan2(3, -3) / math.pi +``` + +- Save the query, you can either **Preview** the output on the query manager or **Run** the query to check the output on the inspector on the left-sidebar. + +
+ + Import external libraries using RunJS + +
+ \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/import-external-lib-py.md b/docs/versioned_docs/version-2.23.0/how-to/import-external-lib-py.md new file mode 100644 index 0000000000..7c805bcef6 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/import-external-lib-py.md @@ -0,0 +1,98 @@ +--- +id: import-external-libraries-using-runpy +title: Import external libraries using RunPy +--- + +ToolJet allows you to utilize python packages in your app by importing them using the [RunPy query](/docs/data-sources/run-py). +In this how-to guide, we will import a few packages and use it in the application. + +:::caution Unsupported modules +The modules that are not currently supported in Pyodide are those that have C or C++ extensions that rely on system libraries. These modules cannot be used in Pyodide because it runs in a web browser, which does not have access to the underlying system libraries that the C or C++ extensions rely on. Additionally, Pyodide uses a version of Python that has been compiled to WebAssembly, which does not support the same system calls as a regular version of Python. Therefore, any module that requires access to system libraries or system calls will not work in Pyodide. +::: + +- Create a new application and then create a new RunPy query from the query panel. +
+ + Import external libraries using RunPy + +
+ +- Let's write some code for importing packages. We will first import the micropip which is a package installer for Python and then we will install the `Pandas` and `NumPy` using micropip. **Run** the query to install the packages. + ```python + import micropip + await micropip.install('pandas') + await micropip.install('numpy') + ``` + +
+ + Import external libraries using RunPy + +
+ +:::tip +Enable the **Run this query on application load?** option to make the packages available throughout the application. +::: + +## Examples + +### Array of random numbers of using NumPy + +- Let's create a **RunPy** query that will use **random** module from the **NumPy** package and the query will generate array of random numbers. + ```python + from numpy import random + + x = random.binomial(n=10, p=0.5, size=10) + + print(x) + ``` + +
+ + Import external libraries using RunPy + +
+ +:::info +You can check the output on the browser's console. +::: + +### Parse CSV data + +- Let's create a RunPy query that will parse the data from the csv file. In this query we will use `StringIO`, `csv`, and `Pandas` module. + ```python + from io import StringIO + import csv + import pandas as pd + + scsv = components.filepicker1.file[0].content + + f = StringIO(scsv) + reader = csv.reader(f, delimiter=',') + + df = pd.DataFrame(reader) + + print(df.info()) + print(df) + ``` + +
+ + Import external libraries using RunPy + +
+ +- Add a file picker component on the canvas and set a event handler for **On file loaded** event to **Run Query** that we created for parsing the data. +
+ + Import external libraries using RunPy + +
+ +- Finally, let's load a csv file on the file picker and check the output by the RunPy query on the browser console. +
+ + Import external libraries using RunPy + +
+ \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/intentionally-fail-js-query.md b/docs/versioned_docs/version-2.23.0/how-to/intentionally-fail-js-query.md new file mode 100644 index 0000000000..bc7750ec4c --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/intentionally-fail-js-query.md @@ -0,0 +1,23 @@ +--- +id: intentionally-fail-js-query +title: Intentionally fail a RunJS query +--- + +In this how-to guide, we will create a RunJS query that will throw an error. + +- Create a RunJS query and paste the code below. We will use the constructor `ReferenceError` since it is used to create a range error instance. + ```js + throw new ReferenceError('This is a reference error.'); + ``` + +- Now, add a event handler to show an alert when the query fails. **Save** the query and **Run** it. + +
+ + Intentionally fail a RunJS query + +
+ +:::info +Most common use-case for intentionally failing a query is **debugging**. +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/loading-image-pdf-from-db.md b/docs/versioned_docs/version-2.23.0/how-to/loading-image-pdf-from-db.md new file mode 100644 index 0000000000..2028f8e5b2 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/loading-image-pdf-from-db.md @@ -0,0 +1,45 @@ +--- +id: loading-image-pdf-from-db +title: Loading image/PDF from base64 string +--- + +In this how-to guide we will see how we can load an image or PDF file using the base64 string available on the database. In this how-to, we have used the postgres database which already has the base64 strings for the image or the PDF files available. + +- Let's drag a **filepicker** component onto the canvas, and pick one image and one pdf file +
+ + Loading image from base64 string + +
+ +- Now, create a query for inserting an image from the filepicker. As you can see in the screenshot below, we are using the **exposed variable** of the filepicker component to retrieve the **base64** data of the uploaded files. +
+ + Loading image from base64 string + +
+ +- Create another query for returning the data from the database and we will use this base64 data returned in this query to display on the image and pdf components. +
+ + Loading image from base64 string + +
+ +- Drag the image and a PDF component on the canvas. Edit the property of the PDF component and in the **file URL** enter: + ```js + {{'data:image/png;base64,' + queries.get.data[7].pdf}} + ``` + Similarly for the image component: + ```js + {{'data:image/jpeg;base64,' + queries.get.data[7].image}} + ``` +
+ + Loading image from base64 string + +
+ +:::info +You can also use transformations in the query response and concat `data:image/jpeg;base64,` to the base64 data. +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/run-action-from-runjs.md b/docs/versioned_docs/version-2.23.0/how-to/run-action-from-runjs.md new file mode 100644 index 0000000000..9fd47278a0 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/run-action-from-runjs.md @@ -0,0 +1,218 @@ +--- +id: run-actions-from-runjs +title: Run Actions from RunJS query +--- + +# Run `Actions` from RunJS query + +Now you can trigger all the `actions` available in ToolJet from within the `RunJS` query. This guide includes the syntax for each action along with the example. + +### Run Query + +**Syntax:** + +```js +queries.queryName.run() +``` +or +```js +await actions.runQuery('queryName') +``` + +**Example:** In the screenshot below, we are triggering the two different queries `customers` and `getData` using the two different syntax available for `Run Query` action. + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/runquery.png) + +
+ +### Set Variable + +**Syntax:** + +```javascript +actions.setVariable(variableName, variableValue) +``` + +**Example:** In the screenshot below, we are setting the two variables `test` and `test2`. `test` variable includes a numerical value so we haven't wrapped it inside the quotes but the variable `test2` is a string so we have wrapped it in quotes. + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/setvariable.png) + +
+ +### Unset Variable + +**Syntax:** + +```javascript +actions.unSetVariable(variableName) +``` + +**Example:** In the screenshot below, we are unsetting the variable `test2` that we created in the previous step. + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/unsetvariable.png) + +
+ +### Logout + +**Syntax:** + +```javascript +actions.logout() +``` + +**Example:** Triggering `actions.logout()` will log out the current logged in user from the ToolJet and will redirect to sign in page. + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/logout.png) + +
+ +### Show Modal + +**Syntax:** + +```javascript +actions.showModal('modalName') +``` + +**Example:** In the screenshot below, there is a modal on the canvas (renamed it to `formModal` from `modal1`) and we are using RunJS query to show the modal. + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/showmodal.png) + +
+ +### Close Modal + +**Syntax:** + +```javascript +actions.closeModal('modalName') +``` + +**Example:** In the screenshot below, we have used RunJS query to close the modal that we showed up in previous step. + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/closemodal.png) + +
+ +### Set Local Storage + +**Syntax:** + +```javascript +actions.setLocalStorage('key','value') +``` + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/setlocalstorage.png) + +
+ +### Copy to Clipboard + +**Syntax:** + +```javascript +actions.copyToClipboard('contentToCopy') +``` + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/copytoclipboard.png) + +
+ +### Generate File + +**Syntax:** + +```js +actions.generateFile('fileName', 'fileType', 'data') +``` +`fileName` is the name that you want to give the file(string), `fileType` can be `csv`, `plaintext`, or `pdf` and the `data` is the data that you want to store in the file. + +Example for generating CSV file: +```js +actions.generateFile('csvfile1', 'csv', '{{components.table1.currentPageData}}') // generate a csv file named csvfile1 with the data from the current page of table +``` +Example for generating Text file: +```js +actions.generateFile('textfile1', 'plaintext', '{{JSON.stringify(components.table1.currentPageData)}}') // generate a text file named textfile1 with the data from the current page of table (stringified) +``` +Example for generating PDF file: +```js +actions.generateFile('Pdffile1', 'pdf', '{{components.table1.currentPageData}}') // generate a text file named Pdffile1 with the data from the current page of table +``` + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/generatefile.png) + +
+ +### Go to App + +**Syntax:** + +```javascript +actions.goToApp('slug',queryparams) +``` + +- `slug` can be found in URL of the released app after the `application/`, or in the `Share` modal +- `queryparams` can be provided like this `[{"key":"value"}, {"key2":"value2"}]` + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/gotoapp1.png) + +
+ +### Show Alert + +**Syntax:** + +```javascript +actions.showAlert(alert type , message ) // alert types are info, success, warning, and danger + +ex: +actions.showAlert('error' , 'This is an error' ) +``` + +
+ +![ToolJet - How To - Run Actions from RunJS query](/img/how-to/run-actions-from-runjs/showalert.png) + +
+ +## Run multiple actions from runjs query + +To run multiple actions from a runjs query, you'll have to use **async-await** in the function. + +Here is a example code snippet for running the queries and showing alert after specific intervals. Check the complete guide on running queries at specified intervals **[here](/docs/how-to/run-query-at-specified-intervals)**. + +```js +actions.setVariable('interval',setInterval(countdown, 5000)); +async function countdown(){ + await queries.restapi1.run() + await queries.restapi2.run() + await actions.showAlert('info','This is an information') +} +``` + + + + + diff --git a/docs/versioned_docs/version-2.23.0/how-to/run-query-at-specified-intervals.md b/docs/versioned_docs/version-2.23.0/how-to/run-query-at-specified-intervals.md new file mode 100644 index 0000000000..50ff8b5f3f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/run-query-at-specified-intervals.md @@ -0,0 +1,51 @@ +--- +id: run-query-at-specified-intervals +title: Run query at specified intervals +--- + +In this how-to guide, we will learn how to make a query trigger at the specific intervals. + +- Let's go to the ToolJet dashboard and **create a new application** +- Once the app builder opens up, drag a **table** component to canvas +- Now, create a new REST API query from the query panel at the bottom of the app builder. We will be using the data from the mock **REST API** and then load the data on the table. Let's create a REST API, choose `GET` method from the dropdown, enter the endpoint `(https://jsonplaceholder.typicode.com/posts)`, name the query `post` and then **save and run** it +
+ + REST API query + +
+- Go to the **Table properties** and add connect the query data to table by adding value to **table data** property which is `{{queries.post.data}}` +
+ + REST API query + +
+ +- Now, we will create a RunJS query that will first set a variable called `interval` which will include the value returned by the `setInterval()` method that calls a function `countdown` at specified intervals. The countdown function has the code to trigger the `post` query that we created in the previous step. + + ```js + actions.setVariable('interval',setInterval(countdown, 5000)); + function countdown(){ + queries.post.run() + } + ``` + - Or use **async**-**await** in the function, if you're triggering multiple actions: + ```js + actions.setVariable('interval',setInterval(countdown, 5000)); + async function countdown(){ + await queries.restapi1.run() + await queries.restapi2.run() + await actions.showAlert('info','This is an information') + } + ``` +- Go to the **Advanced** tab of the query, enable `Run query on page load?` this will trigger this RunJS query when the app is loaded. Name the query as `set` and **Save** it. Note that you will have to save the query and not `Save and Run` because doing it will trigger the query and you won't be able to stop the query unless you reload the page or go back to dashboard. +
+ + REST API query + +
+- To prevent the query from triggering indefinitely, we will create another RunJS query that will make use of `clearInterval()` method. In this method we will get the value from the variable that we created in `set` query. Save this query as `clear`. + ```js + clearInterval(variables.interval) + ``` +- Finally, let's add a **button** on to the canvas and add the **event handler** to the button to run the `clear` query. +- Now, whenever the app will be loaded the **set** query will be triggered and will keep triggering the `post` query at the specified intervals. Whenever the user wants to **stop** the query they can click on the **button** to trigger the **clear** query which will clear the interval. diff --git a/docs/versioned_docs/version-2.23.0/how-to/s3-custom-endpoint.md b/docs/versioned_docs/version-2.23.0/how-to/s3-custom-endpoint.md new file mode 100644 index 0000000000..da3d77558c --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/s3-custom-endpoint.md @@ -0,0 +1,18 @@ +--- +id: s3-custom-endpoints +title: Use custom endpoint for s3 hosts +--- + +In this how-to guide, we will see how we can connect to different **S3 compatible object storages** using the custom endpoint. In this guide, we are using Minio since it is an S3-compatible object storage. + +- Go to the ToolJet dashboard, and create a new application +- On the left-sidebar, go to the **Sources** and add a new AWS S3 datasource +- Now the connection modal will pop-up +
+ + Custom Endpoint - S3 hosts + +
+- To get the **Credentials** which is **Access Key** and **Secret Key**, you'll need to go to the Minio console to generate the keys +- Enable the **Custom Endpoint** toggle switch, and enter the custom host URL i.e where your Minio server API is exposed +- Once entered the details, you can click on the **Test Connection** button to check the connection \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/serverside-pagination.md b/docs/versioned_docs/version-2.23.0/how-to/serverside-pagination.md new file mode 100644 index 0000000000..ed6536c270 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/serverside-pagination.md @@ -0,0 +1,68 @@ +--- +id: use-server-side-pagination +title: Using server side pagination for efficient data handling in tables +--- + +In this guide we will learn how to use server side pagination in table component. This will be helpful if you have a large data set and you want to load data in chunks. This will also help you to improve the performance of your application. This guide will be helpful if you are using datasources like MySQL, PostgreSQL, MSSQL, MongoDB, etc. in which you can use `limit` and `offset` to fetch data in chunks. We have also included an example to load data from Google Sheets in chunks. + +## Loading data from PostgreSQL in chunks + +- Let's say you have a table `users` in your PostgreSQL database and you want to load data from this table in chunks. You can use `limit` and `offset` to fetch data in chunks. Here is the SQL query to fetch data in chunks: + ```sql + SELECT * + FROM users + ORDER BY id + LIMIT 100 OFFSET {{(components.table1.pageIndex-1)*100}}; + ``` + + The query will fetch 100 rows at a time from the postgresql users table, and the number of rows returned is determined by the current value of `pageIndex`(exposed variable) in the Table component. + + 1. `ORDER BY id`: This part of the query specifies the ordering of the result set. It orders the rows based on the `id` column. You can replace `id` with the appropriate column name based on how you want the rows to be ordered. + + 2. `LIMIT 100`: The `LIMIT` clause limits the number of rows returned to 100. This means that each time the query is executed, it will fetch 100 rows from the table. + + 3. `OFFSET {{(components.table1.pageIndex-1)*100}}`: The `OFFSET` clause determines where to start fetching rows from the result set. In this case, the offset value is calculated based on the `pageIndex`(exposed variable) in the Table component. The formula `(components.table1.pageIndex-1)*100` calculates the starting row number for the current page. Since the index is 1-based, we subtract 1 from `pageIndex` to convert it to a 0-based index. Then we multiply it by 100 to get the offset for the current page. For example, if `pageIndex` is 1, the offset will be 0, which means it will fetch rows from the first 100 rows. If `pageIndex` is 2, the offset will be 100, which means it will fetch rows from rows 101 to 200, and so on. + +- Create a new query that will return the count of the records on the `users` table in postgresql db. This query will be used to calculate the total number of pages in the Table component. Here is the SQL query to fetch the count of records: + ```sql + SELECT COUNT(*) + FROM users; + ``` + - Enable the option to run the query on page load so that the query is executed when the app loads. + - Add an event handler to run the query that fetches data from the PostgreSQL table and then save the changes. + - Once the count query is created, execute it to get the total number of records. You can dynamically access the count of records using `{{queries..data[0].count}}`. + +**Now, let's edit the properties of the Table component:** +- Set the value of the **Table data** property to `{{queries..data}}` +
+ + Table data + +
+ +- Enable the **server-side pagination** option +- Click on the `Fx` next to **Enable previous page button** and set it's value to `{{components.table1.pageIndex >=2 ? true : false}}`. This condition disables the previous page button when the current page is page `1`. +- Click on the `Fx` next to **Enable next page button** and set it's value to `{{components.table1.pageIndex < queries..data[0].count/100 ? true : false}}`. This condition disables the next page button when the current page is the last page. +- Set the value of the **Total records server side** property to `{{queries..data[0].count}}`. This will set the total number of records in the Table component. +
+ + Table data + +
+ +- Now, the last step is to set the **loading state** and add the **event handler**: + - Loading State: Set the loading state property to `{{queries..isLoading}}`. This will show the loading indicator on the table component when the query is executing. + - Event Handler: Select the **Page changed** event and choose the **Run Query** action. Then, select the **Query** from the dropdown that fetches data from the PostgreSQL table +
+ + Table data + +
+ +Now, whenever the page is changed, the query will be executed, and the data will be fetched from the PostgreSQL table in chunks. + +
+ +Table data + +
diff --git a/docs/versioned_docs/version-2.23.0/how-to/upload-files-aws.md b/docs/versioned_docs/version-2.23.0/how-to/upload-files-aws.md new file mode 100644 index 0000000000..1543d8a928 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/upload-files-aws.md @@ -0,0 +1,137 @@ +--- +id: upload-files-aws +title: Upload files on AWS S3 bucket +--- + +# Upload and download files on AWS S3 bucket + +This guide will help you in quickly building a basic UI for uploading or downloading files from AWS S3 buckets. + +Before building the UI, check out the **[docs for AWS S3 data source](/docs/data-sources/s3)** to learn about setting up AWS S3 and adding the data source. + +Once you have successfully added the AWS data source, build a basic UI using the following widgets: +- **Dropdown**: For selecting a bucket in S3 storage. +- **Table**: For listing all the objects inside the selected bucket in dropdown. +- **Text Input**: For getting a path for the file that is to be uploaded. +- **File picker**: For uploading the file. +- **Button**: This will be used to fire the upload query. + +
+ +![ToolJet - How To - Upload files on AWS S3 bucket](/img/how-to/upload-files-aws/ui.png) + +
+ +## Queries + +We'll create the following queries: + +1. **getBuckets** +2. **listObjects** +3. **uploadToS3** +4. **download** + +### getBuckets + +This query will fetch the list of all the buckets in your S3. Just create a new query, select AWS S3 data source, and choose **List buckets** operation. Name the query **getBuckets** and click **Save**. + +
+ +![ToolJet - How To - Upload files on AWS S3 bucket](/img/how-to/upload-files-aws/getBuckets.png) + +
+ +Now, let's edit the properties of **dropdown** widget. + +- **Label**: Set the label as Bucket. +- **Option values**: Set option values as `{{queries.getBuckets.data.Buckets.map(bucket => bucket['Name'])}}`. We're mapping the data returned by the query as the returned data is array of abjects. +- **Option label**: Set option values as `{{queries.getBuckets.data.Buckets.map(bucket => bucket['Name'])}}`. This will display the same option label as option values. + +You can later add an event handler for running the **listObject** query whenever an option is selected from the dropdown. + +
+ +![ToolJet - How To - Upload files on AWS S3 bucket](/img/how-to/upload-files-aws/dropdown.png) + +
+ +### listObjects + +This query will list all the objects inside the selected Bucket in dropdown. Select **List objects in a bucket** operation, enter `{{components.dropdown1.value}}` in the Bucket field - this will dynamically get the field value from the selected option in dropdown. + +
+ +![ToolJet - How To - Upload files on AWS S3 bucket](/img/how-to/upload-files-aws/listObjects.png) + +
+ +Edit the properties of **table** widget: +- **Table data**: `{{queries.listObjects.data['Contents']}}` +- **Add Columns**: + - **Key**: Set the **Column Name** to `Key` and **Key** to `Key` + - **Last Modified**: Set the **Column Name** to `Last Modified` and **Key** to `LastModified` + - **Size**: Set the **Column Name** to `Size` and **Key** to `Size` +- Add a **Action button**: Set button text to **Copy signed URL**, Add a handler to this button for On Click event and Action to Copy to clipboard, in the text field enter `{{queries.download.data.url}}` - this will get the download url from the **download** query that we will create next. + +
+ +![ToolJet - How To - Upload files on AWS S3 bucket](/img/how-to/upload-files-aws/table.png) + +
+ +### download + +Create a new query and select **Signed URL for download** operation. In the Bucket field, enter `{{components.dropdown1.value}}` and in Key enter `{{components.table1.selectedRow.Key}}`. + +
+ +![ToolJet - How To - Upload files on AWS S3 bucket](/img/how-to/upload-files-aws/download.png) + +
+ +Edit the **properties** of the table, add a Event handler for running the `download` query for `Row clicked` event. This will generate a signed url for download every time a row is clicked on the table. + +### uploadToS3 + +Create a new query, select the **Upload object** operation. Enter the following values in their respective fields: +- **Bucket**: `{{components.dropdown1.value}}` +- **Key**: {{ components.textinput1.value + '/' +components.filepicker1.file[0].name}}` +- **Content type**: `{{components.filepicker1.file[0].type}}` +- **Upload data**: `{{components.filepicker1.file[0].base64Data}}` +- **Encoding**: `base64` + +
+ +![ToolJet - How To - Upload files on AWS S3 bucket](/img/how-to/upload-files-aws/uploadToS3.png) + +
+ +#### Configure the file picker: + +Click on the widget handle to edit the file picker properties: + +- Change the **Accept file types** to `{{"application/pdf"}}` for the picker to accept only pdf files or `{{"image/*"}}` for the picker to accept only image files . In the screenshot below, we have set the accepted file type property to `{{"application/pdf"}}` so it will allow to select only pdf files: + +
+ +![ToolJet - How To - Upload files using GCS](/img/how-to/upload-files-gcs/result-filepicker.png) + +
+ +- Change the **Max file count** to `{{1}}` as we are only going to upload 1 file at a time. + +- Select a pdf file and hold it in the file picker. + +:::info + File types must be valid **[MIME](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types)** type according to input element specification or a valid file extension. + + To accept any/all file type(s), set `Accept file types` to an empty value. +::: + +
+ +![ToolJet - How To - Upload files using GCS](/img/how-to/upload-files-gcs/config-filepicker.png) + +
+ +Final steps, go to the **Advanced** tab of the **uploadToS3** query and add a query to run **listObjects** query so that whenever a file is uploaded the tabled is refreshed. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/upload-files-gcs.md b/docs/versioned_docs/version-2.23.0/how-to/upload-files-gcs.md new file mode 100644 index 0000000000..1a298174ec --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/upload-files-gcs.md @@ -0,0 +1,73 @@ +--- +id: upload-files-gcs +title: Upload files using GCS +--- + +# Upload files using GCS + +In this guide, we are going to create an interface to upload PDFs to Google Cloud Storage. + +Before adding the new data source we will need to have a private key for our GCS bucket and make sure the key has the appropriate rights. + +## Setting up Google Cloud Storage data source + +1. Go to the data source manager on the left-sidebar and click on the `+` button. +2. Add a new GCS data source from the **APIs** section in modal that pops up. +3. Enter the **JSON private key for service account** and test the connection. +4. Click on **Save** to add the data source. + +
+ +![ToolJet - How To - Upload files using GCS](/img/how-to/upload-files-gcs/adding-account.png) + +
+ +## Adding a file picker + +1. Drag and drop the **file picker** widget on the canvas +2. Configure the file picker: + - Change the **Accept file types** to `{{"application/pdf"}}` for the picker to accept only pdf files. In the screenshot below, we have set the accepted file type property to `{{"application/pdf"}}` so it will allow to select only pdf files: + +
+ +![ToolJet - How To - Upload files using GCS](/img/how-to/upload-files-gcs/result-filepicker.png) + +
+ + - Change the **Max file count** to `{{1}}` as we are only going to upload 1 file at a time. + +3. Select a pdf file and hold it in the file picker. + +:::info + File types must be valid **[MIME](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types)** type according to input element specification or a valid file extension. + + To accept any/all file type(s), set `Accept file types` to an empty value. +::: + +
+ +![ToolJet - How To - Upload files using GCS](/img/how-to/upload-files-gcs/config-filepicker.png) + +
+ +## Creating a query + +1. Click on the `+` button of the query manager at the bottom panel of the editor and select the GCS data source +2. Select **Upload file** operation and enter the required parameters: +- Bucket: `gs://test-1` +- File Name: `{{components.file1.file[0]['name']}}` +- Content Type: `{{components.file1.file[0]['type']}}` +- Upload data: `{{components.file1.file[0]['base64Data']}}` +- Encoding: `base64` +3. Click on **Save** to create the query + +## Running the query +1. Add a **button** that will fire the query to upload the file +2. Edit the properties of the button and add a **event handler** to **Run the query** on **On-Click** event. +3. Click on **Button** to fire the query, this will upload the pdf file that you selected earlier through the file picker and will upload it on the GCS. + +
+ +![ToolJet - How To - Upload files using GCS](/img/how-to/upload-files-gcs/final-result.png) + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/use-axios.md b/docs/versioned_docs/version-2.23.0/how-to/use-axios.md new file mode 100644 index 0000000000..a1bd6cc572 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/use-axios.md @@ -0,0 +1,62 @@ +--- +id: use-axios-in-runjs +title: Use Axios in RunJS +--- + +ToolJet allows you to utilize the three [libraries](/docs/data-sources/run-js#libraries) - **Moment.js**, **Lodash**, and **Axios**. In this guide, we will see a few examples on how to use **Axios** library using RunJS query. + +**[Axios](https://axios-http.com/docs/intro)** is a promise-based HTTP library that lets developers make requests to either their own or a third-party server to fetch data. It offers different ways of making requests such as `GET`, `POST`, `PUT/PATCH`, and `DELETE`. + +## Making Axios HTTP requests + +In this section, you will make `GET` and `PUT` requests. You will be using a free “fake” API: **[JSONPlaceholder](https://jsonplaceholder.typicode.com/)**. + +### Making a GET request + +Create a RunJS query and copy the code below: + +```javascript +var url = "https://jsonplaceholder.typicode.com/users/1"; + +var data = (await axios.get(url)).data; + +return data +``` + +In the code snippet, a variable url is declared which is assigned the URL of the JSON API. Then another variable is declared which sends a GET request to the JSON API. Save the query and hit Preview to view the data returned by the API. + +
+ +Use Axios in RunJS + +
+ +### Making a POST request + +A post request is a little different because you will be passing some data in the request to the server. In the request, you will be creating a user and passing in details for that user. The code snippet for the request will look something like this: + +```javascript +var url = "https://jsonplaceholder.typicode.com/users"; + +var data = axios.post(url,{ + id: 11, + name: "Shubhendra", + username: "camelcaseguy", + email: "shubhendra@tooljet.com",}) + +return data +``` + +The Axios POST request uses an object after the request URL to define the properties you want to create for your user. Once the operation has been completed, there will be a response from the server. In the screenshot below, you can see the that it return **Status: 201** which means the request has been fulfilled and resulted in a new resource being created. + +
+ +Use Axios in RunJS + +
+ +:::tip +Check out the tutorial on **[Build GitHub star history tracker](https://blog.tooljet.com/build-github-stars-history-app-in-5-minutes-using-low-code/)** that utilizes the axios library. +::: + + diff --git a/docs/versioned_docs/version-2.23.0/how-to/use-form-component.md b/docs/versioned_docs/version-2.23.0/how-to/use-form-component.md new file mode 100644 index 0000000000..414afa7f5d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/use-form-component.md @@ -0,0 +1,90 @@ +--- +id: use-form-component +title: Use form component +--- + +In this how-to guide, we will be building a simple application that will leverage the form component for adding a record into the database. For this guide, we will be using Google Sheet datasource to read and write data. + +
+ +how-to use form + +
+ +- Let's connect to the datasource i.e. Google Sheets and give the `Read and Write` permission. +
+ + how-to use form + +
+- Now, drag a table on the canvas and add the form component next to it. +
+ + how-to use form + +
+ +- Currently, the table component is populated with the sample data that it has by default. Let's create a **new query** from the query panel and choose the **Google Sheet** datasource. +
+ + how-to use form + +
+ +- The query will read the data from the database and we will use the returned data to populate the table. Go to the **table** property and in the table data value enter **{{queries.queryname.data}}** where queryname is the name of the query that we created in previous step. +
+ + how-to use form + +
+ +- let's go to the form and add the components inside it required for adding a record into the database. +
+ + how-to use form + +
+ +- Since our database record has five fields **Id**, **Title**, **Price**, **Category** and **Image** we will add the components in the form for the same. The form already comes with a Submit button so we don't have to add that. For Id, Title, and Image we will use text-input, for Price we will use number-input and for category we can use dropdown components. +
+ + how-to use form + +
+ +- Before editing the form properties, let's make a few changes in the components that we have added inside it. First edit the property of the **number input** and set the default value, maximum and minimum value, and then edit the **dropdown** component and set the option values and option labels. +
+ + how-to use form + +
+ +- Now, we can edit the properties of the form component. Go to its properties, in **Button To Submit Form** select the button1 that was already there on the form. Go to event handler, and for **On submit** event we will **run the query** that will get the data from the form and will store into the database. +
+ + how-to use form + +
+ +- Let's create a query that will get the data from the form and add a record in the sheet. Create a new google sheet query and from the operation choose **Append data to a spreadsheet** + ```js + [ + { + "id":"{{components.form1.data.textinput1.value}}", + "title":"{{components.form1.data.textinput2.value}}", + "price":"{{components.form1.data.numberinput1.value}}", + "category":"{{components.form1.data.dropdown1.value}}", + "image":"{{components.form1.data.textinput4.value}}" + } + ] + ``` + +- Once done, save the query and add it to the Form's event handler. + +- Now, this application can be used to load the data from the Google Sheet and the form can be used to append more records to the sheet. + +:::tip +- Make sure to enable **Run query on page load?** option of the **read** query to populate the table everytime the app is loaded +- You can also add a event handler on the **append** query to run the **read** query when **append** is successful, this will update the table data when the append is done +- Learn more about the connecting Google sheet datasource and the CRUD **operations** available [here](/docs/data-sources/google.sheets). +::: diff --git a/docs/versioned_docs/version-2.23.0/how-to/use-inspector.md b/docs/versioned_docs/version-2.23.0/how-to/use-inspector.md new file mode 100644 index 0000000000..872b7020a5 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/use-inspector.md @@ -0,0 +1,124 @@ +--- +id: use-inspector +title: Use Inspector +--- + +In this how-to guide, we will take a look at **Inspector** of the app-builder and see how it can be helpful in building applications. + +The Inspector can be used to inspect the data of the queries, properties and values of the components that are there on the canvas, ToolJet's global variables and the variables that have been set by the user. + +
+ +How to - Use Inspector + +
+ +## Layout + +Let's take a look at the layout of the Inspector panel: + +- On the top-right, we have a **Pin** button to pin and unpin the inspector panel. This button can be useful when you want to see the live changes on inspector while triggering a query or performing some event/action on any component. +
+ + How to - Use Inspector + +
+ +- At the bottom right, you can click and hold to resize the inspector. +
+ + How to - Use Inspector + +
+ +- On hovering an item on the inspector, the **copy path** and **copy value** buttons will appear on the right of the item. Copying the path and pasting it onto the component property or query parameter will always get the dynamic value but using `Copy value` option will copy the current value of the item and will be static when pasted in a component property or query parameter. +
+ + How to - Use Inspector + +
+ +## Sections + +The Inspector panel has the following 4 main sections: + +- **[queries](#queries)** +- **[components](#components)** +- **[globals](#globals)** +- **[variables](#variables)** + +### queries + +The queries section can be used to inspect the query details but the data of the query will only be available if query has been run/triggered. + +:::tip +You can click on the Preview button of the button on the query manager to check the response(data) of the query without triggering it. +::: + +#### Example + +- Let's create a new query using a mock REST API endpoint (`https://fakestoreapi.com/products`). +- Now go to the Inspector and expand the **queries** section, you'll see an entry inside queries with the query name that we created in the previous step i.e. `restapi1` but if you notice the `data` and `rawData` object is empty i.e. 0 entry. The reason is the data won't show up on the inspector unless query is run. +
+ + How to - Use Inspector + +
+ +- Let's pin the inspector and then trigger the query from the query manager. You'll see that as soon as the query is triggered the `rawData` and `data` object in the query has 20 entries and the query has more properties like `request`, `response`, and `responseHeaders` data. +
+ + How to - Use Inspector + +
+ +### components + +components section can be used to inspect the properties and values of the components that are added onto the canvas. + +
+ +How to - Use Inspector + +
+ +### globals + +
+ +How to - Use Inspector + +
+ +The globals section consists of the following sub-sections: + +- **currentUser:** The currentUser object contains information about the currently logged-in user, such as their **email**, **firstName**, and **lastName**. +- **groups:** The groups array contains the names of the groups to which the currently logged-in user belongs. Note: The `all_users` group is a default group for everyone. +- **theme:** The theme object contains the name of the currently active theme. +- **urlparams:** The urlparams contain information about the URL parameters of the application. +- **environment:** This variable holds two keys: **id** and **name**. The **id** is a unique identifier generated automatically, and the **name** holds the name of the currently opened environment of the app version. +- **modes:** This variable holds one of three values: **edit**, **preview**, or **view**, depending on the current state of the app. If the app is opened in editing mode, the mode will be set to **edit**. If the app is opened by clicking the preview button on the app builder, the variable will be set to **preview**. If the app is opened using the URL from the **Share** modal, the mode will be set to **view**. + +:::tip +The **environment** and **mode** variables are only available in **ToolJet Enterprise Edition v2.2.3** and above. + +
+ +How to - Use Inspector + +
+::: + +:::info +All the global variables can be accessed anywhere within ToolJet applications. Here's an **[example use-case](/docs/how-to/access-currentuser)** that demonstrates the usage of these variables. +::: + +### variables + +variables section include all the variables set by the user in the application. These variables can be set from the event handlers from the components or from the queries. The variables will be in the **key-value** pair and can be accessed throughout the application. + +:::info + +- Setting variables from the [event handler](/docs/actions/set-variable) +- Setting variables from the [Run JavaScript code](/docs/how-to/run-actions-from-runjs#set-variable) + ::: diff --git a/docs/versioned_docs/version-2.23.0/how-to/use-s3-presigned-url-to-upload-docs.md b/docs/versioned_docs/version-2.23.0/how-to/use-s3-presigned-url-to-upload-docs.md new file mode 100644 index 0000000000..61dd6448d3 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/use-s3-presigned-url-to-upload-docs.md @@ -0,0 +1,173 @@ +--- +id: use-s3-signed-url-to-upload-docs +title: Use S3 signed URL to upload documents +--- + +# Use S3 signed URL to upload documents + +In this how-to guide, you'll learn to upload documents to S3 buckets using the **S3 signed URL** from a ToolJet application. + +For this guide, We are going to use one of the existing templates on ToolJet: **S3 File explorer** + +:::info using Templates +On ToolJet Dashboard, Click on the down arrow on the right of the **New App** button, from the dropdown choose the **Choose from template** option. +::: + +
+ +Use S3 pre-signed URL to upload documents: Choose template + +
+ +- Once you've created a new app using the template, you'll be prompted to create a **new version** of the existing version. After creating a new version, you'll be able to make changes in the app. + +
+ + Use S3 pre-signed URL to upload documents: new version + +
+ +- Go to the **datasource manager** on the left-sidebar, you'll find that the **AWS S3 datasource** is already added. All you need to do is update the datasource **credentials**. + + :::tip + Check the [AWS S3 datasource reference](/docs/data-sources/s3) to learn more about connnection and choosing your preferred authentication method. + ::: + +
+ + Use S3 pre-signed URL to upload documents: add datasource + +
+ +- Once the datasource is connected successfully, go to the query manager and **Run** the **getBuckets** query. The operation selected in the getBuckets query is **List Buckets** which will fetch an array of all the buckets. + +
+ + Use S3 pre-signed URL to upload documents: getBuckets query + +
+ +- Running the **getBuckets** query will load all the buckets in the dropdown in the app. + +
+ + Use S3 pre-signed URL to upload documents: loading buckets + +
+ +- Select a **bucket** from the dropdown and click on the **Fetch files** button to list all the files from the selected bucket on the table. The **Fetch files** button has the event handler added that triggers the **s32** query, the **s32** query uses the **List objects in a bucket** operation, and the bucket field in the query gets the value dynamically from the dropdown. + +
+ + Use S3 pre-signed URL to upload documents: list objects in a bucket + +
+ +- Let's go to the **uploadToS3** query and update the field values: + - **Operation**: Signed URL for upload + - **Bucket**: `{{components.dropdown1.value}}` this will fetch the dynamic value from the dropdown + - **Key**: `{{components.filepicker1.file[0].name}}` this will get the file name from the filepickers exposed variables + - **Expires in:** This sets an expiration time of URL, by default its `3600` seconds (1 hour) + - **Content Type**: `{{components.filepicker1.file[0].type}}` this will get the file type from the filepickers exposed variables + +
+ + Use S3 pre-signed URL to upload documents + +
+ +- Create two **RunJS** queries: + - Create a **runjs1** query and copy-paste the code below. This query gets the **base64data** from the file picker and convert the file's `base64Data` to into `BLOB`, and returns the file object. + ```js + const base64String = components.filepicker1.file[0].base64Data + const decodedArray = new Uint8Array(atob(base64String).split('').map(c => c.charCodeAt(0))); + const file = new Blob([decodedArray], { type: components.filepicker1.file[0].type }); + const fileName = components.filepicker1.file[0].name; + const fileObj = new File([file], fileName); + + return fileObj + ``` + +
+ + Use S3 pre-signed URL to upload documents + +
+ + - Create another **runjs2** query and copy-paste the code below. This query gets the data(file object) returned by the first runjs query, the url returned by the **uploadToS3** query, and then makes PUT request. + ```js + const file = queries.runjs2.data + const url = queries.s31.data.url + + fetch(url, { + method: 'PUT', + body: file, + mode: 'cors', + headers: { + 'Access-Control-Allow-Origin': '*', + 'Content-Type': 'application/json' + } + }) + .then(response => console.log('Upload successful!')) + .catch(error => console.error('Error uploading file:', error)); + ``` + :::warning Enable Cross Origin Resource Sharing(CORS) + - For the file to be uploaded successfully, you will need to add the CORS policies from the **Permissions** tab of your **Bucket** settings. Here's a sample CORS: + ```json + [ + { + "AllowedHeaders": [ + "*" + ], + "AllowedMethods": [ + "GET", + "PUT", + "POST" + ], + "AllowedOrigins": [ + "*" + ], + "ExposeHeaders": [] + } + ] + ``` + ::: + +
+ + Use S3 pre-signed URL to upload documents + +
+ +- Go to the **uploadToS3**, scroll down and add an event handler to the **uploadToS3** query. Select the **Query Success** event, **Run Query** as the action, and **runjs1** as the query to be triggered. **Save** the query. +
+ + Use S3 pre-signed URL to upload documents + +
+ +- Let's go to the **runjs1** query and add the event handler to run a query on query success event, similar to how we did in the previous step. In the event handler, choose **runjs2** query. **Save** the query. +
+ + Use S3 pre-signed URL to upload documents + +
+ +- Now, let's go the final query **copySignedURL** that is connected to the table's action button. This query copy's the generated **Signed URL for download** onto the **clipboard**. +
+ + Use S3 pre-signed URL to upload documents + +
+ +- Now that we have updated all the queries, and connected them through the event handlers. We can go ahead and pick a file from the file picker. Click on the file picker, select a file and then hit the **Upload file to S3** button. +
+ + Use S3 pre-signed URL to upload documents + +
+ +- Once the button is clicked, the **uploadToS3** will triggered along with the **runjs1** and **runjs2** queries in sequence since we added them in the event handlers. + +- You can go to the table and click on the **Copy signed URL** action button on the table, this will trigger the **copySignedURL** query and will copy the URL on the clipboard. You can go to another tab and paste the URL to open the file on the browser. + diff --git a/docs/versioned_docs/version-2.23.0/how-to/use-to-py.md b/docs/versioned_docs/version-2.23.0/how-to/use-to-py.md new file mode 100644 index 0000000000..376d26a38f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/how-to/use-to-py.md @@ -0,0 +1,60 @@ +--- +id: use-to-py-function-in-runpy +title: "Use the to_py() Function in RunPy: Converting JavaScript Objects to Python" +--- + +This how-to guide will demonstrate the usage of `to_py()` function in RunPy queries for converting the JavaScript objects to Python. + +## to_py() function + +The **to_py()** function in **Pyodide** is the counterpart of the **to_js()** function. It is used to convert JavaScript objects into their equivalent Python representations. This conversion is necessary when it is required to work with JavaScript objects within the Pyodide environment and manipulate them using Python code. + +Similar to **to_js()**, **to_py()** performs the necessary mapping and conversion of data types between JavaScript and Python. It converts JavaScript objects, arrays, and other JavaScript data structures into their Python equivalents. + +:::tip +Check **[RunPy](/docs/data-sources/run-py)** doc to learn more. +::: + +## Using to_py() function + +Here's an example demonstrating the usage of to_py(): + +```python +import pyodide + +def to_py(js_object): + return dict(js_object) + +my_js_object = {"name": "John", "age": 25, "country": "USA"} + +my_py_dict = to_py(my_js_object) + +my_py_dict +``` + +In this example, a JavaScript object my_js_object is created using the Object.fromEntries() method from JavaScript. It represents a dictionary-like structure. The to_py() function is then used to convert the JavaScript object into a Python dictionary my_py_dict. + +The output will be: +```json +{'name': 'John', 'age': 25, 'country': 'USA'} +``` + +By using to_py(), JavaScript objects can seamlessly convert into Python representations and work with them using Python code within the Pyodide environment. + +Both **to_js()** and **to_py()** functions provide a convenient way to exchange data between Python and JavaScript when working with Pyodide, enabling to leverage the strengths of both languages in a unified environment. + +## Why use of to_py() is required? + +When previewing the results of a RunPy query, the discrepancy between the JSON and Raw tabs can arise due to the way data is converted and displayed in Pyodide. By default, **Python dictionaries** are converted to **Javascript Map objects** in Pyodide. This conversion is performed *to ensure compatibility between the two languages*. + +As a result, when viewing the data in the **JSON** tab, it is presented in the format of JavaScript objects, represented by **()** symbols. On the other hand, the **Raw** tab displays the raw representation of the returned data **[{}, {}, ...],** which may show Python dictionaries in their original form with **{}** symbols. + +In this case, both representations are correct. The JSON tab presents the converted data in a format that is compatible with JavaScript, while the Raw tab displays the original Python dictionaries. The choice depends on the user's specific use case and whether they need to work with the data in a **Javascript context** or **Python context**. + +To ensure consistency between the JSON and Raw representations, **to_js()** function provided by Pyodide can be used to explicitly convert Python dictionaries to JavaScript objects. This will help align the representations and ensure that the data is in the desired format. + +
+ +Use the to_py() Function in runPy: Converting JavaScript Objects to Python + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/marketplace/marketplace_overview.md b/docs/versioned_docs/version-2.23.0/marketplace/marketplace_overview.md new file mode 100644 index 0000000000..4a8f3a9cef --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/marketplace/marketplace_overview.md @@ -0,0 +1,97 @@ +--- +id: marketplace-overview +title: 'Marketplace : Overview' +--- + +# Marketplace : Overview + +With ToolJet Marketplace, ToolJet users can conveniently add custom plugins (datasources) to their workspaces. This feature enables users to create plugins that cater to their specific needs and integrate them seamlessly with ToolJet. + +
+ +Marketplace + +
+ +## Enabling the Marketplace + +To **Enable** the marketplace feature, users need to add the following environment variable to their **[`.env`](/docs/setup/env-vars#marketplace)** file: + +```bash +ENABLE_MARKETPLACE_FEATURE=true +``` + +Once the marketplace feature has been activated, a Marketplace icon will appear on the left-hand sidebar of the dashboard, providing users with access to the Marketplace. + +When running ToolJet locally, ensure that all the plugins are available. Specifically, building the marketplace and then starting the server is mandatory. + +:::info Note +The user logged-in should be the **Administrator** to access the marketplace page. +::: + +
+ +Marketplace + +
+ +## Installing a plugin + +The Marketplace page will contain two tabs: **Installed** and **Marketplace**. + +Under the **Marketplace** tab, you will see a list of all the available plugins that can be installed on the workspace. To install a plugin, click on the **Install** button on the plugin's card. Once the installation is complete, the status will change from Install to **Installed**. + +
+ +Marketplace + +
+ +## Using Marketplace plugins + +You can access any installed plugins by following these steps: + +- Navigate to the **Global Datasources** Page. +- Click on the **Add new datasource** button. +- Open the **Plugins** tab in the modal that appears. +- From here, you can connect to any of the plugins that were installed from the Marketplace. + +
+ +Marketplace + +
+ +- After successfully connecting to a plugin, you can access it under the Global Datasource section when creating queries. + +
+ +Marketplace + +
+ +## Removing a plugin + +:::caution +If you remove a plugin, all the queries associated with it will be eliminated from all the applications. +::: + +To remove a plugin, follow these steps: +- Go to the Marketplace page from the dashboard. +- Go to the **Installed** tab and click on the **Remove** button next to the plugin that you want to remove. +- By doing so, the plugin will be removed from the global datasource section, and no user will be able to establish a connection with it. + +
+ +Marketplace + +
+ +## Available Plugins +- **[GitHub](/docs/marketplace/plugins/marketplace-plugin-github)** +- **[OpenAI](/docs/marketplace/plugins/marketplace-plugin-openai)** +- **[Plivo](/docs/marketplace/plugins/marketplace-plugin-plivo)** + +:::info For Plugin Developers +Refer to the **[Plugin Development guide](/docs/contributing-guide/marketplace/marketplace-setup)** to learn how to create plugins for the ToolJet Marketplace. +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/marketplace/plugins/github.md b/docs/versioned_docs/version-2.23.0/marketplace/plugins/github.md new file mode 100644 index 0000000000..1bc4284a2d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/marketplace/plugins/github.md @@ -0,0 +1,105 @@ +--- +id: marketplace-plugin-github +title: GitHub +--- + +ToolJet can connect to GitHub account to read and write data. In order for ToolJet to access and manipulate data on GitHub, a **GitHub Personal Access Toke**n is necessary to authenticate and interact with the GitHub API. + +
+ +Marketplace: GitHub + +
+ +:::note +Before following this guide, it is assumed that you have already completed the process of **[Using Marketplace plugins](/docs/marketplace/marketplace-overview#using-marketplace-plugins)**. +::: + +## Connection + +For connecting to GitHub, following credentials are required: +- **Personal Access Token**: Generate a Personal Access Token from your **[GitHub Account Settings](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)** + +:::caution +If a Personal Access Token is not provided, the data from the private repositories will not be retrieved via the GitHub Plugin. However, the public repositories data can still be retrieved. +::: + +
+ +Marketplace: GitHub + +
+ +## Supported queries + +- **[Get user info](#get-user-info)** +- **[Get repository](#get-repository)** +- **[Get repository issues](#get-repository-issues)** +- **[Get repository pull requests](#get-repository-pull-requests)** + +
+ +Marketplace: GitHub + +
+ +### Get user info + +All the details regarding the user is retrieved by running this query. + +#### Required parameters: + +- **Username**: To obtain the details, the username of the user must be provided for this field. You can input the username of a GitHub organization or a user for this field. + +
+ +Marketplace: GitHub + +
+ +### Get repository + +All the details regarding the repository are retrieved by running this query. + +#### Required parameters: + +- **Owner**: The owner's name of the repository is required for this field. The owner can either be a GitHub organization or a user. +- **Repository**: Provide the name of the repository of which you want to retrieve the details. + +
+ +Marketplace: GitHub + +
+ +### Get repository issues + +Running this query will retrieve a list of issues from a repository. You can select whether to obtain All, Open, or Closed issues. + +#### Required parameters: + +- **Owner**: The owner's name of the repository is required for this field. The owner can either be a GitHub organization or a user. +- **Repository**: Provide the name of the repository of which you want to retrieve the issues. +- **State**: Choose the state of the issues that you would like to retrieve: All, Open, or Closed. + +
+ +Marketplace: GitHub + +
+ +### Get repository pull requests + +Running this query will retrieve a list of pull requests from a repository. You can select whether to obtain All, Open, or Closed issues. + +#### Required parameters: + +- **Owner**: The owner's name of the repository is required for this field. The owner can either be a GitHub organization or a user. +- **Repository**: Provide the name of the repository of which you want to retrieve the pull requests. +- **State**: Choose the state of the pull requests that you would like to retrieve: All, Open, or Closed. + +
+ +Marketplace: GitHub + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/marketplace/plugins/harperdb.md b/docs/versioned_docs/version-2.23.0/marketplace/plugins/harperdb.md new file mode 100644 index 0000000000..18ed68849b --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/marketplace/plugins/harperdb.md @@ -0,0 +1,272 @@ +--- +id: marketplace-plugin-harperdb +title: HarperDB +--- + +HarperDB is a database and application development platform that is focused on performance and ease of use. With flexible user-defined APIs, simple HTTP/S interface, and a high-performance single-model data store that accommodates both NoSQL and SQL workloads, HarperDB scales with your application from proof of concept to production. ToolJet integrates with HarperDB, providing a streamlined interface for reading and writing data. + +
+ +Marketplace: HarperDB + +
+ +:::note +Before following this guide, it is recommended to check the following doc: **[Using Marketplace plugins](/docs/marketplace/marketplace-overview#using-marketplace-plugins)**. +::: + +## Connection + +To establish a connection with HarperDB, you need the following credentials: +1. **Host**: The hostname or IP address of your HarperDB instance (e.g., `162.156.250.74` or `myinstance.harperdbcloud.com`). +2. **Port**: The port number configured for your server (default is `9925`). If you are using HarperDB Studio(cloud), leave the field empty or set it to `443`. +3. **SSL**: Indicates whether the connection requires SSL encryption. +4. **Username**: Your authentication username for HarperDB instance. +5. **Password**: Your password for authentication (hidden for security purposes). + +
+ +Marketplace: HarperDB + +
+ +## Querying HarperDB +To perform queries on HarperDB, click the `+Add` button in the query manager located at the bottom panel of the app builder. Select the HarperDB from the Global Datasource section in the query editor. + +
+ +Marketplace: HarperDB + +
+ +### SQL mode + +SQL mode enables you to perform various operations on the database using SQL statements. + +- **[Select](#select)** +- **[Insert](#insert)** +- **[Update](#update)** +- **[Delete](#delete)** + +#### Select +The SELECT statement is used to query data from the database. + +Syntax: +```sql +SELECT * FROM sampleorg.people WHERE id = 1 +``` + +
+ +Marketplace: HarperDB + +
+ +#### Insert +The INSERT statement is used to add one or more rows to a database table. + +Syntax: +```sql +INSERT INTO sampleorg.people (id, name, age, country, hobby) VALUE (5, 'Shubh', 26, 'India', 'Football') +``` + +
+ +Marketplace: HarperDB + +
+ +#### Update +The UPDATE statement is used to change the values of specified attributes in one or more rows in a database table. + +Syntax: +```sql +UPDATE sampleorg.people SET hobby = 'chess' WHERE id = 5 +``` + +
+ +Marketplace: HarperDB + +
+ +#### Delete +The DELETE statement is used to remove one or more rows of data from a database table. + +Syntax: +```sql +DELETE FROM sampleorg.people WHERE id = 5 +``` + +
+ +Marketplace: HarperDB + +
+ +### NoSQL mode + +NoSQL mode enables you to perform schema-less storage and retrieval of JSON documents. + +- **[Insert](#insert-nosql)** +- **[Update](#update-nosql)** +- **[Delete](#delete-nosql)** +- **[Search by hash](#search-by-hash)** +- **[Search by value](#search-by-value)** +- **[SeleSearch by conditions](#search-by-conditions)** + +#### Insert (NoSQL) + +Insert operation allows to add one or more rows of data to a database table. + +| Parameters | Description | +| ---------- | ----------- | +| Schema (required) | schema where the table you are inserting records into lives | +| Table (required) | table name where you want to insert records | +| Records (required) | array of one or more records for insert | + +**Example Records:** +```js +[{id: 22, name: "James Scott", age: 26, country:"Italy", hobby: "football"},...] +``` + +
+ +Marketplace: HarperDB + +
+ +#### Update (NoSQL) + +The Update operation modifies the values of specified attributes in one or more rows of a database table based on the hash attribute(primary key) that identifies the rows. + +| Parameters | Description | +| ---------- | ----------- | +| Schema (required) | schema where the table you are updating records into lives | +| Table (required) | table name where you want to update records | +| Records (required) | array of one or more records for update | + +**Example Records:** +```js +[{id:12, name:"Jeff Hannistor"},...] // Record having 12 as Primary key value will be updated +``` + +
+ +Marketplace: HarperDB + +
+ +#### Delete (NoSQL) + +Removes one or more rows of data from a specified table. + +| Parameters | Description | +| ---------- | ----------- | +| Schema (required) | schema where the table you are deleting records into lives | +| Table (required) | table name where you want to delete records | +| Hash Values (required) | array of one or more hash attribute (primary key) values, which identifies records to delete | + +**Example Hash Values:** +```js +[6, 15] // Records having 6 and 15 as Primary key value will be deleted +``` + +
+ +Marketplace: HarperDB + +
+ +#### Search by hash + +Returns data from a table for one or more hash values. + +| Parameters | Description | +| ---------- | ----------- | +| Schema (required) | schema where the table you are searching lives | +| Table (required) | table you wish to search | +| Hash Values (required) | array of hashes to retrieve | +| Table Attributes (required) | define which attributes you want returned. | + +**Example Hash Values:** +```js +[124, 66] // Records having 6 and 15 as Primary key value will be retrieved +``` + +**Example Table Attributes:** +```js +['id', 'name', 'age', 'hobby', 'country'] // Only the provided columns will be retrieved from the table +``` + +
+ +Marketplace: HarperDB + +
+ +#### Search by value + +Returns data from a table for a matching value. + +| Parameters | Description | +| ---------- | ----------- | +| Schema (required) | schema where the table you are searching lives | +| Table (required) | table you wish to search | +| Hash Values (required) | array of hashes to retrieve | +| Search Attribute (required) | attribute you wish to search can be any attribute | +| Search Value (required) | value you wish to search - wild cards are allowed. | +| Table Attributes (required) | define which attributes you want returned. | + +**Example Search Attribute:** +```bash +name +``` + +**Example Search Value:** +```bash +John Doe +or +Joh* // using wild card +``` + +**Example Table Attributes:** +```js +['id', 'name', 'age', 'hobby', 'country'] // Only the provided columns will be retrieved from the table +``` + +
+ +Marketplace: HarperDB + +
+ +#### Search by conditions + +Returns data from a table for one or more matching conditions. + +| Parameters | Description | +| ---------- | ----------- | +| Schema (required) | schema where the table you are searching lives | +| Table (required) | table you wish to search | +| Operator inbetween each condition (optional) | the operator used between each condition - 'And', 'Or'. The default is 'And'. | +| Offset (optional) | the number of records that the query results will skip. The default is 0. | +| Limit (optional) | the number of records that the query results will include. The default is null, resulting in no limit. | +| Table Attributes (required) | define which attributes you want returned. | +| Conditions to filter (required) | the array of conditions objects, to filter by. Must include one or more object in the array. **search_attribute** (required) - the attribute you wish to search, can be any attribute. **search_type** (required) - the type of search to perform - 'equals', 'contains', 'starts_with', 'ends_with', 'greater_than', 'greater_than_equal', 'less_than', 'less_than_equal', 'between'. **search_value** (required) - case-sensitive value you wish to search. If the search_type is 'between' then use an array of two values to search between. Check the example below. | + +**Example Table Attributes:** +```js +['id', 'name', 'age', 'hobby', 'country'] // Only the provided columns will be retrieved from the table +``` + +**Example Conditions to filter:** +```js +[{'search_attribute': 'age', 'search_type': 'between', 'search_value': [20, 28]}, {'search_attribute': 'name', 'search_type': 'contains', 'search_value': 'Ray'}] +``` + +
+ +Marketplace: HarperDB + +
diff --git a/docs/versioned_docs/version-2.23.0/marketplace/plugins/openai.md b/docs/versioned_docs/version-2.23.0/marketplace/plugins/openai.md new file mode 100644 index 0000000000..f61f663860 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/marketplace/plugins/openai.md @@ -0,0 +1,81 @@ +--- +id: marketplace-plugin-openai +title: OpenAI +--- + +ToolJet can connect to OpenAI and utilize two main services: Completions and Chat. With OpenAI's Completions service, ToolJet can generate text automatically based on an initial prompt or context. The Chat service allows users to interact with a chatbot powered by OpenAI's language model. In addition, ToolJet can also leverage the GPT-3 Turbo service from OpenAI, which provides faster and more responsive completions. + +
+ +Marketplace: openai + +
+ +:::note +Before following this guide, it is assumed that you have already completed the process of **[Using Marketplace plugins](/docs/marketplace/marketplace-overview#using-marketplace-plugins)**. +::: + +## Connection + +For connecting to OpenAI, following credentials are required: +- **API key**: API key for OpenAI can be generated here: https://platform.openai.com/account/api-keys +- **Oganization ID**: Find the Organization ID here: https://platform.openai.com/account/org-settings + +
+ +Marketplace: openai + +
+ +## Supported queries + +- **[Completions](#completions)** +- **[Chat](#chat)** + +
+ +Marketplace: openai + +
+ +### Completions + +The purpose of this query is to generate text completions that resemble human writing based on a given prompt. + +#### Required parameters: + +- **Prompt**: OpenAI uses the prompt as a starting point to generate a continuation or completion of the text, which can be in the form of a sentence, paragraph, or even an entire article. The quality and relevance of the generated text output can depend on the quality and specificity of the prompt provided. + +#### Optional parameters: + +- **Max Tokens**: This parameter that specifies the maximum number of tokens to generate in the text completion output. For example, if you set it to 50, then it will generate a text completion that contains up to 50 tokens. +- **Temperature**: Temperature is used to control the creativity and randomness of the generated text. It ranges from 0 to 2, a higher value such as 0.8 will increase the randomness of the output, whereas a lower value such as 0.2 will make it more focused and deterministic. +- **Stop sequence**: the "stop" parameter is used to specify when the API should stop generating text completions. This parameter is optional and can be used to customize the length and quality of the generated text. +- **Suffix**: The suffix that follows the inserted text completion. + +
+ +Marketplace: openai + +
+ +### Chat + +The function of this query is to examine the user's input and generate a suitable response that simulates human-like conversation. + +#### Required parameters: + +- **Prompt**: A prompt is the initial message or question that is provided as input to the chatbot model to start a conversation. + +#### Optional parameters: + +- **Max Tokens**: This parameter that specifies the maximum number of tokens to generate in the text completion output. For example, if you set it to 50, then it will generate a text completion that contains up to 50 tokens. +- **Temperature**: Temperature is used to control the creativity and randomness of the generated text. It ranges from 0 to 2, a higher value such as 0.8 will increase the randomness of the output, whereas a lower value such as 0.2 will make it more focused and deterministic. +- **Stop sequence**: the "stop" parameter is used to specify when the API should stop generating text completions. This parameter is optional and can be used to customize the length and quality of the generated text. +- **Suffix**: The suffix that follows the inserted text completion. + +
+ +Marketplace: openai + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/marketplace/plugins/plivo.md b/docs/versioned_docs/version-2.23.0/marketplace/plugins/plivo.md new file mode 100644 index 0000000000..e600a514bb --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/marketplace/plugins/plivo.md @@ -0,0 +1,52 @@ +--- +id: marketplace-plugin-plivo +title: Plivo +--- + +ToolJet can connect to Plivo account to send SMS. + +
+ +Marketplace: plivo + +
+ +:::note +Before following this guide, it is assumed that you have already completed the process of **[Using Marketplace plugins](/docs/marketplace/marketplace-overview#using-marketplace-plugins)**. +::: + +## Connection + +For connecting to plivo, following credentials are required: +- **Auth Token**: +- **Auth ID**: + +:::info Generating Auth Token/ID +- Navigate to the Plivo Console (https://www.plivo.com/) +- In the console, you will see your auth ID and auth token listed under the "API" section. +- If you don't see your auth ID and auth token, you can generate new ones by clicking on the "Generate New Auth ID/Token" button. +::: + +
+ +Marketplace: plivo + +
+ +## Supported queries + +### Send SMS + +The specified mobile number will receive the SMS upon execution of this query. + +#### Required parameters: + +- **To Number**: +- **From Number**: +- **Body**: + +
+ +Marketplace: plivo + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/marketplace/plugins/textract.md b/docs/versioned_docs/version-2.23.0/marketplace/plugins/textract.md new file mode 100644 index 0000000000..e3d616156b --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/marketplace/plugins/textract.md @@ -0,0 +1,83 @@ +--- +id: marketplace-plugin-textract +title: Amazon Textract +--- + +ToolJet can connect to Amazon Textract to extract text and data from scanned documents, forms, and tables. Textract can process documents of various formats, including PDF, JPEG/JPG, and PNG. + +
+ +Marketplace: Amazon Textract + +
+ +:::note +Before following this guide, it is recommended to check the following doc: **[Using Marketplace plugins](/docs/marketplace/marketplace-overview#using-marketplace-plugins)**. +::: + + +## Connection + +For connecting to Amazon Textract, following credentials are required: +- **Access key** +- **Secret key** +- **Region** + +:::caution +- Access to the S3 bucket is dependent on the permissions granted to the IAM role added for the connection. +- Only single page documents are supported. if there is a multipage PDF you can convert it to single page using available online tools. +::: + +
+ +Marketplace: Amazon Textract + +
+ +## Supported queries + +- **[Analyze Document](#analyze-document)** +- **[Analyze document stored in AWS S3](#analyze-document-stored-in-aws-s3)** + +:::info +The data returned by the queries is in **JSON** format and may include additional information such as confidence scores and the location of the extracted content within the original document. +::: + +### Analyze Document + +This operation let's you to analyze the document by providing the document data in **base64** format. + +#### Required parameters: + +- **Document**: Provide the document data in base64 scheme. Components like filepicker can be used to pick the document from local system and retrieve the base64 data dynamically using exposed variables. ex: **{{components.filepicker1.file[0].base64Data}}** +- **Data Output**: Select one or more type of data output of the document. The 4 types of data outputs are: + 1. **Forms**: Extracted data and text from forms, including field keys and values. + 2. **Tables**: Extracted table data, including column and row headers and cell contents. + 3. **Queries**: Extracted data from databases and other structured data sources. + 4. **Signature Detection**: Identification and extraction of signatures and signature blocks from documents. + +
+ +Marketplace: Amazon Textract + +
+ +### Analyze document stored in AWS S3 + +This operation let's you to analyze the document stored in your AWS S3 buckets by providing the **bucket** and **object** name. + +#### Required parameters: + +- **Bucket**: Name of the S3 bucket that has the document stored +- **Key**: Object name(document name) that needs to be extracted +- **Data Output**: Select one or more type of data output of the document. The 4 types of data outputs are: + 1. **Forms**: Extracted data and text from forms, including field keys and values. + 2. **Tables**: Extracted table data, including column and row headers and cell contents. + 3. **Queries**: Extracted data from databases and other structured data sources. + 4. **Signature Detection**: Identification and extraction of signatures and signature blocks from documents. + +
+ +Marketplace: Amazon Textract + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/org-management/licensing.md b/docs/versioned_docs/version-2.23.0/org-management/licensing.md new file mode 100644 index 0000000000..57d9d9aa7c --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/org-management/licensing.md @@ -0,0 +1,119 @@ +--- +id: licensing +title: Licensing +--- + +
Available on: Paid plans
+ +## Setting up for Licensing + +This comprehensive guide aims to assist you in the process of configuring paid plans on your self-hosted platform. We offer three different licenses tailored to your specific requirements. Let's explore how to get the most out of ToolJet's powerful features! 🚀 + +Let's look into three types of licenses: + +1. **Trial License**: This is a free license that grants access to premium features for a 14-day trial period. + - **New Users**: Choose the 14-day trial during onboarding. + - **Existing Users**: Request a trial license key from our sales or support team. +2. **Business License**: This is a paid license that you can purchase **[directly](https://www.tooljet.com/pricing)**. +3. **Enterprise License**: This is a paid license with customizable options. To obtain this license, you have to contact our sales team. + +--- + +## Updating Your Trial License Key (For Existing Users) + +If you are an existing user and wish to update your trial license key, follow these steps: + +1. Set up the instance and log in as a **[Super Admin](/docs/Enterprise/superadmin)**. +2. Navigate to the instance settings page. +3. In the license key tab, make the necessary updates to the provided license key. +4. Within the license tab of the instance settings page, you can access the limit tab, which displays the current status of available super admins, builders, and end users. + +:::caution Note +The trial license key will be valid for 14 days. To fully enjoy ToolJet, we recommend upgrading to premium plans within this period. If you wish to upgrade from the trial to the business or enterprise edition, you can click the **Upgrade or Renew** button or contact our team via **[Slack](https://tooljet.com/slack)**. Upon expiration, access to premium features like OpenID SSO login and Audit logs will be restricted, ensuring no data loss occurs. However, don't worry! You can still upgrade to any of our premium plans and enjoy the benefits of ToolJet. +::: + +
+ +Licensing + +
+ +**Ref: Screenshot to update license key** + +## Purchasing a Paid License + +When you've identified the ideal paid license to meet your needs, the next step is to complete the purchase process, ensuring seamless access to premium features. + +### A) Chosen Plan: Business Plan + +If you decide to proceed with the Business Plan and have made the purchase, please wait for our team to get back to you within 24-48 hours to get you onboarded. Once you receive the business license key, follow the steps to [update the license key](#updating-license-key). + +:::warning Important +The business license key will be valid for 3 months only. You can renew it to continue using ToolJet to its fullest potential. +::: + + +### B) Chosen Plan: Enterprise Plan + +- If you've selected the Enterprise Plan, expect a response from our team within 24-48 hours for onboarding. +- To update the enterprise license key, follow the steps outlined previously. +- The remaining days of your enterprise edition period can be conveniently viewed on the dashboard. + +--- + +## Updating License Key + +**To update the license key, follow these steps:** +1. Log in as a **[Super Admin](/docs/Enterprise/superadmin)**, ensuring that you are on the correct instance URL. +2. Go to the Instance settings page. +3. In the license key tab, update the provided license key. +4. Within the license tab of the instance settings page, you can access the limit tab, which provides details about available super admins, builders, and end users. + +:::info Note +As a super admin, you can conveniently view the remaining days of your enterprise edition period on the dashboard. (Refer to screenshots below) +::: + +
+ +Licensing + +
+ +
+ +Licensing + +
+ +--- + +## Frequently Asked Questions (FAQs) + +### 1) How can I upgrade or renew my license? +If your business or enterprise edition license key is nearing expiration, please click the **Upgrade or Renew** button or contact us via email at hello@tooljet.com to obtain an extended license key. If you intend to increase the number of users, please reach out to us via **[Slack](https://tooljet.com/slack)** or review our pricing page at https://www.tooljet.com/pricing before making a request. + +
+ +Licensing + +
+ +**Ref: Screenshot addressing upgrade/renew CTAs. Note that there are a couple of other pages which will display banners or CTAs, from where you can upgrade/renew.** + +### 2) What is the duration of my license's validity? +If you have an active license, you can find its validity period in the instance settings. Generally, the duration of your license varies based on the type: +- Trial licenses are valid for 14 days. +- Business licenses are valid for 3 months. +- Enterprise licenses can be customized to suit your needs. + +### 3) What happens if my license expires? +If your business or enterprise license key expires, your instance will revert to operating as a free plan. While you can still create unlimited apps, workspaces, and add users, premium features such as OpenID and Audit logs will no longer be accessible. For further information, please refer to the relevant **[plans](https://www.tooljet.com/pricing)**. + +### 4) How can I add more users? +There are different methods to do this: + +**a)** You can renew directly using the **[business plan](https://www.tooljet.com/pricing)**. (Note: Please do check the list of premium features available with this plan) + +**b)** You can directly reach out to us via **[Slack](https://tooljet.com/slack)** or **[email](mailto:hello@tooljet.com)** and we will be happy to provide you the support. + +***Lastly, please keep in mind that your license key is private and strictly prohibited from being shared with any third parties.*** \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/org-management/permissions.md b/docs/versioned_docs/version-2.23.0/org-management/permissions.md new file mode 100644 index 0000000000..b13433e0ef --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/org-management/permissions.md @@ -0,0 +1,21 @@ +--- +id: permissions +title: Permissions +--- + +Permissions allow you to create and share resources to easily ensure what level of access each User has to ToolJet Apps and other resources. + +Admins can invite **Users** to their workspaces and assign them to the **Groups** that have Permissions to access Apps, folders, or workspace variables. + +:::info +See **[Manage Users and Groups](/docs/tutorial/manage-users-groups)** to know more about managing users and groups on your workspace. +::: + +## Role-Based Access Control (RBAC) Glossary + +- **Users -** Users can be added to more than one or more Groups. Each User is associated with an email. +- **Groups -** By default, there are two groups: **All Users** and **Admin**. Additionally, you can create custom groups like Support, Engineering, etc. + - **All Users** - Contains all the users in your workspace. When **New Users** are invited they are added to this group by default. + - **Admins** - Contains all Admins in your workspace. Everyone added to this group will Permission to access all the ToolJet resources. +- **Apps, Folder, Workspace Variables -** Resources that Admins can set permissions on. +- **Permissions -** Create, Update and Delete. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/org-management/workspaces/workspace-variables.md b/docs/versioned_docs/version-2.23.0/org-management/workspaces/workspace-variables.md new file mode 100644 index 0000000000..d0d5dd3fc6 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/org-management/workspaces/workspace-variables.md @@ -0,0 +1,83 @@ +--- +id: workspace-variables +title: Workspace Variables +--- + +:::caution +Workspace variables are currently marked as deprecated, indicating that it will be removed in future releases. In the current version, you are still able to delete existing variables and use it through out any ToolJet apps, but creating and updating variables are no longer supported. + +Please use [Workspace Constants](/docs/org-management/workspaces/workspace_constants) instead. +::: + +Workspace Variables are the variables with some value(usually tokens/secret keys/API keys) that can be used in different apps across the same Workspace. + +:::note +Server variables will not resolve if you use bracket notation. This is because bracket notation is not supported on the server-side, where server variables are resolved. If you use bracket notation in a query that is executed on the server, the query will fail. To avoid this, use dot notation to resolve workspace variables in queries. +::: + +## How can we add these variables to an Workspace? + +Suppose there is an `API key` or a value that you want to use in the queries or widgets in the multiple apps of the same Workspace then the Workspace admin or the user with permissions can add an environment variable. + +#### Adding the environment variable +- Go to the ToolJet Dashboard, and click on the dropdown on the navigation bar to show `Workspace` options +- Select `Manage Environment Variables` +- Click on `Add New Variable` button +- Give a `Name` to the variable, set the value, choose `Type`, toggle `Encryption`, and click **Add Variable** button +- Now this variable can be used inside any application of this Workspace + +
+ +add variable + +
+ +### Types of variables + +- **Client**: The client variable can be utilized in components, queries, and global datasources. + +- **Server**: The server variables can be employed in all queries except for `RunJS` and the connection form for global datasources. The restriction on using server variables with components is due to their resolution occurring solely during runtime, ensuring a high level of security. + +:::info +Variable Type cannot be changed once it has been created. +::: + +
+ +variable-type + +
+ +### Encryption + +This feature enables us to add a client variable with and without `encryption`. The server variables are always encrypted by default. + +### Using variable in an app + +Let's use the variable that we created [here](/docs/tutorial/workspace-variables/#adding-the-environment-variable). If you have used ToolJet before, then you know that for getting the values from any variable we use JS notation i.e. `{{}}` but for using the Workspace variables we have different opening and closing notation `%% %%`. The environment variables will not work inside js code `{{}}`. + +So, the syntax for using the variable that we created before will be `%%client.pi%%` + +**Example for client variable usage:** + +
+ +variable-usage + +
+ +**Example for server variable usage:** + +
+ +server-variable-usage + +
+ +Starting from ToolJet version `2.10.0` and onwards, it is possible to utilize Server-type workspace variables in the global datasources connection form. + +
+ +server-variable-usage + +
diff --git a/docs/versioned_docs/version-2.23.0/org-management/workspaces/workspace_constants.md b/docs/versioned_docs/version-2.23.0/org-management/workspaces/workspace_constants.md new file mode 100644 index 0000000000..5b65b05b8a --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/org-management/workspaces/workspace_constants.md @@ -0,0 +1,82 @@ +--- +id: workspace_constants +title: Workspace Constants +--- + +Workspace constants are predefined values(usually tokens/secret keys/API keys) that can be used across your application to maintain consistency and facilitate easy updates. They allow you to store important data or configurations that should remain unchanged during the application's runtime. This doc will guide you through the usage and management of workspace constants within your workspaces. + +## Environment-Specific Configurations + +Users can define environment-specific configurations by setting different values for constants across environments. It is useful for managing sensitive information such as API keys, database credentials, or external service endpoints. For Community edition only production environment is available and for Cloud/EE we will have multi environments (development, staging, production). + +## Server-Side Resolution + +Workspace constants are designed to be resolved on the server side only. This means that when you make network calls, the payload sent will not include the actual values of the constants. Instead, the server will resolve the constants and use their actual values while processing the requests. This ensures that the constants remain secure and are not exposed to the client-side. + +## Access Control + +Creating, updating, and deleting constants are exclusive privileges granted to **Admins** (workspaces). Only users with administrative rights can perform these operations. Workspace constants are specific to the workspace where they are created and cannot be utilized in other workspaces. + +## Usage in App Builder and Global Datasource connection + +All users with edit app permissions have access to consume and utilize constants in the app builder and global datasource connection forms. This enables you to use the same constant values across different components of your application, ensuring consistency and reducing duplication of effort. + +## Syntax + +To use a workspace constant, you need to follow the syntax: **`{{constants.constant_name}}`**. For example, if you have a constant named "psql_host", you can access its value by using `{{constants.psql_host}}`. + +## Creating Workspace Constants + +To create workspace constants, follow these steps: +- Access the ToolJet Dashboard and navigate to Workspace Settings. +- Select the Workspace Constants tab. +- Click on the **Create New Constant** button. +- A drawer will appear; enter the desired name and value for the constant. +- Click the **Add Constant** button to save the constant. + +
+ +Workspace constants: create + +
+ +- If you are an admin, you have the privilege to edit or delete constants. However, if you are a user with edit app permissions in the workspace, you can only view the constants and consume them in the app builder and global datasource connection forms. + +
+ +Workspace constants: edit/delete + +
+ +## Using Workspace Constants + +Workspace constants can be used in the app builder and the global datasource connection forms. + +### Using Workspace Constants in Global Datasource Connection + +You can use workspace constants in the **[global datasource connection](/docs/data-sources/overview#connecting-global-datasources)** form to store sensitive information like API keys, tokens, etc. This will ensure that the data remains secure and is not exposed to the client-side. You can use the syntax `{{constants.constant_name}}` to access the value of the constant. + +
+ + Workspace constants: global datasource + +
+ +### Using Workspace Constants in App Builder + +Inside the App Builder, you will find the **[Inspector](/docs/app-builder/left-sidebar#inspector)** on the left sidebar. The inspector will have a Constants section which will be updated dynamically to display all the available constant values. + +
+ + Workspace constants: inspector + +
+ +As you build the application, you can easily refer to the constants and incorporate them into different elements of your app. +
+ + Workspace constants: querypanel + +
+ +With workspace constants, you can streamline your application's configuration and maintain a consistent experience for your users. By leveraging this feature, you can ensure that vital data remains secure while making it accessible for authorized users throughout the application building process. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/org-management/workspaces/workspace_overview.md b/docs/versioned_docs/version-2.23.0/org-management/workspaces/workspace_overview.md new file mode 100644 index 0000000000..9f0bcd19e3 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/org-management/workspaces/workspace_overview.md @@ -0,0 +1,42 @@ +--- +id: workspace_overview +title: 'Workspace: Overview' +--- + +# Workspace: Overview + +User can create their own workspaces, user who created workspace will be having admin privileges for the workspace. + +
+ +multi workspace + +
+ +## Hierarchy + +
+ +tooljet workspace + +
+ +## Permissions + +:::tip +Please check the detailed doc on **[Permissions](/docs/org-management/permissions)**. +::: + +- The administrator can manage [users and groups](/docs/tutorial/manage-users-groups) of each workspace +- Applications and settings can not be shared between workspaces +- A user authorised to login to ToolJet will not have access to all workspaces, Users should be invited or signed up to a workspace to log-in to it. +- When Multi-Workspace feature is enabled, user should login with username and password to log in to Tooljet. +- Administrator can configure authentication methods for their workspaces. +- If password login is enabled, switching to the workspace will happen without any other authorization since the user is already authorized with password login. +- User logged in to Tooljet and trying to switch to a workspace where SSO is enabled and password login is disabled, will be redirected to workspace login page and enabled SSO options will be shown +- User can directly login to a workspace using workspace login URL, Administrator can view the URL **Manage SSO -> General Settings -> Login URL**. + +### When disabled (Super Admin) +- Only **[Super Admins](/docs/Enterprise/superadmin#restrict-creation-of-personal-workspace-of-users)** can disable the option for creating personal workspaces for a user. +- If creating personal workspaces is disabled, Create workspace feature won’t be available. +- No separate login page for workspace and SSO configured for the workspace will be reflected to the main login page/login. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/release-management/multi-env.md b/docs/versioned_docs/version-2.23.0/release-management/multi-env.md new file mode 100644 index 0000000000..965e36e56f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/release-management/multi-env.md @@ -0,0 +1,112 @@ +--- +id: multi-environment +title: Multi-Environment +--- + +
Available on: Paid plans
+ +ToolJet's **multi-environment** helps in streamlining workflows, thereby minimizing the chances of errors, and enables effective application management. Using multi-environment ensures that your ToolJet application is rigorously tested before it is made available to users. + +
+ +Multi-Environment + +
+ +### Environments + +ToolJet provides three default **environments** that serve different purposes in the application development lifecycle: + +1. **Development**: The Development environment is where app development and testing take place. It is a dedicated space for spp builders to build and experiment with app changes, configure components, and test app functionality. In this environment, app builders can make frequent updates, iterate on features, and debug issues without impacting the live production environment. + +2. **Staging**: The Staging environment serves as a pre-production environment where app changes are tested before they are deployed to the live production environment. It closely resembles the production environment and is used to validate the functionality, performance, and compatibility of the app in a realistic setting. Staging allows stakeholders, including testers and product managers, to review and provide feedback on the app before it is released to the public. + +3. **Production**: The Production environment is the live and publicly accessible version of the app that is used by end-users. It represents the stable and finalized version of the application that has passed through the development and staging stages. The Production environment is intended for real-world usage and serves the application to users, providing them with the expected functionality and experience. + +:::info +The default environments cannot be removed or renamed. +::: + +### Configuring connections for environments + +To configure connection settings for different environments, follow these steps: + +1. Go to the **[Data Source](/docs/data-sources/overview)** page. +2. Click on each category of data sources to view the list of available data sources. As you hover over the desired data source, an **Add** button will appear. +3. On clicking the **Add** button, a connection modal will appear. In the connection modal, you'll find three tabs: **Production**, **Staging**, and **Development**. +4. Switch to each tab and enter the appropriate credentials for connecting to the respective database. Remember to **save** after entering credentials on each tab. + +
+ +Multi-Environment + +
+ +### Using Environments + +
+ +Multi-Environment + +
+ +1. When you create a new app in ToolJet, the initial version is loaded in the **Development** environment. It is only possible to create new versions from the Development environment, not from the Staging or Production environments. + +
+ + Multi-Environment + +
+ +2. Once the development of a particular app version is complete, it can be promoted to the **Staging** environment. To promote the app from development to staging, click the **Promote>>** button located at the top-right of the app builder. + - When you click the Promote button, a confirmation modal will appear. Click **Promote>>** to move the app version to the Staging environment. + +
+ + Multi-Environment + +
+ + - Please note that once versions are promoted from Development, they cannot be edited. To make changes to the promoted versions, you need to switch back to the Development environment and create a new version. + +
+ + Multi-Environment + +
+ +3. In the Staging environment, the selected app version can undergo testing and reviews. + - If **changes are required** for the version in staging, switch to the **Development** environment using the dropdown on the top bar. Since the version has already been promoted to Staging, you cannot directly edit it. Instead, create a new version from the selected version and make the desired changes to the newly created version. + +
+ + Multi-Environment + +
+ + - After making changes in the new version, the app builder will automatically save the changes and enable the **Promote** button. You can then promote the new version to the Staging environment for further testing and reviews. + :::info + Please note that Development, Staging, and Production environments can contain any number of versions. + ::: + +4. Once the version in the Staging environment has been thoroughly tested and reviewed and **no further changes are required**, it can be promoted to the **Production** environment. Simply click the **Promote>>** button located at the top-right to move the app from the Staging environment to the Production environment. + +
+ + Multi-Environment + +
+ +5. In the **Production** environment, you can release the app by clicking the Release button on the top-right corner of the app builder. Once the app is released, you can share it with end users using the URL provided by the **Share** button on the top bar. + +
+ + Multi-Environment + +
+ + :::info + Please note that only one version of the app can be released at a time. + ::: + +ToolJet's app builder remembers your last editing state. When you reopen an app, it resumes from where you left off, ensuring a seamless experience. For instance, if you edited an app in the staging environment, it will open in the staging environment when you return. diff --git a/docs/versioned_docs/version-2.23.0/security.md b/docs/versioned_docs/version-2.23.0/security.md new file mode 100644 index 0000000000..0862a06f41 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/security.md @@ -0,0 +1,27 @@ +--- +id: security +title: Security +slug: /security +--- + +# Security + +## Uncompromised Data Security with SOC 2 Compliance + +With SOC 2 compliance, Tooljet ensures the highest level of data security. The adherence to SOC 2 standards mirrors the rigorous data protection measures in place, covering everything from encryption to robust access controls. It also guarantees a consistent level of service availability and process integrity, instilling confidence in our customers and stakeholders about the safe handling of their sensitive information. + +## Data storage + +ToolJet does not store data returned from your data sources. ToolJet server acts as a proxy and passes the data as it is to the ToolJet client. The credentials for the data sources are handled by the server and never exposed to the client. For example, if you are making an API request, the query is run from the server and not from the frontend. + +## Datasource credentials +All the datasource credentials are securely encrypted using `aes-256-gcm`. The credentials are never exposed to the frontend ( ToolJet client ). + +## Other security features +- **TLS**: If you are using ToolJet cloud, all connections are encrypted using TLS. We also have documentation for setting up TLS for self-hosted installations of ToolJet. +- **Audit logs**: Audit logs are available on the enterprise edition of ToolJet. Every user action is logged along with the IP addresses and user information. +- **Request logging**: All the requests to server are logged. If self-hosted, you can easily extend ToolJet to use your preferred logging service. ToolJet comes with built-in Sentry integration. +- **Whitelisted IPs**: If you are using ToolJet cloud, you can whitelist our IP address (3.129.198.40) so that your datasources are not exposed to the public. +- **Backups**: ToolJet cloud is hosted on AWS using EKS with autoscaling and regular backups. + +If you notice a security vulnerability, please let the team know by sending an email to `security@tooljet.com`. diff --git a/docs/versioned_docs/version-2.23.0/setup/_category_.json b/docs/versioned_docs/version-2.23.0/setup/_category_.json new file mode 100644 index 0000000000..1211453a23 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Setup", + "position": 2, + "collapsed": true +} diff --git a/docs/versioned_docs/version-2.23.0/setup/azure-container.md b/docs/versioned_docs/version-2.23.0/setup/azure-container.md new file mode 100644 index 0000000000..60bdc0aaa5 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/azure-container.md @@ -0,0 +1,70 @@ +--- +id: azure-container +title: Azure container apps +--- + +# Deploying ToolJet on Azure container apps + +:::info +Please note that you need to set up a PostgreSQL database manually to be used by ToolJet. Additionally, you must set up a Redis service through Azure Cache for Redis. +::: + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +## Deploying ToolJet application + +1. Open the Azure dashboard at https://portal.azure.com, navigate to Container Apps, and click on "Create container app". +
+ + Deploying ToolJet on Azure container apps + +
+ +2. Select the appropriate subscription and provide basic details such as the container name. +
+ + Deploying ToolJet on Azure container apps + +
+ +3. In the container tab, uncheck the "Use quickstart image" option to select the image source manually. +
+ + Deploying ToolJet on Azure container apps + +
+ + - Make sure to provide the image tag, and then enter `npm run start:prod` in the "Command override" field. + - Add the following ToolJet application variables under the "Environmental variable" section. You can refer to this [**documentation**](/docs/setup/env-vars) for more information on environment variables. + + **Note: For the minimal setup, ToolJet requires: `TOOLJET_HOST`, `PG_HOST`, `PG_DB`, `PG_USER`, `PG_PASSWORD`, `SECRET_KEY_BASE` & `LOCKBOX_MASTER_KEY` keys in the secret.** + +
+ + Deploying ToolJet on Azure container apps + +
+ +4. In the ingress tab, configure Ingress and Authentication settings as shown below. You can customize the security configurations as per your requirements. Make sure the port is set to 3000. +
+ + Deploying ToolJet on Azure container apps + +
+ +5. Click on "Review + create" and wait for the template to be verified and passed, as shown in the screenshot below. +
+ + Deploying ToolJet on Azure container apps + +
+ + +6. Once the container is deployed, you can verify its status under revision management. +
+ + Deploying ToolJet on Azure container apps + +
+ +You can access ToolJet via the application URL provided in the overview tab. diff --git a/docs/versioned_docs/version-2.23.0/setup/client.md b/docs/versioned_docs/version-2.23.0/setup/client.md new file mode 100644 index 0000000000..ebea627ad9 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/client.md @@ -0,0 +1,98 @@ +--- +id: client +title: Deploying ToolJet client +--- + +# Deploying ToolJet client + +ToolJet client is a standalone application and can be deployed on static website hosting services such as Netlify, Firebase, S3/Cloudfront, etc. + +You can build standalone client with the below command: +```bash +SERVE_CLIENT=false npm run build +``` + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +## Deploying ToolJet client on Firebase + +:::tip +You should set the environment variable `TOOLJET_SERVER_URL` ( URL of the server ) while building the frontend and also set `SERVE_CLIENT` to `false`` for standalone client build. + +For example: `SERVE_CLIENT=false TOOLJET_SERVER_URL=https://server.tooljet.com npm run build && firebase deploy` +::: + +1. Initialize firebase project + ```bash + firebase init + ``` + Select Firebase Hosting and set build as the static file directory +2. Deploy client to Firebase + ```bash + firebase deploy + ``` + +## Deploying ToolJet client with Google Cloud Storage + +:::tip +You should set the environment variable `TOOLJET_SERVER_URL` ( URL of the server ) while building the frontend. + + +For example: `SERVE_CLIENT=false TOOLJET_SERVER_URL=https://server.tooljet.io npm run build` +::: + +#### Using Load balancer + +Tooljet client can be hosted from Cloud Storage bucket just like hosting any other static website. +Follow the instructions from google documentation [here](https://cloud.google.com/storage/docs/hosting-static-website). + +Summarising the steps below: +1. Create a bucket and upload files within the build folder such that the `index.html` is at the bucket root. + +2. Edit permissions for the bucket to assign *New principal* as `allUsers` with role as `Storage Object Viewer` and permit for public access for the bucket. + +3. Click on *Edit website configuration* from the [buckets browser](https://console.cloud.google.com/storage/browser?_ga=2.180838119.1530169400.1637242882-657891227.1637242882) and specify the main page as `index.html` + +4. Follow the [instructions](https://cloud.google.com/storage/docs/hosting-static-website#lb-ssl) on creating a load balancer for hosting a static website. + +5. Optionally, create Cloud CDN to use with the backend bucket assigned to the load balancer. + +6. After the load balancer is created there will be an IP assigned to it. Try hitting it to check the website is being loaded. + +7. Use the load balancer IP as the static IP for the A record of your domain. + +#### Using Google App Engine + +1. Upload the build folder onto a bucket + +2. Upload `app.yaml` file onto bucket with the following config + + ```yaml + runtime: python27 + api_version: 1 + threadsafe: true + + handlers: + - url: / + static_files: build/index.html + upload: build/index.html + + - url: /(.*) + static_files: build/\1 + upload: build/(.*) + ``` + +3. Activate cloud shell on your browser and create build folder + ```bash + mkdir tooljet-assets + ``` + +4. Copy the uploaded files onto an assets folder which is to be served + ```bash + gsutil rsync -r gs://your-bucket-name/path-to-assets ./tooljet-assets + ``` + +5. Deploy static assets to be served + ```bash + cd tooljet-assets && gcloud app deploy + ``` diff --git a/docs/versioned_docs/version-2.23.0/setup/digitalocean.md b/docs/versioned_docs/version-2.23.0/setup/digitalocean.md new file mode 100644 index 0000000000..0030942f83 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/digitalocean.md @@ -0,0 +1,109 @@ +--- +id: digitalocean +title: DigitalOcean +--- + +# Deploying ToolJet on DigitalOcean + +Now you can quickly deploy ToolJet using the Deploy to DigitalOcean button. + +If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com. + +### Redis setup + +:::info +ToolJet requires configuring Redis which is used for enabling multiplayer editing and for background jobs. +::: + +Follow the steps below to configure Redis database: + +1. Navigate to **Database** and create a database cluster. + +
+ + ToolJet - Deploy on DigitalOcean + +
+ +2. Select `Redis` from the database engine and add a unique name to the cluster and click on **Create Database cluster**. + +
+ + ToolJet - Deploy on DigitalOcean + +
+ +3. Once the set-up is complete, add the Redis connection string in the environmental variable of `tooliet-app`. + +## Deploying + +#### Follow the steps below to deploy ToolJet on DigitalOcean: + +1. Click on the button below to start one click deployment + +
+ + [![Deploy to DigitalOcean](https://www.deploytodo.com/do-btn-blue.svg)](https://cloud.digitalocean.com/apps/new?repo=https://github.com/ToolJet/ToolJet/tree/main) + +
+ +2. A new tab will open up, sign-in to your DigitalOCean account. Once signed-in, the **Create App** page will open up and **Resources** will be already selected. Click on **Next** button. + +
+ + ToolJet - Deploy on DigitalOcean - Resources + +
+ +3. Now, on **Environment Variables** page you can add new variables or edit the existing ones. Check the [environment variables here](/docs/setup/env-vars). + + Also, please add the redis url in the environment variable `REDIS_URL= #connection string` + +
+ + ToolJet - Deploy on DigitalOcean - Environment Variables + +
+ +4. On the next page, you can change the **App name**, **Project**, and the **Region**. + +
+ + ToolJet - Deploy on DigitalOcean - Launch + +
+ +5. On the last page, you'll be asked to **Review** all the app details such that we entered before such as **Resources**, **Environment Variables**, **Region**, and there will also be **Billing** section at the end. Review all the details and click the **Create Resource** button. + +
+ + ToolJet - Deploy on DigitalOcean - Launch + +
+ +6. Once you click the **Create Resource** button, the build will begin. Once the build is complete, you'll see the resource and a **URL** next to it. Click on the URL to open the deployed **ToolJet**. + +:::tip +ToolJet server and client can be deployed as standalone applications. If you do not want to deploy the client on DigitalOcean, modify `package.json` accordingly. We have a [guide](/docs/setup/client) on deploying ToolJet client using services such as Firebase. +::: + +## Deploying Tooljet Database + +If you intend to use this feature, you'd have to set up and deploy PostgREST server which helps querying ToolJet Database. +You can learn more about this feature [here](/docs/tooljet-database). + +Follow the steps below to deploy ToolJet Database on DigitalOcean: + +1. If you are using dev database within ToolJet deployment, upgrade it to managed database. You could also add a separate database, if you intent use a different database, please refer the [environment variables](/docs/setup/env-vars#enable-tooljet-database--optional-) for additional env variables. + +2. Create a new app for PostgREST server. You can opt for docker hub to deploy PostgREST image of version `10.1.x`. + + ToolJet - Deploy on DigitalOcean - PostgREST resource + +3. Update the [environment variables](/docs/setup/env-vars#postgrest-server-optional) for PostgREST and expose the HTTP port `3000`. + + ToolJet - Deploy on DigitalOcean - PostgREST environment variables + +4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. + +5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#enable-tooljet-database--optional-) required for PostgREST. diff --git a/docs/versioned_docs/version-2.23.0/setup/docker.md b/docs/versioned_docs/version-2.23.0/setup/docker.md new file mode 100644 index 0000000000..ea1671ef1f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/docker.md @@ -0,0 +1,138 @@ +--- +id: docker +title: Docker +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + +# Deploying ToolJet using Docker Compose + +Follow the steps below to deploy ToolJet on a server using Docker Compose. ToolJet requires a PostgreSQL database to store applications definitions, (encrypted) credentials for datasources and user authentication data. + +:::info +If you rather want to try out ToolJet on your local machine with Docker, you can follow the steps [here](/docs/setup/try-tooljet/). +::: + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +### Installing Docker and Docker Compose +Install docker and docker-compose on the server. + - Docs for [Docker Installation](https://docs.docker.com/engine/install/) + - Docs for [Docker Compose Installation](https://docs.docker.com/compose/install/) + +### Deployment options + +There are two options to deploy ToolJet using Docker Compose: +1. **With in-built PostgreSQL database (recommended)**. This setup uses the official Docker image of PostgreSQL. +2. **With external PostgreSQL database**. This setup is recommended if you want to use a managed PostgreSQL service such as AWS RDS or Google Cloud SQL. + +Confused about which setup to select? Feel free to ask the community via Slack: https://tooljet.com/slack. + + + + + + 1. Download our production docker-compose file into the server. + ```bash + curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/docker/docker-compose-db.yaml + mv docker-compose-db.yaml docker-compose.yaml + mkdir postgres_data + mkdir redis_data + ``` + + 2. Create `.env` file in the current directory (where the docker-compose.yaml file is downloaded as in step 1): + + ```bash + curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/docker/.env.internal.example + curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/docker/internal.sh && chmod +x internal.sh + mv .env.internal.example .env && ./internal.sh + ``` + + 3. To start the docker container, use the following command: + + ```bash + docker-compose up -d + ``` + + 4. **(Optional)** `TOOLJET_HOST` environment variable can either be the public ipv4 address of your server or a custom domain that you want to use. Which can be modified in the .env file. + + Also, for setting up additional environment variables in the .env file, please check our documentation on [environment variable](/docs/setup/env-vars) + + Examples: + `TOOLJET_HOST=http://12.34.56.78` or + `TOOLJET_HOST=https://tooljet.yourdomain.com` + + If you've set a custom domain for `TOOLJET_HOST`, add a `A record` entry in your DNS settings to point to the IP address of the server. + + :::info + i. Please make sure that `TOOLJET_HOST` starts with either `http://` or `https://` + + ii. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ + + iii. If you're running on a linux server, `docker` might need sudo permissions. In that case you can either run: + `sudo docker-compose up -d` + ::: + + + + + + + 1. Setup a PostgreSQL database and make sure that the database is accessible. + + 2. Download our production docker-compose file into the server. + ```bash + curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/docker/docker-compose.yaml + mkdir redis_data + ``` + + 3. Create `.env` file in the current directory (where the docker-compose.yaml file is downloaded as in step 1): + + Kindly set the postgresql database credentials according to your external database. Please enter the database details with the help of the bash as shown below. + +
+ + + +
+ + ```bash + curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/docker/.env.external.example + curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/docker/external.sh && chmod +x external.sh + mv .env.external.example .env && ./external.sh + ``` + + 4. To start the docker container, use the following command: + + ```bash + docker-compose up -d + ``` + + 5. **(Optional)** `TOOLJET_HOST` environment variable can either be the public ipv4 address of your server or a custom domain that you want to use. Which can be modified in the .env file. + + Also, for setting up additional environment variables in the .env file, please check our documentation on [environment variable](/docs/setup/env-vars) + + Examples: + `TOOLJET_HOST=http://12.34.56.78` or + `TOOLJET_HOST=https://tooljet.yourdomain.com` + + If you've set a custom domain for `TOOLJET_HOST`, add a `A record` entry in your DNS settings to point to the IP address of the server. + + :::info + i. Please make sure that `TOOLJET_HOST` starts with either `http://` or `https://` + + ii. If there are self signed HTTPS endpoints that Tooljet needs to connect to, please make sure that `NODE_EXTRA_CA_CERTS` environment variable is set to the absolute path containing the certificates. + + iii. If you're running a linux server, `docker` might need sudo permissions. In that case you can either run: + `sudo docker-compose up -d` + + iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ + ::: + + + + +
+
+ diff --git a/docs/versioned_docs/version-2.23.0/setup/ec2.md b/docs/versioned_docs/version-2.23.0/setup/ec2.md new file mode 100644 index 0000000000..662b4f2d56 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/ec2.md @@ -0,0 +1,80 @@ +--- +id: ec2 +title: AWS EC2 +--- + +# Deploying ToolJet on Amazon EC2 + +:::info +You should setup a PostgreSQL database manually to be used by the ToolJet server. +::: + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +Follow the steps below to deploy ToolJet on AWS EC2 instances. + +1. Setup a PostgreSQL database and make sure that the database is accessible from the EC2 instance. + +2. Login to your AWS management console and go to the EC2 management page. + +3. Under the `Images` section, click on the `AMIs` button. + +4. Find the [ToolJet version](https://github.com/ToolJet/ToolJet/releases) you want to deploy. Now, from the AMI search page, select the search type as "Public Images" and input the version you'd want `AMI Name : tooljet_vX.X.X.ubuntu_bionic` in the search bar. + +5. Select ToolJet's AMI and bootup an EC2 instance. + + Creating a new security group is recommended. For example, if the installation should receive traffic from the internet, the inbound rules of the security group should look like this: + + protocol| port | allowed_cidr| + ----| ----------- | ----------- | + tcp | 22 | your IP | + tcp | 80 | 0.0.0.0/0 | + tcp | 443 | 0.0.0.0/0 | + + +6. Once the instance boots up, SSH into the instance by running `ssh -i ubuntu@` + +7. Switch to the app directory by running `cd ~/app`. Modify the contents of the `.env` file. ( Eg: `vim .env` ) + + The default `.env` file looks like this: + ```bash + TOOLJET_HOST=http:// + LOCKBOX_MASTER_KEY= + SECRET_KEY_BASE= + PG_DB=tooljet_prod + PG_USER= + PG_HOST= + PG_PASS= + ``` + Read **[environment variables reference](/docs/setup/env-vars)** + + :::info + If there are self signed HTTPS endpoints that Tooljet needs to connect to, please make sure that `NODE_EXTRA_CA_CERTS` environment variable is set to the absolute path containing the certificates. + ::: + +8. `TOOLJET_HOST` environment variable determines where you can access the ToolJet client. It can either be the public ipv4 address of your instance or a custom domain that you want to use. + + Examples: + `TOOLJET_HOST=http://12.34.56.78` or + `TOOLJET_HOST=https://yourdomain.com` or + `TOOLJET_HOST=https://tooljet.yourdomain.com` + + :::info + We use a [lets encrypt](https://letsencrypt.org/) plugin on top of nginx to create TLS certificates on the fly. + ::: + + :::info + Please make sure that `TOOLJET_HOST` starts with either `http://` or `https://` + ::: + +9. Once you've configured the `.env` file, run `./setup_app`. This script will install all the dependencies of ToolJet and then will start the required services. + +10. If you've set a custom domain for `TOOLJET_HOST`, add a `A record` entry in your DNS settings to point to the IP address of the EC2 instance. + +12. You're all done, ToolJet client would now be served at the value you've set in `TOOLJET_HOST`. + +#### Deploying Tooljet Database + +ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. + +You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/setup/ecs.md b/docs/versioned_docs/version-2.23.0/setup/ecs.md new file mode 100644 index 0000000000..c3eb758aa0 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/ecs.md @@ -0,0 +1,230 @@ +--- +id: ecs +title: AWS ECS +--- + +# Deploying ToolJet on Amazon ECS + +:::info +You should setup a PostgreSQL database manually to be used by ToolJet. +::: + +You can effortlessly deploy Amazon Elastic Container Service (ECS) by utilizing a [CloudFormation template](https://aws.amazon.com/cloudformation/): + +To deploy all the services at once, simply employ the following template: + +``` +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/cloudformation/Cloudfomation-template-one-click.yml +``` + +If you already have existing services and wish to integrate ToolJet seamlessly into your current Virtual Private Cloud (VPC) or other setups, you can opt for the following template: + +``` +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/cloudformation/Cloudformation-deploy.yml +``` + +## Redis + +:::info +ToolJet requires configuring Redis which is used for enabling multiplayer editing and for background jobs. +::: + +To deploy Redis on an ECS cluster, please follow the steps outlined below. + +Please note that if you already have an existing Redis setup, you can continue using it. However, if you need to create a new Redis service, you can follow the steps provided below. + +- Create a new take definition + +
+ + ECS Setup + +
+ + +- Please add container and image tag as shown below: + + **Make sure that you are using redis version 6.x.x** + +
+ + ECS Setup + +
+ +- Ensure that when creating a service, Redis is integrated into the same cluster where your ToolJet app will be deployed. + + **Note: Please enable public IP** + +
+ + ECS Setup + +
+ +## ToolJet + +Follow the steps below to deploy ToolJet on a ECS cluster. + +1. Setup a PostgreSQL database ToolJet uses a postgres database as the persistent storage for storing data related to users and apps. +2. Create a target group and an application load balancer to route traffic onto ToolJet containers. You can [reference](https://docs.aws.amazon.com/AmazonECS/latest/userguide/create-application-load-balancer.html) AWS docs to set it up. Please note that ToolJet server exposes `/api/health`, which you can configure for health checks. + +3. Create task definition for deploying ToolJet app as a service on your preconfigured cluster. + + i. Select Fargate as launch type compatibility + + ii. Configure IAM roles and set operating system family as Linux. + + iii. Select task size to have 3GB of memory and 1vCpu + +
+ + ECS Setup + +
+ + iv. Add container details that is shown: + + Specify your container name ex: `ToolJet` + + Set the image you intend to deploy. ex: `tooljet/tooljet:` + + Update port mappings at container port `3000` for tcp protocol. + +
+ + ECS Setup + +
+ + Specify environmental values for the container. You'd want to make use of secrets to store sensitive information or credentials, kindly refer the AWS [docs](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data-secrets.html) to set it up. You can also store the env in S3 bucket, kindly refer the AWS [docs](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/taskdef-envfiles.html) . + +
+ + ECS Setup + +
+ + :::info + For the minimal setup, ToolJet requires: `TOOLJET_HOST`, `PG_HOST`, `PG_DB`, `PG_USER`, `PG_PASSWORD`, `SECRET_KEY_BASE` & `LOCKBOX_MASTER_KEY` keys in the secret. + + Read **[environment variables reference](https://docs.tooljet.com/docs/setup/env-vars)** + ::: + + Additionally, include the Redis environment variables within the ToolJet container mentioned above if you have followed the previous steps to create Redis. + + ``` + REDIS_HOST= + REDIS_PORT=6379 + REDIS_USER=default + REDIS_PASSWORD= + ``` + + v. Make sure `Use log collection checked` and `Docker configuration` with the command `npm run start:dev` + +
+ + ECS Setup + +
+ +4. Create a service to run your task definition within your cluster. + + - Select the cluster which you have created + + - Select launch type as Fargate + +
+ + ECS Setup + +
+ + - Select the cluster and set the service name + + - You can set the number of tasks to start with as two + + - Rest of the values can be kept as default + +
+ + ECS Setup + +
+ + - Click on next step to configure networking options + + - Select your designated VPC, Subnets and Security groups. Kindly ensure that the security group allows for inbound traffic to http port 3000 for the task. + +
+ + ECS Setup + +
+ + - Since migrations are run as a part of container boot, please specify health check grace period for 900 seconds. Select the application loadbalancer option and set the target group name to the one we had created earlier. This will auto populate the health check endpoints. + +:::info +The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. +::: + + +## ToolJet Database + +If you intend to use this feature, you'd have to set up and deploy PostgREST server which helps querying ToolJet Database. You can learn more about this feature [here](https://docs.tooljet.com/docs/tooljet-database). + +Follow the steps below to deploy PostgREST on a ECS cluster. + +1. Create a new take definition + +
+ + ECS Setup + +
+ + Add the container details and image tag as shown below: + +
+ + ECS Setup + +
+ + Under environmental variable please add corresponding PostgREST env variables. You can also refer [env variable](https://docs.tooljet.com/docs/setup/env-vars/#postgrest-server-optional). + +
+ + ECS Setup + +
+ + +2. Create service and make sure the postgrest is within the same cluster as ToolJet app. + +
+ + ECS Setup + +
+ + +3. Specify a service name and leave the remaining settings at their default configurations. + +
+ + ECS Setup + +
+ +4. Ensure that the PostgREST service resides within the same Virtual Private Cloud (VPC), and confirm that port 3001 is included in the security group used by the ToolJet app. **Note: Please enable public IP** + +
+ + ECS Setup + +
+ + +Update ToolJet deployment with the appropriate env variables [here](https://docs.tooljet.com/docs/setup/env-vars/#enable-tooljet-database--optional-) and apply the changes. + diff --git a/docs/versioned_docs/version-2.23.0/setup/env-vars.md b/docs/versioned_docs/version-2.23.0/setup/env-vars.md new file mode 100644 index 0000000000..18f69d14e5 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/env-vars.md @@ -0,0 +1,320 @@ +--- +id: env-vars +title: Environment variables +--- + +# Environment variables + +Both the ToolJet server and client requires some environment variables to start running. + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +## ToolJet server + +### ToolJet host ( required ) + +| variable | description | +| ------------ | ---------------------------------------------------------------- | +| TOOLJET_HOST | the public URL of ToolJet client ( eg: https://app.tooljet.com ) | + +### Lockbox configuration ( required ) + +ToolJet server uses lockbox to encrypt datasource credentials. You should set the environment variable `LOCKBOX_MASTER_KEY` with a 32 byte hexadecimal string. + +### Application Secret ( required ) + +ToolJet server uses a secure 64 byte hexadecimal string to encrypt session cookies. You should set the environment variable `SECRET_KEY_BASE`. + +:::tip +If you have `openssl` installed, you can run the following commands to generate the value for `LOCKBOX_MASTER_KEY` and `SECRET_KEY_BASE`. + +For `LOCKBOX_MASTER_KEY` use `openssl rand -hex 32` +For `SECRET_KEY_BASE` use `openssl rand -hex 64` +::: + +### Database configuration ( required ) + +ToolJet server uses PostgreSQL as the database. + +| variable | description | +| -------- | ---------------------- | +| PG_HOST | postgres database host | +| PG_DB | name of the database | +| PG_USER | username | +| PG_PASS | password | +| PG_PORT | port | + +:::tip +If you are using docker-compose setup, you can set PG_HOST as `postgres` which will be DNS resolved by docker +::: + +:::info +If you intent you use the DB connection url and if the connection does not support ssl. Please use the below format using the variable DATABASE_URL. +`postgres://username:password@hostname:port/database_name?sslmode=disable` +::: + +### Disable database and extension creation (optional) + +ToolJet by default tries to create database based on `PG_DB` variable set and additionally my try to create postgres extensions. This requires the postgres user to have CREATEDB permission. If this cannot be granted you can disable this behaviour by setting `PG_DB_OWNER` as `false` and will have to manually run them. + +### Check for updates ( optional ) + +Self-hosted version of ToolJet pings our server to fetch the latest product updates every 24 hours. You can disable this by setting the value of `CHECK_FOR_UPDATES` environment variable to `0`. This feature is enabled by default. + +### Comment feature enable ( optional ) + +Use this environment variable to enable/disable the feature that allows you to add comments on the canvas. To configure this environment variable, ensure that multiplayer editing is enabled in the instance settings. + +| variable | value | +| ---------------------- | ----------------- | +| COMMENT_FEATURE_ENABLE | `true` or `false` | + +### Marketplace +#### Marketplace feature enable ( optional ) + +Use this environment variable to enable/disable the feature that allows users to use the marketplace. + +| variable | value | +| -------------------------- | ----------------- | +| ENABLE_MARKETPLACE_FEATURE | `true` or `false` | + +#### Enable Marketplace plugin developement mode ( optional ) + +Use this environment variable to enable/disable the developement mode that allows developers to build the plugin. + +| variable | value | +| -------------------------- | ----------------- | +| ENABLE_MARKETPLACE_DEV_MODE | `true` or `false` | + +### User Session Expiry Time (Optional) + +| variable | description | +| ---------------- | ----------------------------------------------- | +| USER_SESSION_EXPIRY | This variable controls the user session expiry time. By default, the session expires after **10** days. The variable expects the value in minutes. ex: USER_SESSION_EXPIRY = 120 which is 2 hours | + +### Enable ToolJet Database ( optional ) + +| variable | description | +| ----------------- | -------------------------------------------- | +| ENABLE_TOOLJET_DB | `true` or `false` | +| TOOLJET_DB | Default value is `tooljet_db` | +| TOOLJET_DB_HOST | database host | +| TOOLJET_DB_USER | database username | +| TOOLJET_DB_PASS | database password | +| TOOLJET_DB_PORT | database port | +| PGRST_JWT_SECRET | JWT token client provided for authentication | +| PGRST_HOST | postgrest database host | + +Use `ENABLE_TOOLJET_DB` to enable/disable the feature that allows users to work with inbuilt data store to build apps with. Inorder to set it up, [follow the instructions here](/docs/tooljet-database#enabling-the-tooljet-database-for-your-instance). + +:::tip +When this feature is enabled, the database name provided for `TOOLJET_DB` will be utilized to create a new database during server boot process in all of our production deploy setups. +Incase you want to trigger it manually, use the command `npm run db:create` on ToolJet server. +::: + +:::info +If you intent you use the DB connection url and if the connection does not support ssl. Please use the below format using the variable TOOLJET_DB_URL. +`postgres://username:password@hostname:port/database_name?sslmode=disable` +::: + +### Server Host ( optional ) + +You can specify a different server for backend if it is hosted on another server. + +| variable | value | +| ----------- | ------------------------------------------------------------------------------------------------- | +| SERVER_HOST | Configure a hostname for the server as a proxy pass. If no value is set, it defaults to `server`. | + +### Hide account setup link + +If you want to hide account setup link from admin in manage user page, set the environment variable `HIDE_ACCOUNT_SETUP_LINK` to `true`, please make sure you have configured SMTP to receive welcome mail for users. + +### Disabling signups ( optional ) + +If you want to restrict the signups and allow new users only by invitations, set the environment variable `DISABLE_SIGNUPS` to `true`. + +:::tip +You will still be able to see the signup page but won't be able to successfully submit the form. +::: + +### Serve client as a server end-point ( optional ) + +By default, the `SERVE_CLIENT` variable will be unset and the server will serve the client at its `/` end-point. +You can set `SERVE_CLIENT` to `false` to disable this behaviour. + +### Serve client at subpath + +If ToolJet is hosted on a domain subpath, you can set the environment variable `SUB_PATH` to support it. +Please note the subpath is to be set with trailing `/` and is applicable only when the server is serving the frontend client. + +### SMTP configuration ( optional ) + +ToolJet uses SMTP services to send emails ( Eg: invitation email when you add new users to your workspace ). + +| variable | description | +| ------------------ | ----------------------------------------- | +| DEFAULT_FROM_EMAIL | from email for the email fired by ToolJet | +| SMTP_USERNAME | username | +| SMTP_PASSWORD | password | +| SMTP_DOMAIN | domain or host | +| SMTP_PORT | port | + +### Slack configuration ( optional ) + +If your ToolJet installation requires Slack as a data source, you need to create a Slack app and set the following environment variables: + +| variable | description | +| ------------------- | ------------------------------ | +| SLACK_CLIENT_ID | client id of the slack app | +| SLACK_CLIENT_SECRET | client secret of the slack app | + +### Google OAuth ( optional ) + +If your ToolJet installation needs access to data sources such as Google sheets, you need to create OAuth credentials from Google Cloud Console. + +| variable | description | +| -------------------- | ------------- | +| GOOGLE_CLIENT_ID | client id | +| GOOGLE_CLIENT_SECRET | client secret | + +### Google maps configuration ( optional ) + +If your ToolJet installation requires `Maps` widget, you need to create an API key for Google Maps API. + +| variable | description | +| ------------------- | ------------------- | +| GOOGLE_MAPS_API_KEY | Google maps API key | + +### APM VENDOR ( optional ) + +Specify application monitoring vendor. Currently supported values - `sentry`. + +| variable | description | +| ---------- | ----------------------------------------- | +| APM_VENDOR | Application performance monitoring vendor | + +### SENTRY DNS ( optional ) + +| variable | description | +| ---------- | ------------------------------------------------------------------------------------------------- | +| SENTRY_DNS | DSN tells a Sentry SDK where to send events so the events are associated with the correct project | + +### SENTRY DEBUG ( optional ) + +Prints logs for sentry. + +| variable | description | +| ------------ | ------------------------------------------- | +| SENTRY_DEBUG | `true` or `false`. Default value is `false` | + +### Server URL ( optional) + +This is used to set up for CSP headers and put trace info to be used with APM vendors. + +| variable | description | +| ------------------ | ------------------------------------------------------------ | +| TOOLJET_SERVER_URL | the URL of ToolJet server ( eg: https://server.tooljet.com ) | + +### RELEASE VERSION ( optional) + +Once set any APM provider that supports segregation with releases will track it. + +### NODE_EXTRA_CA_CERTS (optional) + +Tooljet needs to be configured for custom CA certificate to be able to trust and establish connection over https. This requires you to configure an additional env var `NODE_EXTRA_CA_CERTS` to have absolute path to your CA certificates. This file named `cert.pem` needs to be in PEM format and can have more than one certificates. + +| variable | description | +| ------------------- | ------------------------------------------------------------------ | +| NODE_EXTRA_CA_CERTS | absolute path to certificate PEM file ( eg: /ToolJet/ca/cert.pem ) | + +### Disable telemetry ( optional ) + +Pings our server to update the total user count every 24 hours. You can disable this by setting the value of `DISABLE_TOOLJET_TELEMETRY` environment variable to `true`. This feature is enabled by default. + +### Password Retry Limit (Optional) + +The maximum retry limit of login password for a user is by default set to 5, account will be locked after 5 unsuccessful login attempts. Use the variables mentioned below to control this behavior: + +| variable | description | +| ---------------------------- | ------------------------------------------------------------------------------------------------------ | +| DISABLE_PASSWORD_RETRY_LIMIT | (true/false) To disable the password retry check, if value is `true` then no limits for password retry | +| PASSWORD_RETRY_LIMIT | To change the default password retry limit (5) | + +### SSO Configurations (Optional) + +Configurations for instance level SSO. + +| variable | description | +| ---------------------------- | -------------------------------------------------------------- | +| SSO_GOOGLE_OAUTH2_CLIENT_ID | Google OAuth client id | +| SSO_GIT_OAUTH2_CLIENT_ID | GitHub OAuth client id | +| SSO_GIT_OAUTH2_CLIENT_SECRET | GitHub OAuth client secret | +| SSO_GIT_OAUTH2_HOST | GitHub OAuth host name if GitHub is self hosted | +| SSO_ACCEPTED_DOMAINS | comma separated email domains that supports SSO authentication | +| SSO_DISABLE_SIGNUPS | Disable user sign up if authenticated user does not exist | + +## ToolJet client + +### Server URL ( optionally required ) + +This is required when client is built separately. + +| variable | description | +| ------------------ | ------------------------------------------------------------ | +| TOOLJET_SERVER_URL | the URL of ToolJet server ( eg: https://server.tooljet.com ) | + +### Server Port ( optional) + +This could be used to for local development, it will set the server url like so: `http://localhost:` + +| variable | description | +| ------------------- | --------------------------------------- | +| TOOLJET_SERVER_PORT | the port of ToolJet server ( eg: 3000 ) | + +### Asset path ( optionally required ) + +This is required when the assets for the client are to be loaded from elsewhere (eg: CDN). +This can be an absolute path, or relative to main HTML file. + +| variable | description | +| ---------- | -------------------------------------------------------------- | +| ASSET_PATH | the asset path for the website ( eg: https://app.tooljet.com/) | + +### Serve client as a server end-point ( optional ) + +By default the client build will be done to be served with ToolJet server. +If you intend to use client separately then can set `SERVE_CLIENT` to `false`. + +## PostgREST server (Optional) + +| variable | description | +| ---------------- | ----------------------------------------------- | +| PGRST_JWT_SECRET | JWT token client provided for authentication | +| PGRST_DB_URI | database connection string for tooljet database | +| PGRST_LOG_LEVEL | `info` | + +If you intent to make changes in the above configuration. Please refer [PostgREST configuration docs](https://postgrest.org/en/stable/configuration.html#environment-variables). + +:::tip +If you have openssl installed, you can run the following command `openssl rand -hex 32` to generate the value for `PGRST_JWT_SECRET`. + +If this parameter is not specified then PostgREST refuses authentication requests. +::: + +:::info +Please make sure that DB_URI is given in the format `postgrest://[USERNAME]:[PASSWORD]@[HOST]:[PORT]/[DATABASE]` +::: + +## ToolJet Apps + +### Enabling embedding of private apps + +By default, only embedding of public apps is permitted. By setting this variable, users will be able to embed private ToolJet Apps. + +| Variable | Description | +| --------------- | ------------------------------------- | +| ENABLE_PRIVATE_APP_EMBED | `true` or `false` | + +:::caution +The option is only available starting from ToolJet Enterprise Edition `2.8.0` or higher, and `2.10.0` for the Community edition and cloud version. +::: diff --git a/docs/versioned_docs/version-2.23.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.23.0/setup/google-cloud-run.md new file mode 100644 index 0000000000..0431078dcc --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/google-cloud-run.md @@ -0,0 +1,153 @@ +--- +id: google-cloud-run +title: Google Cloud Run +--- + +# Deploying ToolJet on Google Cloud Run + +:::info +You should setup a PostgreSQL database manually to be used by ToolJet. +::: + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +Follow the steps below to deploy ToolJet on Cloud run with `gcloud` CLI. + + +## Deploying ToolJet application + +1. Cloud Run requires prebuilt image to be present within cloud registry. You can pull specific tooljet image from docker hub and then tag with your project to push it to cloud registry. + + ```bash + gcloud auth configure-docker + docker pull tooljet/tooljet:latest + docker tag tooljet/tooljet:latest gcr.io//tooljet/tooljet:latest + docker push gcr.io//tooljet/tooljet:latest + ``` + + Please run the above command by launching GoogleCLI which will help to push the Tooljet application image to Google container registry. + +
+ CLI +
+ + +2. Create new cloud run service + + Select and add the pushed Tooljet application image as shown below. + +
+ tooljet-app-service +
+ +3. Ingress and Authentication can be set as shown below, to begin with. Feel free to change the security configurations as per you see fit. + +
+ ingress-auth +
+ +4. Under containers tab, please make sure the port is set 3000 and command `npm, run, start:prod` is entered in container argument field with CPU capacity is set to 2GiB. + +
+ port-and-capacity-tooljet +
+ + +5. Under environmental variable please add the below Tooljet application variables. You can also refer env variable [**here**](/docs/setup/env-vars). + + Update `TOOLJET_HOST` environment variable if you want to use the default url assigned with Cloud run after the initial deploy. + +
+ env-variable-tooljet +
+ +:::tip +If you are using [Public IP](https://cloud.google.com/sql/docs/postgres/connect-run) for Cloud SQL, then database host connection (value for `PG_HOST`) needs to be set using unix socket format, `/cloudsql/`. +::: + + +6. Please go to the connection tab. Under Cloud SQL instance please select the PostgreSQL database which you have set-up. + +
+ cloud-SQL-tooljet +
+ + +Click on deploy once the above parameters are set. + +:::info +Once the Service is created and live, to make the Cloud Service URL public. Please follow the steps [**here**](https://cloud.google.com/run/docs/securing/managing-access) to make the service public. +::: + + + + + +### Deploying ToolJet Database + +If you intend to use this feature, you'd have to set up and deploy PostgREST server which helps querying ToolJet Database. + +#### PostgREST server + +1. Cloud Run requires prebuilt image to be present within cloud registry. You can pull specific PostgREST image from docker hub and then tag with your project to push it to cloud registry. + + ```bash + gcloud auth configure-docker + docker pull postgrest/postgrest:v10.1.1.20221215 + docker tag postgrest/postgrest:v10.1.1.20221215 gcr.io/tooljet-test-338806/postgrest/postgrest:v10.1.1.20221215 + docker push gcr.io/tooljet-test-338806/postgrest/postgrest:v10.1.1.20221215 + ``` + + Please run the above command by launching googleCLI which will help to push the PostgREST image to Google container registry. + +
+ CLI +
+ + +2. Once the PostgREST image is pushed. Click on create service. + + Select and add the pushed PostgREST image as shown in below. + +
+ create-service-cloud-run-postgrest +
+ + +3. Ingress and Authentication can be set as shown below, to begin with. Feel free to change the security configurations as per you see fit. + +
+ ingress-auth +
+ + +4. Under containers tab, please make sure the port is set 3000 and CPU capacity is set to 1GiB. + +
+ port-and-capacity-postgrest +
+ +5. Under environmental variable please add corresponding Tooljet database env variables. You can also refer [env variable](/docs/setup/env-vars#tooljet-database). + +6. Please go to connection tab. Under Cloud SQL instance please select the PostgreSQL database which you have set-up for Tooljet application or the separate PostgreSQL database created respective to Tooljet Database from the drop-down option. + + +
+ Cloud-SQL-instance +
+ + +Click on deploy once the above parameters are set. + +:::info +Once the Service is created and live, to make the Cloud Service URL public. Please follow the steps [**here**](https://cloud.google.com/run/docs/securing/managing-access) to make the service public. +::: + + + +7. Additional Environmental variable to be added to Tooljet application or Tooljet Server connect to PostgREST server. You can also refer env variable [**here**](/docs/setup/env-vars#tooljet-database) + + +
+ env-for-tooljet +
diff --git a/docs/versioned_docs/version-2.23.0/setup/helm.md b/docs/versioned_docs/version-2.23.0/setup/helm.md new file mode 100644 index 0000000000..cca63346c1 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/helm.md @@ -0,0 +1,36 @@ +--- +id: helm +title: Helm +--- + +# Deploying ToolJet with Helm Chart + +This repository contains Helm charts for deploying [ToolJet](https://github.com/ToolJet/helm-charts) on a Kubernetes Cluster using Helm v3. The charts include an integrated PostgreSQL server that is enabled by default. However, you have the option to disable it and configure a different PostgreSQL server by updating the `values.yml` file. + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +## Installation + +### From Helm repo +```bash +helm repo add tooljet https://github.com/ToolJet/helm-charts.git +helm install tooljet tooljet/tooljet +``` + +### From the source +1. Clone the repository and navigate to this directory +2. Run `helm dependency update +3. It is recommended but optional to modify the values in the `values.yaml` file, such as usernames, passwords, persistence settings, etc. +4. Run `helm install -n $NAMESPACE --create-namespace $RELEASE .` + +Remember to replace the variables with your specific configuration values. + +**ToolJet Database** + +ToolJet offers a hosted database solution that allows you to build applications quickly and manage your data effortlessly. The ToolJet database requires no setup and provides a user-friendly interface for data management. + +For more information about the ToolJet database, you can visit [here](/docs/tooljet-database). + +If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. + +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/setup/http-proxy.md b/docs/versioned_docs/version-2.23.0/setup/http-proxy.md new file mode 100644 index 0000000000..30faa396ca --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/http-proxy.md @@ -0,0 +1,14 @@ +--- +id: http-proxy +title: Connecting via HTTP proxy +--- + +#### Connecting via HTTP proxy + +Server will connect to internet via the configured HTTP proxy when this environment variable is set. + +| variable | description | +| ----------------------- | ------------------------------------- | +| TOOLJET_HTTP_PROXY | used for both HTTP and HTTPS requests | + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* diff --git a/docs/versioned_docs/version-2.23.0/setup/index.md b/docs/versioned_docs/version-2.23.0/setup/index.md new file mode 100644 index 0000000000..cb3bc74323 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/index.md @@ -0,0 +1,10 @@ +# Setup ToolJet + +Check out the different methods you can use to deploy ToolJet on your machine + +```mdx-code-block +import {DocsCardList} from '../../../src/components/DocsCard'; +import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; + + +``` diff --git a/docs/versioned_docs/version-2.23.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.23.0/setup/kubernetes-aks.md new file mode 100644 index 0000000000..04cc1515d2 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/kubernetes-aks.md @@ -0,0 +1,55 @@ +--- +id: kubernetes-aks +title: Kubernetes (AKS) +--- + +# Deploying ToolJet on Kubernetes (AKS) + +:::info +You should setup a PostgreSQL database manually to be used by ToolJet. We recommend using Azure Database for PostgreSQL since this guide is for deploying using AKS. +::: + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +Follow the steps below to deploy ToolJet on a AKS Kubernetes cluster. + +1. Create an AKS cluster and connect to it to start with the deployment. You can follow the steps as mentioned on the [Azure's documentation](https://docs.microsoft.com/en-us/azure/aks/kubernetes-walkthrough-portal). + +2. Create k8s deployment + + ```bash + curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/AKS/deployment.yaml + ``` + +Make sure to edit the environment variables in the `deployment.yaml`. We advise to use secrets to setup sensitive information. You can check out the available options [here](https://docs.tooljet.com/docs/setup/env-vars). + +:::info +If there are self signed HTTPS endpoints that Tooljet needs to connect to, please make sure that `NODE_EXTRA_CA_CERTS` environment variable is set to the absolute path containing the certificates. You can make use of kubernetes secrets to mount the certificate file onto the containers. +::: + +3. Create k8s service and reserve a static IP and inorder expose it via a service load balancer as mentioned in the [doc](https://docs.microsoft.com/en-us/azure/aks/static-ip). You can refer `service.yaml`. + ```bash + curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/AKS/service.yaml + ``` + +4. Apply YAML configs + + ```bash + kubectl apply -f deployment.yaml, service.yaml + ``` + +You will be able to access your ToolJet installation once the pods and services running. + + + +## ToolJet Database + +If you intend to use this feature, you'd have to set up and deploy PostgREST server which helps querying ToolJet Database. Please [follow the instructions here](/docs/setup/env-vars#tooljet-database) for additional environment variables configuration to be done. + +1. Setup PostgREST server + + ```bash + kubectl apply -f https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/AKS/postgrest.yaml + ``` + +2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/AKS/deployment.yaml) and apply the changes. diff --git a/docs/versioned_docs/version-2.23.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.23.0/setup/kubernetes-gke.md new file mode 100644 index 0000000000..c87a6c36bd --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/kubernetes-gke.md @@ -0,0 +1,81 @@ +--- +id: kubernetes-gke +title: Kubernetes (GKE) +--- + +# Deploying ToolJet on Kubernetes (GKE) + +:::info +You should setup a PostgreSQL database manually to be used by ToolJet. We recommend using Cloud SQL since this guide is for deploying using GKE. +::: + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +Follow the steps below to deploy ToolJet on a GKE Kubernetes cluster. + +1. Create an SSL certificate. + +```bash +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/certificate.yaml +``` + +Change the domain name to the domain/subdomain that you wish to use for ToolJet installation. + +2. Reserve a static IP address using `gcloud` cli + +```bash +gcloud compute addresses create tj-static-ip --global +``` + +3. Create k8s deployment + +```bash +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/deployment.yaml +``` + +Make sure to edit the environment variables in the `deployment.yaml`. You can check out the available options [here](https://docs.tooljet.com/docs/setup/env-vars). + +:::info +If there are self signed HTTPS endpoints that Tooljet needs to connect to, please make sure that `NODE_EXTRA_CA_CERTS` environment variable is set to the absolute path containing the certificates. You can make use of kubernetes secrets to mount the certificate file onto the containers. +::: + +4. Create k8s service + +```bash +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/service.yaml +``` + +5. Create k8s ingress + +```bash +curl -LO https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/ingress.yaml +``` + +Change the domain name to the domain/subdomain that you wish to use for ToolJet installation. + +6. Apply YAML configs + +```bash +kubectl apply -f certificate.yaml, deployment.yaml, service.yaml, ingress.yaml +``` + +:::info +It might take a few minutes to provision the managed certificates. [Managed certificates documentation](https://cloud.google.com/kubernetes-engine/docs/how-to/managed-certs). +::: + +You will be able to access your ToolJet installation once the pods, service and the ingress is running. + + + + +## ToolJet Database + +If you intend to use this feature, you'd have to set up and deploy PostgREST server which helps querying ToolJet Database. Please [follow the instructions here](/docs/setup/env-vars#tooljet-database) for additional environment variables configuration to be done. + +1. Setup PostgREST server + + ```bash + kubectl apply -f https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/postgrest.yaml + ``` + +2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/deployment.yaml) and apply the changes. diff --git a/docs/versioned_docs/version-2.23.0/setup/kubernetes.md b/docs/versioned_docs/version-2.23.0/setup/kubernetes.md new file mode 100644 index 0000000000..10441ef99d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/kubernetes.md @@ -0,0 +1,64 @@ +--- +id: kubernetes +title: Kubernetes +--- + +# Deploying ToolJet on Kubernetes + +:::info +You should setup a PostgreSQL database manually to be used by ToolJet. +::: + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +Follow the steps below to deploy ToolJet on a Kubernetes cluster. + +1. Setup a PostgreSQL database + ToolJet uses a postgres database as the persistent storage for storing data related to users and apps. We do not have plans to support other databases such as MySQL. + +2. Create a Kubernetes secret with name `server`. For the minimal setup, ToolJet requires `pg_host`, `pg_db`, `pg_user`, `pg_password`, `secret_key_base` & `lockbox_key` keys in the secret. + + Read **[environment variables reference](/docs/setup/env-vars)** + +3. Create a Kubernetes deployment + + ```bash + kubectl apply -f https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/deployment.yaml + ``` + +:::info +The file given above is just a template and might not suit production environments. You should download the file and configure parameters such as the replica count and environment variables according to your needs. +::: + +:::info +If there are self signed HTTPS endpoints that Tooljet needs to connect to, please make sure that `NODE_EXTRA_CA_CERTS` environment variable is set to the absolute path containing the certificates. You can make use of kubernetes secrets to mount the certificate file onto the containers. +::: + +4. Verify if ToolJet is running + + ```bash + kubectl get pods + ``` + +5. Create a Kubernetes services to publish the Kubernetes deployment that you've created. This step varies with cloud providers. We have a [template](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/service.yaml) for exposing the ToolJet server as a service using an AWS loadbalancer. + + **Examples:** + + - [Application load balancing on Amazon EKS](https://docs.aws.amazon.com/eks/latest/userguide/alb-ingress.html) + - [GKE Ingress for HTTP(S) Load Balancing](https://cloud.google.com/kubernetes-engine/docs/concepts/ingress) + +:::tip +If you want to serve ToolJet client from services such as Firebase or Netlify, please read the client Setup documentation **[here](/docs/setup/client)**. +::: + +## ToolJet Database + +If you intend to use this feature, you'd have to set up and deploy PostgREST server which helps querying ToolJet Database. Please [follow the instructions here](/docs/setup/env-vars#tooljet-database) for additional environment variables configuration to be done. + +1. Setup PostgREST server + + ```bash + kubectl apply -f https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/postgrest.yaml + ``` + +2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/deployment.yaml) and apply the changes. diff --git a/docs/versioned_docs/version-2.23.0/setup/openshift.md b/docs/versioned_docs/version-2.23.0/setup/openshift.md new file mode 100644 index 0000000000..73f6a7e531 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/openshift.md @@ -0,0 +1,70 @@ +--- +id: openshift +title: Openshift +--- + +# Deploying ToolJet on Openshift + +:::info +You should setup a PostgreSQL database manually to be used by ToolJet. +::: + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +Follow the steps below to deploy ToolJet on Openshift. + +1. Setup a PostgreSQL database ToolJet uses a postgres database as the persistent storage for storing data related to users and apps. We do not have plans to support other databases such as MySQL. + +2. Create a Kubernetes secret with name `server`. For the minimal setup, ToolJet requires `pg_host`, `pg_db`, `pg_user`, `pg_password`, `secret_key_base` & `lockbox_key` keys in the secret. + +Read **[environment variables reference](https://docs.tooljet.com/docs/setup/env-vars)** + +3. Once you have logged into the Openshift developer dashboard click on `+Add` tab. Select import YAML from the local machine. + +:::note +When entering one or more files and use --- to separate each definition +::: + +Copy paste deployment.yaml to the online editor + +``` +https://tooljet-deployments.s3.us-west-1.amazonaws.com/openshift/deployment.yaml +``` + + +Copy paste the service.yaml to the online editor + +``` +https://tooljet-deployments.s3.us-west-1.amazonaws.com/openshift/service.yaml +``` + +
+ +online yaml editor + +
+ +Once you have added the files click on create. + +:info +If there are self signed HTTPS endpoints that Tooljet needs to connect to, please make sure that `NODE_EXTRA_CA_CERTS` environment variable is set to the absolute path containing the certificates. You can make use of kubernetes secrets to mount the certificate file onto the containers. +::: + + +4. Navigate to topology tab and use the visual connector to establish the connect between tooljet-deployment and postgresql as shown in the screenshot below. + +
+ +toplogy + +
+ +## ToolJet Database + +You can know more about tooljet database [here](https://docs.tooljet.com/docs/tooljet-database) + +If you intend to use this feature, you'd have to set up and deploy PostgREST server which helps querying ToolJet Database. Please [follow the instructions here](https://docs.tooljet.com/docs/setup/env-vars#tooljet-database) for additional environment variables configuration to be done. + +``` +https://tooljet-deployments.s3.us-west-1.amazonaws.com/openshift/postgrest.yaml +``` diff --git a/docs/versioned_docs/version-2.23.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.23.0/setup/tooljet-subpath.md new file mode 100644 index 0000000000..e05625d5d6 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/tooljet-subpath.md @@ -0,0 +1,23 @@ +--- +id: tooljet-subpath +title: Deploying ToolJet on a subpath +--- + +ToolJet can now be deployed at a subpath rather than the root (`/`) of a public domain. Example subpath installation URL: **`http://www.yourcompany.com/apps/tooljet`** + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + +You'll need to setup the following environment variables if ToolJet installation is on a domain subpath: + +| variable | value | +| -------- | ---------------------- | +| TOOLJET_HOST | the public URL ( eg: https://www.yourcompany.com ) | +| SERVE_CLIENT | By default, this variable will be unset and the server will serve the client at its `/` end-point. You can set `SERVE_CLIENT` to `false` to disable this behaviour. | +| SUB_PATH | Set a subpath to this variable. The subpath is to be set with trailing `/` and is applicable only when the server is serving the frontend client. ( eg: `/apps/tooljet/` ) | + + +:::info +See all **[Environment Variables](/docs/setup/env-vars)** here. +::: + + diff --git a/docs/versioned_docs/version-2.23.0/setup/try-tooljet.md b/docs/versioned_docs/version-2.23.0/setup/try-tooljet.md new file mode 100644 index 0000000000..eb60b5323a --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/try-tooljet.md @@ -0,0 +1,41 @@ +--- +id: try-tooljet +title: Try ToolJet +--- + +# Try ToolJet + +## On local with Docker + +You can run the command below to have ToolJet up and running right away. + +```bash +docker run \ + --name tooljet \ + --restart unless-stopped \ + -p 80:80 \ + -v tooljet_data:/var/lib/postgresql/13/main \ + tooljet/try:latest +``` +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* + + +#### Setup information + +- Runs the ToolJet server on the port 80 on your machine. +- Container has postgres already configured within. All the data will be available in the docker volume `tooljet_data`. +- You can make use of `--env` or `--env-file` flag to test against various env configurables mentioned [here](https://docs.tooljet.com/docs/setup/env-vars). +- Use `docker stop tooljet` to stop the container and `docker start tooljet` to start the container thereafter. + +## On Play with docker + +You can deploy ToolJet on PWD for free with the one-click-deployment button below. + + + Try in PWD + + +#### Setup information + +- Open port 80 after the docker containers are up and running +- Visit the url shared on the dashboard to try out tooljet diff --git a/docs/versioned_docs/version-2.23.0/setup/v2-migration.md b/docs/versioned_docs/version-2.23.0/setup/v2-migration.md new file mode 100644 index 0000000000..00b3499668 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/setup/v2-migration.md @@ -0,0 +1,34 @@ +--- +id: v2-migration-guide +title: V2 migration guide +--- +# Version 2 migration guide + +ToolJet version 2 comes with a bunch of exciting features, with the major ones being: +1. Multi page +2. Multi env +3. Forms widget +4. [Database](/docs/tooljet-database) (Requires opt-in) +5. [Marketplace](/docs/marketplace) (Requires opt-in) + +Checkout the latest changelog for v2 [here](https://github.com/ToolJet/ToolJet/releases). + +*If you have any questions feel free to join our [Slack Community](https://tooljet.com/slack) or send us an email at hello@tooljet.com.* +## Deployment + +Based on your opted deployment method from our [setup doc](/docs/setup/), you can directly deploy v2 without any additional configuration for the default setup. + +Additional configuration are only required for the opt-in features mentioned above. You can check the respective documentation of those features for the configuration changes needed. + +:::info +Server may take some time to be ready to handle the HTTP request as v2 changes requires some data migrations for the initial deployment. This is automatically triggered as a part of the server boot. +:::: + +## Deprecations + +#### Deployments +- Docker compose deployments with [auto SSL](/docs/1.x.x/setup/docker) is deprecated + +## Help and Support +- Feel free to join our highly active **[Slack Community](https://tooljet.com/slack)** or you can also e-mail us at **hello@tooljet.com**. +- If you have found a bug, please create a **[GitHub issue](https://github.com/ToolJet/ToolJet/issues)** for the same. diff --git a/docs/versioned_docs/version-2.23.0/tooljet_database.md b/docs/versioned_docs/version-2.23.0/tooljet_database.md new file mode 100644 index 0000000000..b5955daf90 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tooljet_database.md @@ -0,0 +1,380 @@ +--- +id: tooljet-database +title: ToolJet Database +--- + +Use the ToolJet-hosted database to build apps faster, and manage your data with ease. ToolJet database require no setup and give you a powerful user interface for managing your data. + +
+ +ToolJet Database + +
+ +## Enabling the ToolJet Database for your instance + +Requires: +- PostgREST server +- Additional configuration for ToolJet server + +This feature is only enabled if [`ENABLE_TOOLJET_DB`](/docs/setup/env-vars#enable-tooljet-database--optional-) is set to `true`. + +### PostgREST server + +PostgREST is a standalone web server that turns your PostgreSQL database directly into queryable RESTful APIs which is utilized for Tooljet Database. This server only talks with ToolJet server and therefore does not have to be publicly exposed. + +:::tip +If you have openssl installed, you can run the following command `openssl rand -hex 32` to generate the value for `PGRST_JWT_SECRET`. + +If this parameter is not specified then PostgREST refuses authentication requests. +::: + +| variable | description | +| ------------------ | ----------------------------------------------- | +| PGRST_JWT_SECRET | JWT token client provided for authentication | +| PGRST_DB_URI | database connection string for tooljet database | +| PGRST_LOG_LEVEL | `info` | + +:::info +Please make sure that DB_URI is given in the format `postgres://[USERNAME]:[PASSWORD]@[HOST]:[PORT]/[DATABASE]` +::: + +#### Additional ToolJet server configuration + + +| variable | description | +| ------------------ | -------------------------------------------- | +| ENABLE_TOOLJET_DB | `true` or `false` | +| TOOLJET_DB | Default value is `tooljet_db` | +| TOOLJET_DB_HOST | database host | +| TOOLJET_DB_USER | database username | +| TOOLJET_DB_PASS | database password | +| TOOLJET_DB_PORT | database port | +| PGRST_JWT_SECRET | JWT token client provided for authentication | +| PGRST_HOST | postgrest database host | + + +If you intent to make changes in the above configuration. Please refer [PostgREST configuration docs](https://postgrest.org/en/stable/configuration.html#environment-variables). + +:::tip +When this feature is enabled, the database name provided for `TOOLJET_DB` will be utilized to create a new database during server boot process in all of our production deploy setups. +Incase you want to trigger it manually, use the command `npm run db:create` on ToolJet server. +::: + +## Features + +ToolJet database allows you to: + +- **[Maintain tables of data](#accessing-tooljet-database)** in a secure database that's only accessible within your ToolJet organization. +- **[Edit, search, filter, sort, and filter](#database-editor)** data using a spreadsheet-like interface. +- **[Quickly build applications and write queries](#querying-data-from-the-tooljet-database)** to interact with the ToolJet Database, just like any other datasource but without any setup. +- **[Export table](#export-table)** from the ToolJet Database to a JSON file. + +## Accessing ToolJet Database + +Once you log-in to your ToolJet account, from the left sidebar of the dashboard you can navigate to **ToolJet Database**. + +The ToolJet Database is available on: **[ToolJet Cloud](https://tooljet.com)**, **[Self-Host](/docs/setup/)**, and **Enterprise Edition**. You can view and manage your database and the data it contains using the **Database editor UI**. + +
+ +ToolJet Database + +
+ +## Database Editor + +You can manage the ToolJet Database directly from the Database Editor. ToolJet Database organizes the data into **tables** that can have different structures. All the tables will be listed lexicographically on the left, click on any of the table to view the table data. + +
+ +ToolJet Database + +
+ +### Create New Table + +For creating a new table in ToolJet Database, click on the **Create New Table** button on the top left corner of the Database editor. + +
+ +ToolJet Database + +
+ +When the **Create New Table** button is clicked, a drawer opens up from the right from where you can enter the details of your new table. + +
+ +ToolJet Database editor + +
+ +#### For creating a new table, you'll need to: +- Enter a **Table name** +- Add **Columns** (Any one column is required to be set as Primary key) + +#### Supported data types +- **varchar**: varchar data type is used to store characters of indefinite length +- **serial**: serial is used to generate a sequence of integers which are often used as the Primary key of a table. +- **int**: It is a numeric data type used to store whole numbers, that is, numbers without fractional components. +- **float**: float is also a numeric data type that is used to store inexact, variable-precision values. +- **boolean**: boolean data type can hold true, false, and null values. +- **bigint**: bigint is a numeric data type that is used to store whole numbers, that is, numbers without fractional components. + +Click on **Create** button to create a new table. + +
+ +ToolJet Database editor + +
+ +### Search Table + +You can enter a search term to search through all tables in the database. + +
+ +ToolJet Database editor + +
+ +### Add column + +You can add a new column to the existing table by clicking on the **Add new column** button from the top of the database editor. + +A drawer from the right will open up from where you can create a new column by entering the values for the new column such as: +- **Column name**: name of the column (key) +- **Data type**: Check available data types [here](#supported-data-types) +- **Default Value** Any default value for the column (not mandatory) + +
+ +ToolJet Database editor + +
+ +### Delete column + +To delete a particular column, just click on the column header and the **delete** button will appear, click on it to delete the column. + +
+ +ToolJet Database editor + +
+ +### Add new row + +To add a new row to the existing table data, click on the **Add new row** button. A drawer will open from the right where you can **enter the values** for the new row. + +
+ +ToolJet Database editor + +
+ +### Edit row + +To edit the rows from the ToolJet database dashboard, click on the **Edit row** button. A drawer will open from the right from where first you need to **select the id** of the row to be edited from the dropdown and then you can edit the cell values of the selected row. + +
+ +ToolJet Database editor + +
+ +### Bulk upload data + +You can bulk upload data to the ToolJet database by clicking on the **Bulk upload data** button on the top of the database editor. On clicking the button, a drawer will open from the right from where you can upload a **CSV** file. This file is used to upsert records onto the table. If data for id column is missing it will insert new record with the row data else if id is present it will update the corresponding record with the corresponding row data. + +From the drawer, users can download the **template CSV file** in which they can enter the data to be uploaded to the ToolJet database's table or format their CSV file in the same way as the template file. + +Once the CSV file is ready, click on the file picker to select the file or drag and drop the file in the file picker. Now, click on the **Upload data** button to upload the data to the ToolJet database. + +**Requirements**: +- The data types of columns in the CSV file should match those in the ToolJet database table. +- The `id` column with a `serial` data type should not contain duplicate values. + +**Limitations**: +- There is a limit of 1000 rows per CSV file that can be uploaded to the ToolJet database. +- The CSV file should not exceed 2MB in size. + +
+ +ToolJet Database editor + +
+ +### Delete records + +To delete one or many records/rows, select on the checkbox at the right of the record or records that you want to delete. As soon as you select a single record, the button to delete record will appear on the top, click on the **Delete record** button to delete the selected records. + +
+ +ToolJet Database editor + +
+ +### Filter + +You can add as many filter as you want into the table by clicking on the **Filter** button present on the top of the database editor. + +#### Adding a filter on the table data +- Select a **column** from the Columns dropdown +- Choose an **[operation](#available-operations-are)** +- Enter a **value** for the selected operation + +#### Available operations are: +- **equals**: This operation is used to check if the value of the column is equal to the value entered in the input field. +- **greater than**: This operation is used to check if the value of the column is greater than the value entered in the input field. +- **greater than or equal**: This operation is used to check if the value of the column is greater than or equal to the value entered in the input field. +- **less than**: This operation is used to check if the value of the column is less than the value entered in the input field. +- **less than or equal**: This operation is used to check if the value of the column is less than or equal to the value entered in the input field. +- **not equal**: This operation is used to check if the value of the column is not equal to the value entered in the input field. +- **like**: This operation is used to check if the value of the column is like the value entered in the input field. This operation is case-sensitive. ex: `ToolJet` will not match `tooljet` +- **ilike**: This operation is used to check if the value of the column is like the value entered in the input field. This operation is case-insensitive. ex: `ToolJet` will match `tooljet` +- **match**: This operation is used to check if the value of the column is like the value entered in the input field. This operation is case-sensitive. ex: `ToolJet` will not match `tooljet`. This operation uses regular expressions. ex: `^ToolJet$` will match `ToolJet` but not `ToolJet Inc`. +- **imatch**: This operation is used to check if the value of the column is like the value entered in the input field. This operation is case-insensitive. This operation uses regular expressions. ex: `^ToolJet$` will match `ToolJet` but not `ToolJet Inc`. +- **in**: This operation is used to check if the value of the column is in the list of values entered in the input field. ex: `1,2,3` +- **contains**: This operation is used to check if the value of the column contains the value entered in the input field. This operation is case-sensitive. ex: `ToolJet` will not match `tooljet` +- **contained**: This operation is used to check if the value of the column is contained in the value entered in the input field. This operation is case-sensitive. ex: `ToolJet` will not match `tooljet` +- **not**: This operation is used to negate the result of the operation selected in the dropdown. ex: `not equals` will return all the records where the value of the column is not equal to the value entered in the input field. + +
+ +ToolJet Database editor + +
+ +### Sort + +To sort the table data, click on the **Sort** button on top, select a **column** from the dropdown, and then choose an order **ascending** or **descending**. + +
+ +ToolJet Database editor + +
+ +### Edit table + +To edit the table name, click on the three vertical dots icon on the right of the table name and then click on the **Edit** option. A drawer will open from the right from where you can edit the table name. + +
+ +ToolJet Database editor + +
+ +### Export table + +The export table option allows you to download the selected table schema in a JSON file. This does not export the table data. + +While [exporting the app](https://docs.tooljet.com/docs/dashboard#export-app), you can choose to export the app with or without table schema connected to the app. + +To export the table schema, click on the three vertical dots icon on the right of the table name and then click on the **Export** option. A JSON file will be downloaded with the table schema. + +
+ +ToolJet Database editor + +
+ +### Delete table + +To delete a table, click on the three vertical dots icon on the right of the table name and then click on the **Delete** option. A confirmation modal will appear, click on the **Delete** button to delete the table. + +
+ +ToolJet Database editor + +
+ +## Querying data from the ToolJet database + +Querying ToolJet database is as easy as querying any other datasource on ToolJet. + +- Go to the **query panel**, and click on the **+Add** button to add a new query, and select **ToolJet Database** +
+ + ToolJet Database editor + +
+ +- Select the **table** that you want to query from the dropdown, choose an **operation** from the dropdown, and then enter the required parameters for the selected operation. Click on the **Run** button to execute the query. +
+ + ToolJet Database editor + +
+ + :::info + - **Preview** button on the query panel returns the query response without executing the query. Once clicked, the response will be displayed on the Preview section of the query panel which can be viewed as JSON or Raw. + - When a new query is created, by default the query name is set to `tooljetdbN` (where N is a number) - you can rename the query by click on the query name or from the left sidebar of query panel. + ::: + +### Available operations + +### List rows +This operation returns all the records from the table + +#### Optional parameters +- **Filter**: Add a condition by choosing a column, an operation, and the value for filtering the records. +- **Sort**: Sort the query response by choosing a column and the order (ascending or descending). +- **Limit**: Limit the number of records to be returned by entering a number. + +### Create row +This operation creates a new record in the table. You can create a single record or multiple records at once. + +#### Required parameters +- **Columns**: Choose the columns for which you want to add values for the new record and enter the values for the selected columns. You can also add a new column by clicking on the **+Add column** button. + +### Update row +This operation updates a record in the table. You can update a single record or multiple records at once. + +#### Required parameter +- **Filter**: Add a condition by choosing a column, an operation, and the value for updating a particular record. +- **Columns**: Choose the columns for which you want to update the values for the selected record and enter the values for the selected columns. + +### Delete row +This operation deletes a record in the table. You can delete a single record or multiple records at once. + +#### Required parameters +- **Filter**: Add a condition by choosing a column, an operation, and the value for deleting a particular record. +- **Limit**: Limit the number of records to be deleted by entering a number. + +### Join tables + +You can join two or more tables in the ToolJet database by using the **Join** operation. + +#### Required parameters +- **From**: In the **From** section, there are the following parameters: + - **Selected Table**: Select the table from which you want to join the other table. + - **Type of Join**: Select the type of join you want to perform. The available options are: `Inner Join`, `Left Join`, `RIght Join`, and `Full Outer Join`. + - **Joining Table**: Select the table that you want to join with the selected table. + - **On**: Select the column from the **selected table** and the **joining table** on which you want to join the tables. Currently, only `=` operation is supported for joining tables. + - **AND or OR condition**: You can add multiple conditions by clicking on the **+Add more** button below each join. The conditions can be joined by `AND` or `OR` operation. + +
+ + ToolJet Database editor + +
+ +- **Filter**: Add a condition by choosing a column, an operation, and the value for filtering the records. The operations supported are same as the [filter operations](#available-operations-are) for the **List rows** operation. +- **Sort**: Sort the query response by choosing a column and the order (ascending or descending). +- **Limit**: Limit the number of records to be returned by entering a number. +- **Offset**: Offset the number of records to be returned by entering a number. This parameter is used for pagination. +- **Select**: Select the columns that you want to return in the query response. By default, all the columns are selected. + +
+ + ToolJet Database editor + +
+ +:::info +If you have any other questions or feedback about **ToolJet Database**, please reach us out at hello@tooljet.com or join our **[Slack Community](https://www.tooljet.com/slack)** +::: diff --git a/docs/versioned_docs/version-2.23.0/tooljetcli.md b/docs/versioned_docs/version-2.23.0/tooljetcli.md new file mode 100644 index 0000000000..b7b15e2a08 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tooljetcli.md @@ -0,0 +1,93 @@ +--- +id: tooljet-cli +title: ToolJet CLI +--- + +ToolJet CLI is a powerful tool that empowers developers to effortlessly create and enhance Marketplace plugins for ToolJet workspace. + +:::info +Starting from ToolJet CLI version 0.0.14, the creation of datasource plugins has been deprecated to prioritise marketplace plugins. This change enhances the plugin development experience and aligns with ToolJet's roadmap. +::: + +## Installation + +In order to manage plugins for the ToolJet marketplace, including creating, updating, and deleting, you will need to utilize **[tooljet-cli](https://www.npmjs.com/package/@tooljet/cli)**. This can be installed via npm by entering the following command: + +```bash +npm install -g @tooljet/cli +``` + +
+ +ToolJet CLI installation + +
+ +#### Ensure the installation was successful + +```bash +tooljet --version +``` + +
+ +ToolJet CLI version check + +
+ +## Commands + +### info + +This command returns the information about where tooljet is being run + +```bash +tooljet info +``` + +
+ +ToolJet CLI info + +
+ +### create + +This command creates a new plugin. + +```bash +tooljet plugin create PLUGIN_NAME +``` +:::tip +Read the detailed guide on creating a marketplace plugin [here](/docs/contributing-guide/marketplace/creating-a-plugin). +::: + +
+ +ToolJet CLI : create plugin + +
+ +### delete + +This command deletes a plugin. + +```bash +tooljet plugin delete PLUGIN_NAME +``` + +The CLI will prompt developers to verify if the plugin to be deleted is a marketplace plugin before proceeding with the deletion. + +
+ +ToolJet CLI: delete plugin + +
+ +### install + +Installs a new npm module inside a tooljet plugin + +```bash +tooljet plugin install [NPM_MODULE] --plugin +``` \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/tracking.md b/docs/versioned_docs/version-2.23.0/tracking.md new file mode 100644 index 0000000000..6033e14f19 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tracking.md @@ -0,0 +1,23 @@ +--- +id: tracking +title: Tracking +slug: /tracking +--- + +# Tracking + +:::tip +ToolJet does not store any data fetched from the data sources. ToolJet acts as a proxy and the data from data sources is sent to the client application without storing. +::: + +## Server + +:::tip +Self-hosted version of ToolJet pings our server to fetch the latest product updates every 24 hours. You can disable this by setting the value of `CHECK_FOR_UPDATES` environment variable to `0`. This feature is enabled by default. +::: + +## Client + +ToolJet tracks anonymous usage data such as page loads and clicks. ToolJet tracks only the events and doesn't capture data from data sources. + +Tracking can be disabled by setting the value environment variable `ENABLE_TRACKING` to `0`. diff --git a/docs/versioned_docs/version-2.23.0/tutorial/_category_.json b/docs/versioned_docs/version-2.23.0/tutorial/_category_.json new file mode 100644 index 0000000000..1ed20f00b1 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Tutorial", + "position": 4, + "collapsed": false +} diff --git a/docs/versioned_docs/version-2.23.0/tutorial/actions.md b/docs/versioned_docs/version-2.23.0/tutorial/actions.md new file mode 100644 index 0000000000..92586941e0 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/actions.md @@ -0,0 +1,31 @@ +--- +id: actions +title: Adding actions +--- + +# Adding actions + +ToolJet supports several actions that can be invoked as the handler for any `event` that is triggered in an application. + +## To add actions + +To attach an action for component events, click on the component's handle, and then click on the `Add handler` button on the +inspector panel available on the right side. + +To attach an action for query events, select the query, go to the `advanced` tab and then click on the `Add handler` button. + +## Available actions + +Some of the actions that ToolJet Support are + + Action| Description| + ----| ----------- | + Show alert | Show an alert message as a bootstrap toast | + Run query | Run any of the data queries that you have created | + Open webpage | Go to another webpage in a new tab | + Goto app | Go to another ToolJet application | + Show modal | Open any modal that you've added | + Close modal | Close any modal that you've added if its already open | + Copy to clipboard | Copy any available text that you see on the application to clipboard | + Set localStorage | Set a key and corresponding value to localStorage | + Generate file | Construct file using data available in your application and let the user download it | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/tutorial/adding-a-datasource.md b/docs/versioned_docs/version-2.23.0/tutorial/adding-a-datasource.md new file mode 100644 index 0000000000..a8e2d9fb8e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/adding-a-datasource.md @@ -0,0 +1,36 @@ +--- +id: adding-a-datasource +title: Adding a data source +--- + +# Adding a data source + +:::tip +The data sources are created on app level and not on workspace level. +::: + +**Datasource manager** is on the left-sidebar of the app builder. To add a new data source, click on the
`Add datasource` button. + + +adding datasource + + +You will be prompted to select the data source that you wish to add. Let's select PostgreSQL for this tutorial. You will then need to provide the credentials of your PostgreSQL database. The fields that are marked as `encrypted` will be encrypted before saving to ToolJet's database. + +
+ +![ToolJet - Tutorial - Adding a data source](/img/tutorial/adding-datasource/datasources.png) + +
+ +The name of the data source must be unique (within the app) and can be changed by clicking on the data source name at the top of the prompt. Click on `Test Connection` button to verify the connection, this might take a couple of minutes. Once verified, save the data source. + +:::tip +If you are using ToolJet cloud and if your data source is not publicly accessible, please white-list our IP address ( shown while creating a new data source ). +::: + +
+ +postgre add datasource + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/tutorial/adding-widget.md b/docs/versioned_docs/version-2.23.0/tutorial/adding-widget.md new file mode 100644 index 0000000000..f1e69e62ee --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/adding-widget.md @@ -0,0 +1,66 @@ +--- +id: adding-widget +title: Adding a widget +--- + +# Adding a widget + +To add a widget, navigate to the `Widget manager` on the right sidebar. It will display the list of built-in widgets that can be added to the app. Use the search functionality to quickly find the widget that you want. + +widget + +## Drag and drop a widget + +Let's add a `table` widget to the app to show the customer data from the query that we created in the previous steps. +To add a widget, drag and drop the widget to the canvas. + +## Resize a widget + +The widgets can be resized and repositioned within the canvas. + +resize + +## Adding widgets to Modal + +To add a widget to Modal, we need to trigger [Show modal action](/docs/tutorial/actions#available-actions) + +:::info +Before triggering `Show modal action` we need to add a modal widget to the canvas. +::: + +- Add a `modal widget` to the app +- Trigger the **Show modal action** +- Click on the canvas area for the `Widget manager` sidebar +- Navigate to the Widget manager on the right sidebar and Drag and drop a widget into the Modal + +adding-widget + +## Resize table columns + +We can resize the column width using the resize handle of the column. + +resize-table-column + +## Change widget properties + +Click on the widget to open the inspect panel on right sidebar. Here you can change the properties of the widgets. Let's configure the table columns to display the customer data. The display order of columns can be changed by dragging icon near the column name. + +inspect panel + +## Connecting data with widget + +Now we will connect the `data` object of the `fetch customers` query with the table. Click on the table widget to open the inspector on the right sidebar. We can see that the data property of the table has an empty array as the value. The data field, like almost every other field on the editor supports single-line javascript code within double brackets. Variable suggestions will be shown as a dropdown while you type the code in the field. + +Let's select the `data` object of the 'postgresql' query. + +` {{queries.postgresql1.data}}` + +Since we have already run the query in the previous step, the data will be immediately displayed in the table. + +table data + +So far in this tutorial, we have connected to a PostgreSQL database and displayed the data on a table. + +:::tip +Read the widget reference of table [here](/docs/widgets/table) for more customizations such as server-side pagination, actions, editing data. +::: diff --git a/docs/versioned_docs/version-2.23.0/tutorial/building-queries.md b/docs/versioned_docs/version-2.23.0/tutorial/building-queries.md new file mode 100644 index 0000000000..9598c2f9da --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/building-queries.md @@ -0,0 +1,53 @@ +--- +id: building-queries +title: Building Queries +--- + +# Building Queries + +Query Editor lives at the bottom of the page. We will now build a query for the PostgreSQL datasource that we connected in the previous step. + +:::tip +You can click on the 'enlarge' icon to enlarge query editor pane. +::: + +- Click on the `+` icon of the query editor to create a new query. +- Select the PostgreSQL datasource created in previous step. +- Copy the query given below and paste on the query area. +- Select SQL mode + +```sql +SELECT * FROM customers; +``` + + +query + + +Query results can be previewed by clicking the `preview` button. Previewing queries will not alter the state of the app. + + +preview + + + +## Advanced options + + +advanced options + + +#### Run query on page load +If this option is enabled, the query will be run when the app is loaded for the first time. The queries can have more than one trigger, ie the same query can later be triggered again using a button's click event or table's row selected event or any other events. + +#### Request confirmation before running query +Enable this option to show a prompt to confirm the action before a query is run. The confirmation prompt will look like this: + +
+ +confirm + +
+ +#### Show notification on success +Enable this option to show a custom message on query completion. Duration of the notification can also be set. diff --git a/docs/versioned_docs/version-2.23.0/tutorial/creating-app.md b/docs/versioned_docs/version-2.23.0/tutorial/creating-app.md new file mode 100644 index 0000000000..08d97e2496 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/creating-app.md @@ -0,0 +1,31 @@ +--- +id: creating-app +title: Creating new app +--- + +# Creating new app + +:::info +Apps in ToolJet binds the widgets, data sources and queries together. +::: + +This tutorial will walk you through building a simple app to fetch customer information from a PostgreSQL database and display the data using the table widget. +To create a new ToolJet app, click on the **'Create new application'** button on the ToolJet dashboard. + + +dashboard create new app + + +You will be redirected to the visual app editor once the app has been created. Create the first version of your app to start building. The name of the app can be changed by clicking on the app name at top-left of the app builder. + +
+ +![ToolJet - Creating an app](/img/tutorial/creating-new-app/visual-app-editor.png) + +
+ +The main components of an app: + +- **[Widgets](https://docs.tooljet.com/docs/tutorial/adding-widget)** - UI components such as tables, buttons, dropdowns. +- **[Data sources](https://docs.tooljet.com/docs/tutorial/adding-a-datasource)** - ToolJet can connect to databases, APIs and external services to fetch and modify data. +- **[Queries](https://docs.tooljet.com/docs/tutorial/building-queries)** - Queries are used to access the connected data sources. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/tutorial/debugger.md b/docs/versioned_docs/version-2.23.0/tutorial/debugger.md new file mode 100644 index 0000000000..bc61761ba4 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/debugger.md @@ -0,0 +1,19 @@ +--- +id: debugger +title: Debugger +--- + +# Debugger + +The debugger captures errors that happens while running the queries. For example, when a database query fails due to the unavailability of a database or when a REST API query fails due to an incorrect URL, the errors will be displayed on the debugger. The debugger also displays relevant data related to the error along with the error message. Debugger is located on the left-sidebar. + + +debugger + + + +## Pin Debugger +You can click on the `pin` icon at the top-right corner of the debugger if you do not want the debugger to close. The debugger will remain open until it is unpinned. + + +pinned debugger diff --git a/docs/versioned_docs/version-2.23.0/tutorial/keyboard-shortcuts.md b/docs/versioned_docs/version-2.23.0/tutorial/keyboard-shortcuts.md new file mode 100644 index 0000000000..f534298ff4 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/keyboard-shortcuts.md @@ -0,0 +1,122 @@ +--- +id: keyboard-shortcuts +title: Keyboard Shortcuts +--- + +# Keyboard Shortcuts + +You can perform operations like undo, redo, clone, or removing the widget directly using the keyboard shortcuts. + +## Copy + +You can copy the component on the visual app editor using the following shortcut keys: + +**On Mac:** `cmd + c` + +**On Linux/Windows:** `ctrl + c` + +
+ +Copy + +
+ +## Cut + +You can cut the component on the visual app editor using the following shortcut keys: + +**On Mac:** `cmd + x` + +**On Linux/Windows:** `ctrl + x` + +
+ +Cut + +
+ +## Paste + +You can paste the selected component using the following shortcut keys: + +**On Mac:** `cmd + v` + +**On Linux/Windows:** `ctrl + v` + +
+ +Paste + +
+ +:::caution +There are few edge cases when copy-paste commands might not work: +- The URL should be `https` and it won't work on http on many browsers +- Recent Firefox versions has some issue with copy functionality +::: + +## Undo + +You can undo any operation performed on the visual app editor using the following shortcut keys: + +**On Mac:** `cmd + z` + +**On Linux/Windows:** `ctrl + z` + +
+ +Undo + +
+ +## Redo + +If you have `undo` an operation and want to redo that again than you can use the following shortcut keys: + +**On Mac:** `cmd + shift + z` + +**On Linux/Windows:** `ctrl + shift + z` + +
+ +Redo + +
+ +## Clone + +Now you can create multiple clones of any widget without having to drag and drop the widget again from the sidebar. Just select any widget that you want to create a clone and use the following shortcut keys: + +**On Mac:** `cmd + d` + +**On Linux/Windows:** `ctrl + d` + +
+ +Clone + +
+ +## Remove widget + +Now you can delete a selected widget by using the following shortcut keys: + +**On Mac:** `delete` + +**On Linux/Windows:** `backspace` + +
+ +Remove + +
+ +## Unselect the selected widget + +You can quickly deselect a widget using the `esc` key. + +
+ +Unselect + +
diff --git a/docs/versioned_docs/version-2.23.0/tutorial/manage-users-groups.md b/docs/versioned_docs/version-2.23.0/tutorial/manage-users-groups.md new file mode 100644 index 0000000000..f75471375c --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/manage-users-groups.md @@ -0,0 +1,208 @@ +--- +id: manage-users-groups +title: Managing Users and Groups +--- + +# Managing Users and Groups + +## Managing Users + +Admin of a workspace can add users to the workspace. To manage the users in your workspace, just go to the **Workspace Settings** from the left sidebar on the dashboard and click on the **Users** option. + +
+ +Manage Users + +
+ +### Inviting users + +Admins can invite anyone to a workspace using the email address. To invite a user: + +- On the **Users** page click on the `Add users` button. +
+ + Manage Users + +
+ +- A drawer from the right will open, navigate to the **Invite with email** tab. Fill in the required information for the new user, including their Full Name, Email address, and select the desired group(s) from the dropdown menu to assign them. Once you have entered all the details, proceed by clicking the **Invite Users** button. +
+ + add new user + +
+ +- An email including the **Invite Link** to join your workspace will be send to the created user. The status will turn from **invited** to **active** after the user successfully joins your workspace using the invite link. + + :::tip + You can also copy the invitation url by clicking on the copy icon next to `invited` status of the created user. + ::: + +
+ + add new user + +
+ +- You can also **Bulk Invite Users** by editing and uploading the sample CSV file including all the users details. Click on the `Add users` button and on the drawer, click on the **Upload CSV file** tab. +
+ + add new user + +
+ + +### Disabling a user's access + +You can disable any active user's access to your workspace by clicking on the **Archive** button and the status of the user will change from **active** to **archived**. + +
+ +archived + +
+ +### Enabling a user's access + +Similar to archiving a user's access, you can enable it again by clicking on **Unarchive**. The status of user will change from **archived** to **invited** and the user will have to join again using the invite link received via the e-mail. + +
+ +status + +
+ +## Managing Groups + +On ToolJet, Admins and Super Admins can create groups for users added in a workspace and grant them access to particular app(s) with specific permissions. To manage groups, just go to the **Workspace Settings** from the left-sidebar of the dashboard and click on the **Groups**. + +
+ +Manage Groups + +
+ +### Group properties + +Every group on ToolJet has **four** sections: + +- [Apps](#apps) +- [Users](#users) +- [Permissions](#permissions) +- [Data Sources](#data-sources) + +#### Apps: + +Admins and Super Admins can add or remove any number of apps for a group of users. To add an app to a group, select an app from the dropdown and click on `Add` button next to it. You can also set app permissions such as `View` or `Edit` for the group. You can set different permissions for different apps in a group. + +
+ +apps + +
+ +#### Users: + +Admins and Super Admins can add or remove any numbers of users in a group. Just select a user from the dropdown and click on `Add` button to add it to a group. To delete a user from a group, click on `Delete` button next to it. + +
+ +users + +
+ +#### Permissions: + +Admins and Super Admins can set granular permission for the users added in that particular group, such as: +- **Create** and **Delete** Apps +- **Create**, **Update**, and **Delete** Folders +- **Create**, **Update**, and **Delete** [Workspace Constants](/docs/org-management/workspaces/workspace_constants/) +- **Create** and **Delete** [Data Sources](/docs/data-sources/overview) + +
+ +permissions + +
+ +#### Data Sources + +Only Admins and Super Admins can define what data sources can be **viewed** or **edited** by the users of that group. + +
+ +permissions + +
+ +:::tip +All the activities performed by any Admin, Super Admin or any user in a workspace is logged in [Audit logs](/docs/Enterprise/audit_logs) - including any activity related with managing users and groups. +::: + +### Predefined Groups + +By default, every workspace will have two User Groups: + +**1. All Users** + +This group contains all the users and admins. + +| Apps | Users | Permissions | +| ----------- | ----------- | ----------- | +| You can add or remove apps. | Modification is disabled. This group will have all the users and admins added in a workspace. | You can edit permissions for all the users globally. | + +
+ +all users + +
+ +**2. Admin** + +This group contains admins by default. Admins can add more admins or remove the users in this group. + +| Apps | Users | Permissions | +| ----------- | ----------- | ----------- | +| Modification is disabled. By default, this group has `Edit` permission for all the apps in a workspace | Admins can add or remove users in this group. | Modification is disabled. By default, all the admins can create and delete apps or create folders. | + +
+ +admin + +
+ +### Creating new group (Paid plans only) + +Option to create a new group is available in the **paid plans** only. To create a new group: + +- Click on `Create new group` button in the **Groups** page. +
+ + new group + +
+ +- Enter a name for the group and click `Create Group` button. +
+ + new group 2 + +
+ +- Once the group is created, you can add **Apps**, **Users** and set their **Permissions** for that group. +
+ + new group 2 + +
+ +### Deleting a group + +To delete a group, click on `Delete` next to it. It will confirm whether you want to delete it or not, Click on `Yes` to delete the group. + +
+ +delete group + +
diff --git a/docs/versioned_docs/version-2.23.0/tutorial/mobile-layout.md b/docs/versioned_docs/version-2.23.0/tutorial/mobile-layout.md new file mode 100644 index 0000000000..6d53baf5fe --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/mobile-layout.md @@ -0,0 +1,26 @@ +--- +id: mobile-layout +title: Mobile layout +--- + +# Mobile layout + +Mobile layout is activated when the width of the window is less than 600px. + +:::tip +Widgets can be shown on desktop, mobile, or both. +::: + + +mobile layout + + +## Adding existing widget to mobile layout +Click on the widget to open inspector. Scroll down to the `layout` section and enable mobile layout. The width of the widget will be adjusted to fit the mobile layout. + +## Adding a new widget to mobile layout +Switch the layout to mobile by clicking the button on the top navigation bar. Drag and drop a widget to the canvas. This widget will not be shown on desktop layout unless enabled from the widget inspector via the "Show on desktop" button manually. + +:::tip +Width of the widgets will be automatically adjusted to fit the screen while viewing the application in app viewer. +::: diff --git a/docs/versioned_docs/version-2.23.0/tutorial/pages.md b/docs/versioned_docs/version-2.23.0/tutorial/pages.md new file mode 100644 index 0000000000..898bcec415 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/pages.md @@ -0,0 +1,231 @@ +--- +id: pages +title: Pages +--- + +Pages allows you to have multiple pages in a single application, making your ToolJet applications more robust and user-friendly. + +
+ +Multi-page app + +
+ +## Pages Panel + +You can open the **Pages Panel** by clicking on the **Pages** icon on the left sidebar of the app-builder. + +
+ +Pages Panel + +
+ +## Panel Options + +- **[Add Page](#add-page)** +- **[Settings](#settings)** +- **[Pin](#pin)** +- **[Search](#search)** + +### Add Page + +On the header of the Pages Manager, the **+** button that allows you to add more pages to your application + +
+ +Pages Panel + +
+ +On clicking the **+** button, a new page will be added, enter the name for the page and press enter. +
+ +Pages Panel + +
+ +### Settings + +From **Settings**, you can hide the **page navigation sidebar** in viewer mode, by enabling the **Disable Menu** option. +
+ +Pages Panel + +
+ +### Pin + +You can pin the pages panel from the **Pin** button and the panel won't close until you **unpin** it. +
+ +Pages Panel + +
+ +### Search + +If there are many pages on the panel then you can use the **Search bar** to look for specific page. +
+ +Pages Panel + +
+ +## Page options + +There are several options available for a Page. To use these options, click on the kebab menu on the right of the page card. + +- **[Page Handle](#page-handle)** +- **[Rename](#rename)** +- **[Mark Home](#mark-home)** +- **[Hide Page on app menu](#hide-page-on-app-menu)** +- **[Duplicate](#duplicate)** +- **[Event Handlers](#event-handlers)** +- **[Disable Page](#disable-page)** +- **[Delete Page](#delete-page)** + +
+ +Pages Panel + +
+ +### Page Handle + +Page Handle is the slug that is added at the end of the application URL. Page Handle get its default value when the page name is entered on the creation of the page. You can change the Page Handle from this option. + +
+ +Pages Panel + +
+ +### Rename + +Rename option will allow you to rename the page. + +
+ +Pages Panel + +
+ +### Mark Home + +Mark home option can be used to make a page the default landing page of the application, so whenever the app will be loaded the page that is marked home will be loaded. + +
+ +Pages Panel + +
+ +:::info +The page which is marked home will have a **Home** icon on the left of the Page Card. +
+ +Pages Panel + +
+::: + +### Hide Page on app menu + +Hide Page option can be used to hide a page from the **page navigation sidebar** in viewer mode. + +
+ +Pages Panel + +
+ +:::info +If a page is hidden then you'll see an **eye** icon on the right of the card. +
+ +Pages Panel + +
+::: + +You can go to the options again and **unhide** the app from the **page navigation sidebar** + +
+ +Pages Panel + +
+ +:::info +After hiding a page, although the page may not appear in the pages navigation sidebar, it can still be accessed by utilizing either the **switch page action** or the **page URL**. + +
+Pages Panel +
+::: + +### Duplicate + +The duplicate page option allows you to create and add a copy of the page in the pages list. The duplicated page will be an exact replica of the original page. + +
+ +Pages Panel + +
+ +### Event Handlers + +Just like other Event Handlers on ToolJet, you can add event handlers too pages too. + +Currently, there is **On page load** event available. You can use all the available actions for this event along with the new actions added specifically for the pages: +- **[switch page](/docs/actions/switch-page)** +- **[set page variable](/docs/actions/set-page-variable)** +- **[unset page variable](/docs/actions/unset-page-variable)** + +
+ +Pages Panel + +
+ +### Disable Page + +Disable page option can be used to disable a page. A disabled page won't be accessible in the viewer mode. + +**Note:** Page marked as **home** can't be disabled. + +
+ +Pages Panel + +
+ +### Delete Page + +You can **delete** a page from an application using this option. + +
+ +Pages Panel + +
+ +:::info +If a page is **Marked Home** then you won't be able to delete and the delete page option will be disabled. +
+ +Pages Panel + +
+::: + +## Exposed variables + +| Variable | Description | +| ----------- | ----------- | +| `handle` | The `handle` represents the slug of the `page` within an app. In the URL `https://app.tooljet.com/applications/crm2/home`, `crm2` refers to the app name, and `home` corresponds to the handle. The handle is automatically set when a page is added, and you can also [rename](/docs/tutorial/pages#page-handle) the `handle` from the Page options. To access the value of the `handle` variable dynamically, use **`{{page.handle}}`**| +| `name` | The `name` indicates the name of the page set during its creation. To access the value of the `name` variable dynamically, use **`{{page.name}}`** | +| `id` | Each page in the ToolJet app receives a unique identifier upon creation. To access the value of the `id` dynamically, use **`{{page.id}}`** | +| `variables` | `variables` is an object that contains all the variables created for a specific page using the **[Set Page variable](/docs/actions/set-page-variable)** action. The value of a specific variable can be accessed dynamically using **`{{page.variables.}}`**, where `` refers to the variable created for that page using the Set Page variable action. | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/tutorial/sharing-and-deploying.md b/docs/versioned_docs/version-2.23.0/tutorial/sharing-and-deploying.md new file mode 100644 index 0000000000..265b61c6a8 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/sharing-and-deploying.md @@ -0,0 +1,55 @@ +--- +id: sharing-and-deploying +title: Preview and Sharing Apps +--- + +# Preview and Sharing Apps + +## Preview + +Clicking on `Preview` will open up the currently opened version of the app in the new tab. This is useful if you want to immediately check the app in production. + + +preview + +## Sharing an app + +Once you have released a version of your app, you can share the app with others using a customised url. To share an app: + +- Click on the **Share** button on the top-right corner + +
+ + +share + + +
+ +- In the dialog box, turn on the toggle switch to `Make the application public` and shareable + +
+ + +toggle + + +
+ +- Create your own `customised URL` for the app and click on `copy` to copy the URL + +
+ +url + + +
+ +- You can also `Embed` your application using the embeddable link + +
+ +embed + + +
diff --git a/docs/versioned_docs/version-2.23.0/tutorial/transformations.md b/docs/versioned_docs/version-2.23.0/tutorial/transformations.md new file mode 100644 index 0000000000..deca9fad6f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/transformations.md @@ -0,0 +1,93 @@ +--- +id: transformations +title: Transformations +--- +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + +# Transformations + +Transformations can be enabled on queries to transform the query results. ToolJet allows you to transform the query results using two programming languages: + +- **[JavaScript](#transform-using-javascript)** +- **[Python](#transform-using-python)** + +:::caution +- Every transformation is scoped to the query it's written for. +- Actions and CSA(Component Specific Actions) cannot be called within the transformation, they can only be called within **[RunJS](/docs/data-sources/run-js)** query or **[RunPy](/docs/data-sources/run-py)** query. +::: + +## Transform using JavaScript + +Let's assume a query is returning the customers data with a `name` row, so we will write a simple transformation to compute `first_name` and `last_name` for all the customers. + +```javascript +// write your code here +// return value will be set as data and the original data will be available as rawData +return data.map((row) => { + return { + ...row, + first_name: row.name.split(' ')[0], + last_name: row.name.split(' ')[1], + }; +}); +``` + +The query will now look like this: + +
+ +Transformation + +
+ +## Transform using Python + +Let's use Python transformation to compute `first_name` and `last_name` for all the customers that we fetch in the previous step. + +```python +return list(map(lambda row: { + **row, + 'first_name': row['name'].split(' ')[0], + 'last_name': row['name'].split(' ')[1], +}, data)) +``` + +#### Example + +- Let's take a look at the data returned by a RESTAPI (using mock data here): +
+ + raw data + +
+ +- Now we will transform the returned data using Python that will append a new key in the returned data called `user` and that user will have the value from the exposed global variables of ToolJet which is `globals.currentUser.email` + ```python + return list(map(lambda item: {**item, "user": f"{globals['currentUser']['email']}"}, data)) + ``` + +- Now, you can click on the preview button to check the transformed data. +
+ + raw data + +
+ +--- + +Click the `Save` button to create the query. Saved queries can be run using the `Run` button on the top-right of query panel. Queries run using the run button will behave just as if it was triggered by an app event like button click and thus will alter the state of the app. You can view the query results using the state inspector on the left side-bar of the app builder. + +
+ +result + +
+ +We can see that `first_name` and `last_name` are added to all the rows in the `data` object of the query. If you need the original data of the query, it will be available in the `rawData` object of the query. + +
+ +raw data + +
diff --git a/docs/versioned_docs/version-2.23.0/tutorial/versioning-and-release.md b/docs/versioned_docs/version-2.23.0/tutorial/versioning-and-release.md new file mode 100644 index 0000000000..315737d0bf --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/tutorial/versioning-and-release.md @@ -0,0 +1,92 @@ +--- +id: versioning-and-release +title: Versioning and Release +--- + +# Versioning and Release + +Versioning and Release lets you version control your apps and release app changes to the users. + +## Versioning + +Versioning is really useful if multiple developers are working on an app, it allows them to save their own version of the app. This also prevents developers from overwriting the other developer's work. + +### Creating a Version + +You can create new versions from **App Version Manager** on the top-right corner. It displays the version of the app that you're currently working and can be used to switch between the different version of the app. To create a new version: + +- Go to the **App Version Manager** from the toolbar and click on the dropdown. It will display all the versions of the app that have been created. The released version name will be in green color. +
+ + app version + +
+ +- Click on **Create new version** button present at the bottom of the dropdown and a modal will pop-up. Enter a **Version Name** and click on **Create version from** dropdown that will include all the versions of the app, choose a version from the dropdown that you want to use for your new version or ToolJet will automatically select the last created version, and then click on `Create new Version` button to add a new version. +
+ + modal + +
+ +### Renaming a version + +If you want to change the name of an app version, navigate to the **version manager** and select the version you wish to rename. From there, you can click on the rename button located beside the version name. This will open a modal where you can modify the version name to your desired choice. + +
+ +version dropdown + +
+ +### Deleting a version + +If you want to remove an app version, go to the **version manager** and locate the version you wish to delete from the dropdown menu. Next to the version, you will find a delete icon. Click on it to initiate the deletion process. + +
+ +version dropdown + +
+ +## Release + +Making a release let's you publish the app and push the changes to production. + +### Releasing a version + +To release a version: + +- Go to the **App Version Manager** and select the `version` from the dropdown that you want to release. +
+ + version dropdown + +
+ +- Click on the `Release` button on the top-right corner. +
+ + release + +
+ +- A confirmation dialog will popup that prompts you to decide whether to release the current version of the app. Clicking on the **Release** button will release the current version of the app. +
+ + release + +
+ + +:::caution +- When an app is made **Public** without being released, it functions similarly to previewing the application. This means that the version that is loaded when accessing the app through its Public app URL will be the same version of the app currently loaded in the app builder. + +- To prevent the unintended publishing of an unfinished app, ToolJet will prompt you to create a new version for making any edits to the `Released version` of an app. Editing of the `Released version` will be blocked until a new version is created. + +
+ +release + +
+::: diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/general-settings.md b/docs/versioned_docs/version-2.23.0/user-authentication/general-settings.md new file mode 100644 index 0000000000..a1427777d1 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/general-settings.md @@ -0,0 +1,38 @@ +--- +id: general-settings +title: General Settings +--- + +# Single Sign-On General Settings + +- Go to the **Workspace Settings** (⚙️) from the left sidebar in the ToolJet dashboard +
+ + General Settings: SSO + +
+ +- Select `SSO` from sidebar and then select **General Settings** +
+ + General Settings: SSO + +
+ +## Enable Signup + +You can enable/disable `Enable signup`. If it is enabled, new account will be created for user's first time SSO sign in else only existing users will be allowed to sign in via SSO. + +## Allowed domains + +You can set allowed domains for SSO login, can add multiple domains comma separated. Allowed all domains by default. + +## Login URL + +You can use the login URL to login directly to the workspace. This will be hidden if Multi-Workspace is disabled. + +
+ +General Settings: SSO + +
diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/password-login.md b/docs/versioned_docs/version-2.23.0/user-authentication/password-login.md new file mode 100644 index 0000000000..4a3160c3c9 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/password-login.md @@ -0,0 +1,32 @@ +--- +id: password-login +title: Password Login +--- + +# Password Login + +Password login is enabled by default for all workspaces. User with admin privilege can enable/disable it. + +- Go to the **Workspace Settings** (⚙️) from the left sidebar in the ToolJet dashboard +
+ + General Settings: SSO + +
+ +- Select `SSO` from sidebar +
+ + General Settings: SSO + +
+ +- Select **Password Login**. You can enable/disable it +
+ + General Settings: SSO + +
+ +## Retry limits +The user password authentication method will be disabled after predefined numbers of wrong password attempts. This feature can be disabled using setting `DISABLE_PASSWORD_RETRY_LIMIT` to `true` in environment variables. Number of retries allowed will be 5 by default, it can be override by `PASSWORD_RETRY_LIMIT` environment variable. diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/sso/_category_.json b/docs/versioned_docs/version-2.23.0/user-authentication/sso/_category_.json new file mode 100644 index 0000000000..109724a4fd --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/sso/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Single Sign-on", + "position": 10, + "collapsed": true +} \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/sso/github.md b/docs/versioned_docs/version-2.23.0/user-authentication/sso/github.md new file mode 100644 index 0000000000..66ab5ccaf9 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/sso/github.md @@ -0,0 +1,67 @@ +--- +id: github +title: GitHub +--- + +# GitHub Single Sign-on + +- Go to the **Workspace Settings** (⚙️) from the left sidebar in the ToolJet dashboard +
+ + General Settings: SSO + +
+ +- Select `SSO` from sidebar and then select **GitHub**. GitHub login will be **disabled** by default, +
+ + General Settings: SSO + +
+ +- Enable GitHub. You can see `Redirect URL` generated +
+ + General Settings: SSO + +
+ +- Go to **[GitHub Developer settings](https://github.com/settings/developers)** and navigate to `OAuth Apps` and create a project. `Authorization callback URL` should be the generated `Redirect URL` in Git manage SSO page. +
+ + General Settings: SSO + +
+ +- Open the application details, and you can see the `Client ID` +
+ + General Settings: SSO + +
+ +- Then create `Client secrets` by clicking `Generate new client secret` +
+ + General Settings: SSO + +
+ +Lastly, enter **Client Id** and **Client Secret** in GitHub manage SSO page and save. + +The GitHub sign-in button will now be available in your ToolJet login screen. + +:::info +Should configure `Host Name` if you are using GitHub Enterprise self hosted. Host name should be a URL and should not ends with `/`, example: `https://github.tooljet.com` +::: + +## Setting default SSO +To set GitHub as default SSO for the instance use environment variable. + +| variable | description | +| ------------------------------------- | ----------------------------------------------------------- | +| SSO_GIT_OAUTH2_CLIENT_ID | GitHub OAuth client id | +| SSO_GIT_OAUTH2_CLIENT_SECRET | GitHub OAuth client secret | +| SSO_GIT_OAUTH2_HOST | GitHub OAuth host name if GitHub is self hosted | + +**Redirect URL should be `/sso/git`** \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/sso/google.md b/docs/versioned_docs/version-2.23.0/user-authentication/sso/google.md new file mode 100644 index 0000000000..9bc12b4dff --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/sso/google.md @@ -0,0 +1,85 @@ +--- +id: google +title: Google +--- + +# Google Single Sign-on + +- Go to the **Workspace Settings** (⚙️) from the left sidebar in the ToolJet dashboard +
+ + General Settings: SSO + +
+ +- Select `SSO` from sidebar and then select **Google**. Google login will be **disabled** by default, +
+ + General Settings: SSO + +
+ +- Enable Google. You can see `Redirect URL` generated +
+ + General Settings: SSO + +
+ +- Go to **[Google cloud console](https://console.cloud.google.com/)** and create a project. +
+ + General Settings: SSO + +
+ +- Go to the **[Google cloud console credentials page](https://console.cloud.google.com/apis/credentials)**, and create an OAuth client ID +
+ + General Settings: SSO + +
+ +- You'll be asked to select user type in consent screen. To allow only users within your workspace, select 'Internal', otherwise, +select 'External'. +
+ + General Settings: SSO + +
+ +- You'll be led to an app registration page where you can set OAuth scopes. Select 'Add or remove scopes' and add the scopes +userinfo.email and userinfo.profile as shown in the image. This will allow ToolJet to store the email and name of the +user who is signing in +
+ + General Settings: SSO + +
+ +- Set the domain on which ToolJet is hosted as an authorized domain +
+ + General Settings: SSO + +
+ +- Set the `Redirect URL` generated at manage SSO `Google` page under Authorised redirect URIs +
+ + General Settings: SSO + +
+ +Lastly, set the `client id` in google manage SSO page. This value will be available from your [Google cloud console credentials page](https://console.cloud.google.com/apis/credentials) + +The Google sign-in button will now be available in your ToolJet login screen. + +## Setting default SSO +To set Google as default SSO for the instance use environment variable. + +| variable | description | +| ------------------------------------- | ----------------------------------------------------------- | +| SSO_GOOGLE_OAUTH2_CLIENT_ID | Google OAuth client id | + +**Redirect URL should be `/sso/google`** diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/sso/ldap.md b/docs/versioned_docs/version-2.23.0/user-authentication/sso/ldap.md new file mode 100644 index 0000000000..0f92b2389b --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/sso/ldap.md @@ -0,0 +1,67 @@ +--- +id: ldap +title: LDAP +--- + +To set up LDAP as Single Sign-On (SSO) for ToolJet, follow these steps: + +1. Access the ToolJet dashboard and click on the ⚙️ icon to open **Workspace Settings** from the left sidebar. + +
+ + SSO :LDAP + +
+ +2. In the Workspace Settings, navigate to the **SSO** section and choose **LDAP**. By default, LDAP login will be **disabled**. + +
+ + SSO :LDAP + +
+ +3. To **enable** LDAP, toggle the switch. Then, add the configuration: + + - **Name**: Enter the name of the SSO. + - **Hostname**: Provide the hostname or IP address of your LDAP server. + - **Port**: Enter the Port number of LDAP server. + - **Base DN**: Enter the base distinguished name. + - **SSL**: Toggle this option to enable the SSL. After enabling you can select the type of SSL: **None** or **Certificates**. If you choose Certificates, you'll need to provide the **Client Key**, **Client Certificate**, and **Server Certificate**. + +
+ + SSO :LDAP + +
+ +4. After making the necessary configurations, click the Save Changes button located at the bottom. + + +5. Next, proceed to the **[General Settings](/docs/user-authentication/general-settings)** and copy the **Login URL** provided. Furthermore, you have the flexibility to choose whether to turn on 'Enable Signups,' allowing users to signup without an invite. Through SSO authentication, we check if the user already exists; if so, they can sign in seamlessly. Otherwise, an error will be displayed. Conversely, with this option disabled, only invited users can log in, provided SSO authentication is successful. + +
+ + SSO :LDAP + +
+ +6. The **Login URL** obtained can be utilized for accessing the workspace. Please note that ToolJet supports LDAP login at the workspace level and not at the instance level. Thus, users will be logged in specifically to the chosen workspace. + +
+ + SSO :LDAP + +
+ +7. Click on the **Sign in with ``** button, and provide your username and password to log in to the workspace. For signing in, ToolJet uses the **common name (cn)** associated with each LDAP server user as the **Username**. Upon the initial login, users will be redirected to the **Workspace Invite** page, while subsequent logins will lead them directly to the ToolJet dashboard. + +
+ + SSO :LDAP + +
+ +:::info +During the first login, ToolJet performs additional checks. It verifies the user groups in the LDAP server, and if the corresponding group exists in the ToolJet workspace, the user will be automatically added to that group. Additionally, ToolJet also looks for the user's profile picture in the LDAP server and updates the ToolJet account accordingly. +::: diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/azuread.md b/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/azuread.md new file mode 100644 index 0000000000..c124c7a852 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/azuread.md @@ -0,0 +1,67 @@ +--- +id: azuread +title: AzureAD +--- + +# AzureAD Single Sign-on + +:::info +To construct a Well Known URL refer this link :: https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-protocols-oidc +::: + +- Open your organisation page and select `app registration` +
+ + Azure AD: SSO + +
+ +- Select `new registration` +
+ + Azure AD: SSO + +
+ +- Open your organisation page and select App registration. + +- Enter name, select supported account type and enter the redirect URL which can be copied from `Manage SSO -> Open Id -> Redirect URL, click on register`. +
+ + Azure AD: SSO + +
+ +- Application will be registered and will be able to view the details + +- Configure Application (Client) ID as `client id` in Open Id configuration page. +
+ + Azure AD: SSO + +
+ +- Click on `Add certificate or secret` next to the **Client credentials**. + +- Click on `+New Client Secret` +
+ + Azure AD: SSO + +
+ +- Give a description, set the expiry, and then click on the `Add` button. +
+ + Azure AD: SSO + +
+ +- Secret will be created, copy value and add it to the `client secret` section of Open Id SSO config. + +- You can brand the redirect page using the branding and properties option. +
+ + Azure AD: SSO + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/google-openid.md b/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/google-openid.md new file mode 100644 index 0000000000..80cd4675c0 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/google-openid.md @@ -0,0 +1,82 @@ +--- +id: google-openid +title: Google (Open ID) +--- + +- Go to the **Workspace Settings** (⚙️) from the left sidebar in the ToolJet dashboard +
+ + Google Open ID + +
+ +- Select `SSO` from workspace options +
+ + Google Open ID + +
+ +- Select `Open ID Connect` from the left sidebar +
+ + Google Open ID + +
+ +- Set **Name** as `Google` and get the **Client ID** and **Client Secret** from your [Google Clound Console](https://console.cloud.google.com/apis/credentials). + +- Set the **Well Known URL** to `https://accounts.google.com/.well-known/openid-configuration` + +#### Generating Cliend ID and Cliend Secret on GCS + +- Go to [Google cloud console](https://console.cloud.google.com/) and create a project. +
+ + Google Open ID + +
+ +- Go to the [Google cloud console credentials page](https://console.cloud.google.com/apis/credentials), and create an OAuth client ID +
+ + Google Open ID + +
+ +- You'll be asked to select user type in consent screen. To allow only users within your workspace, select 'Internal', otherwise, +select 'External'. +
+ + Google Open ID + +
+ +- You'll be led to an app registration page where you can set OAuth scopes. Select 'Add or remove scopes' and add the scopes +userinfo.email and userinfo.profile as shown in the image. This will allow ToolJet to store the email and name of the +user who is signing in +
+ + Google Open ID + +
+ +- Set the domain on which ToolJet is hosted as an authorized domain +
+ + Google Open ID + +
+ +- Set the `Redirect URL` generated at manage SSO `Open ID` page under Authorised redirect URIs +
+ + Google Open ID + +
+ +- Now, you can view your **client ID** and **client secret** from the [Credentials page](https://console.developers.google.com/apis/credentials) in API Console: + - Go to the Credentials page. + - Click the name of your credential or the pencil icon. Your client ID and secret are at the top of the page. + + diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/okta.md b/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/okta.md new file mode 100644 index 0000000000..c10c68592c --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/okta.md @@ -0,0 +1,53 @@ +--- +id: okta +title: Okta +--- + +# Okta Single Sign-on + +- Sign in to [Okta developer console](https://developer.okta.com/) + +- Go to the `Applications` section and click on the `Create App Integration` +
+ + Okta: SSO + +
+ +- Select `Sign-in method` as `OIDC - OpenID Connect` and `Application type` as `Web Application`. Go to the next step +
+ + Okta: SSO + +
+ +- Enter `App integration name` and then enter `Sign-in redirect URIs` as `/sso/okta`. +
+ + Okta: SSO + +
+ +- Create application and configure `Client Credentials` in the UI. +
+ + Okta: SSO + +
+ +- If you wish to show your application on Okta, edit the application and select `Login initiated by` section as `Either Okta or App`, set visibility according to your preference and `Login flow` should `Redirect to app to initiate login (OIDC Compliant)`. +
+ + Okta: SSO + +
+ +:::info Change Grant type +To change the Login flow to `Redirect to app to initiate login (OIDC Compliant)`, its mandatory to change the `Grant type` - `Client acting on behalf of a user` section to `Implicit (hybrid)` and tick `Allow Access Token with implicit grant type`. +::: + +- The Okta sign-in button will now be available in your ToolJet login screen. + +:::info Find Well Known URL +Refer to this Link: https://developer.okta.com/docs/concepts/auth-servers/#org-authorization-server +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/setup.md b/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/setup.md new file mode 100644 index 0000000000..6d71b15c7f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/sso/openid/setup.md @@ -0,0 +1,44 @@ +--- +id: setup +title: Setup +--- + +
Available on: Paid plans
+ +# Configure OpenId Connect Single Sign-on + + +- Go to the **Workspace Settings** (⚙️) from the left sidebar in the ToolJet dashboard +
+ + General Settings: SSO + +
+ +- Select `SSO` from workspace options +
+ + Okta: SSO + +
+ +- Select `OpenId Connect`. +
+ + Okta: SSO + +
+ +- Find and set **Name**, **Client Id**, **Client Secret**, and **Well Known URL** from your Open Id provider. + +### Exposed User Info + +If OpenID is configured on ToolJet version **`v2.6.2-ee2.1.0`** or above, the ToolJet apps will expose the `ssoUserInfo` property under the `currentUser` variables. Check the **[Inspector](/docs/app-builder/left-sidebar#inspector)** doc to learn more. + +The exposed user info can be dynamically accessed throughout the apps using JS **`{{globals.currentUser.ssoUserInfo.}}`** + +
+ +ssouserinfo + +
\ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/sso/saml.md b/docs/versioned_docs/version-2.23.0/user-authentication/sso/saml.md new file mode 100644 index 0000000000..f412c69009 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/sso/saml.md @@ -0,0 +1,79 @@ +--- +id: saml +title: SAML +--- + +ToolJet supports SAML authentication for your workspace. The supported SAML providers are: Okta, Active Directory Federation Services, Azure AD, Auth0 and other SAML SSO providers. + +### Configuring SAML + +To enable SAML authentication, you need to configure the following workspace settings: + +1. Go to **Workspace Settings** > **SSO** > **SAML**. + +
+ + SSO :SAMP + +
+ +2. By default, SAML is disabled. Toggle it on to enable SAML authentication. + +
+ + SSO :SAMP + +
+ +3. Enter the following configuration details: + + - **SAML Provider Name**: Enter the name of your SAML provider. This name will be displayed on the login page. + - **Identity provider metadata**: Upload the data from the metadata file provided by your SAML provider. This file contains the SAML configuration details. + - **Group Attribute**: Enter the name of the attribute that contains the group information of the user. This attribute is used to map the user to the appropriate group. + - **Redirect URL**: Copy the redirect URL provided and paste it in the SAML provider's configuration page. + + :::tip Downloading the metadata from your identity provider + Generally, the metadata is available in the form of an XML file which can be downloaded from your identity provider's dashboard. + + Copy the metadata from the XML file and paste it into the ToolJet's SAML SSO configuration settings. Please ensure that the metadata is pasted in the correct format, as it contains essential configuration details from the identity provider necessary for authentication. + + Additionally, you can often find this data by navigating to https://<your-identity-provider>/federationmetadata/2007-06/federationmetadata.xml + ::: + +
+ + SSO :SAMP + +
+ +4. Once configured, click **Save Changes**. + +### Logging in with SAML + +1. Go to the **[General Settings](/docs/user-authentication/general-settings)** and copy the **Login URL** provided. Furthermore, you have the flexibility to choose whether to turn on 'Enable Signups,' allowing users to signup without an invite. Through SSO authentication, we check if the user already exists; if so, they can sign in seamlessly. Otherwise, an error will be displayed. Conversely, with this option disabled, only invited users can log in, provided SSO authentication is successful. + +
+ + SSO :SAML + +
+ +2. The **Login URL** obtained can be used to access the workspace. Please note that ToolJet supports SAML login at the workspace level, ensuring users are logged in specifically to the selected workspace. + + As a result, users can now log in to your workspace using the provided Login URL. The login page will prominently feature the name of the SAML provider configured in your workspace settings. + +
+ + SSO :SAMP + +
+ +3. Click on **Sign in with `SAML Name`** button and you will be redirected to the SAML provider's login page. + +
+ + SSO :SAMP + +
+ +4. Enter your credentials and click **Login**. If the user is signing in for the first time, they will be redirected to the ToolJet's onboarding page. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/user-authentication/user-lifecycle.md b/docs/versioned_docs/version-2.23.0/user-authentication/user-lifecycle.md new file mode 100644 index 0000000000..48f536b873 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/user-authentication/user-lifecycle.md @@ -0,0 +1,100 @@ +--- +id: user-lifecycle +title: User Lifecycle +--- + +# User Lifecycle + +:::info +Check Workspace docs [here](/docs/tutorial/workspace_overview). +::: + +### User onboarding + + - User can sign up using the sign up link provided on the login page, user will receive a welcome email with activation link. New workspace will be created for the user. + +
+ + ![ToolJet - Workspace sign up](/img/user-lifecycle/signup-mw.png) + +
+ + - Users can be added to multiple workspaces. Users can create their own workspaces and manage them. + +
+ + ![ToolJet - Workspace sign up](/img/user-lifecycle/user-mw.png) + +
+ + - Existing user in active state for a workspace can be invited and on boarded to other workspaces, User will receive an invitation email with join link. If a user does not exist in the system, then they will receive a welcome email to setup the account, user can follow the link and on setup the account, once its done the user will be assigned to the new workspace created for the user. + +
+ + ![ToolJet - Workspace sign up](/img/user-lifecycle/invite-link-mw.png) + +
+ + - Invited user can onboard through SSO login, without using an invitation link from the workspace [login page](/docs/user-authentication/general-settings#login-url) + +
+ + ![ToolJet - Workspace accept invite](/img/user-lifecycle/sso-onboard-sw.png) + +
+ + - If `enable sign up` option in enabled in SSO [general settings](/docs/user-authentication/general-settings#enable-signup) for the workspace, user can setup account through SSO login without an invite from the workspace [login page](/docs/user-authentication/general-settings#login-url) + +
+ + ![ToolJet - Workspace sign up using SSO](/img/user-lifecycle/sso-enable-signup-sw.png) + +
+ +### Archive user + - User can be archived by workspace admin from using `Manage User` page + +
+ + ![ToolJet -Workspace Archive user](/img/user-lifecycle/archive-user.png) + +
+ +### Unarchive user + - User can be unarchive by workspace admin from using `Manage User` page + +
+ + ![ToolJet - Single-Workspace Unarchive user](/img/user-lifecycle/unarchive-user-mw.png) + +
+ + :::info + Archive or unarchive will not affect user login, user can login and use other workspaces where user is in active state. + ::: + +### Switch between workspaces + +
+ + ![ToolJet - Workspace sign up using SSO](/img/user-lifecycle/switch.png) + +
+ + +## User status + +| Status | Able to log in | How to activate | +| -------- | ---------------- | ------------------------------------ | +| active | Yes | | +| invited | No (Yes with SSO)| Login through SSO or invitation link | +| archived | No | Not able to activate. Invite from `Manage Users` page, status will be changed to invited | + +## Workspace SSO flow + - Diagram shows how SSO configurations are chosen in common login page and workspace login page. Instance level SSO is configured in environment variables and Workspace level SSO is configured in respective `Manage SSO` page. + +
+ + ![ToolJet - SSO Flow](/img/user-lifecycle/sso-flow.png) + +
diff --git a/docs/versioned_docs/version-2.23.0/widgets/_category_.json b/docs/versioned_docs/version-2.23.0/widgets/_category_.json new file mode 100644 index 0000000000..28ad4a4735 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Widget Reference", + "position": 6, + "collapsed": true +} \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/bounded-box.md b/docs/versioned_docs/version-2.23.0/widgets/bounded-box.md new file mode 100644 index 0000000000..4e32edcc8e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/bounded-box.md @@ -0,0 +1,134 @@ +--- +id: bounded-box +title: Bounded Box +--- + +# Bounded box + +A **bounded box** is an infinitely customizable image annotation component that can be used to select and tag areas within an image. It supports selection using specific points (landmarking) or drawing rectangular areas (bounding boxes). It can be used to create datasets for machine learning models or to annotate images for other purposes. + +
+ +Bounded Box + +
+ +## Properties + +
+ +Bounded Box + +
+ +
+ +| **Property** | **Description** | **Expected value** | +| :----------- | :----------- | :----------------- | +| **Image URL** | The URL or image data to show it on the component. | Get the image URL dynamically from database: **{{queries.queryname.data[0].url}}** or use [image's base64 data](/docs/how-to/loading-image-pdf-from-db/) | +| **Default value** | The data that will load the default bounded boxes over the image when the app is loaded. | Array of objects. Check the [Default value](#default-value) data properties | +| **Selector** | The bounded box support selection using rectangle or point. | Click **Fx** to set the value `RECTANGLE` or `POINT` | +| **List of labels** | The list of label that will be displayed in the dropdown while selection in the bounded-box. | Labels in array format: `{{['Tree', 'Car', 'Stree light']}}` | + +#### Default value + +Provide the data that will load the default bounding boxes over the image when the app is loaded. The data is expected to be an array of objects format. + +| **Property** | **Description** | **Expected value** | +| :-------- | :------ | :-------- | +| **type** | Sets the type of the bounded box. | `RECTANGLE` or `POINT` | +| **width** | Sets the width of the bounded box in pixels. | Numeric value. If the `type` value is `POINT`, set it to `0` | +| **height** | Sets the height of the bounded box in pixels. | Numeric value. If the `type` value is `POINT`, set it to `0` | +| **x** | Sets the x-coordinate(horizontal) position of the bounded box in the image. | Numerical value ex: `41` | +| **y** | Sets the y-coordinate(vertical) position of the bounded box in the image. | Numerical value ex: `22` | +| **text** | Sets the text value of the bounded box. | It should be one of the labels provided in the **[List of labels](#properties)** property | + +**Example of default values:** + +```js +[ + { + type: 'RECTANGLE', + width: 40, + height: 24, + x: 41, + y: 12, + text: 'Tree' + }, + { + type: 'POINT', + width: 0, + height: 0, + x: 10.28, + y: 81.14, + text: 'Car' + } +] +``` + +## Events + +Events are actions that can be triggered programmatically when the user interacts with the component. Click on the component handle to open its properties on the right. Go to the **Events** accordion and click on **+ Add handler**. + +
+ +Bounded box events + +
+ +
+ +| **Event** | **Description** | +| :----------- | :----------- | +| **On change** | Triggered when the label from the dropdown in the selector is changed in the bounded box. | + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## General + +#### Tooltip + +A Tooltip is often used to specify the extra information when the user hovers the mouse pointer over the component. Once a value is set for Tooltip, hovering over the element will display the specified string as the tooltip text. + +
+ +Bounded box Tooltip + +
+ +## Layout + +#### Show on desktop +Use this toggle to show or hide the component in the desktop view. You can dynamically configure the value by clicking on **`Fx`** and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to **`{{true}}`** or **`{{false}}`**. + +#### Show on mobile +Use this toggle to show or hide the component in the mobile view. You can dynamically configure the value by clicking on **`Fx`** and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to **`{{true}}`** or **`{{false}}`**. + +## Styles + +| Style | Description | Expected value | +| :----------- | :----------- | :----------- | +| **Visibility** | Toggle on or off to control the visibility of the component when the app is loaded | **`{{true}}`** or **`{{false}}`**, By default, it's set to `{{true}}` | +| **Disable** | Toggle on to disable the component. | **`{{true}}`** or **`{{false}}`**, By default, it's set to `{{false}}` | +| **Box shadow** | Sets the add shadow effects around a component's frame. You can specify the horizontal and vertical offsets(through X and Y sliders), blur and spread radius, and color of the shadow. | Values that represent x,y, blur, spread and color. Ex: `9px 11px 5px 5px #00000040` | + +## Exposed variables + +| variable | Description | +| :----------- | :----------- | +| **annotations** | This variable is an array of objects, where each object represents an annotation added to an image. The object contains the following keys: type, x, y, width, height, text, and id | +| **annotations.`type`** | There are two types of annotations: `RECTANGLE` and `POINT` | +| **annotations.`x`** | coordinates on the x axis | +| **annotations.`y`** | coordinates on the y axis | +| **annotations.`width`** | width of the annotation | +| **annotations.`height`** | height of the annotation | +| **annotations.`text`** | label selected for the annotation | +| **annotations.`id`** | unique ID of the annotation (system generated) | + +The values can be accessed dynamically using `{{components.boundedbox1.annotations[0].text}}` or `{{components.boundedbox1.annotations[1].width}}` + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the bounding box component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/button-group.md b/docs/versioned_docs/version-2.23.0/widgets/button-group.md new file mode 100644 index 0000000000..75607f3df8 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/button-group.md @@ -0,0 +1,79 @@ +--- +id: button-group +title: Button Group +--- +# Button group + +The Button group component is used to group a series of buttons together in a single line. It is used to group related buttons. + +
+ +Button group + +
+ +## Properties + +| Properties | Description | Expected Value | +|:----------- |:----------- |:-------------- | +| **label** | Used to set the title of the button-group. | Any **String** value: `Select the options` or `{{queries.queryname.data.text}}` | +| **values** | It can be used to set the values of the button group items. | **Array** of strings and numbers: `{{[1,2,3]}}` | +| **labels** | It can be used to set the labels of the button group items. | **Array** of strings and numbers: `{{['A','B','C']}}` | +| **Default selected** | Initial selected values can be set using this. | **Array** of strings and numbers: `{{[1]}}` will select the first button by default. | +| **Enable multiple selection** | Toggle on or off to enable multiple selection. | **Boolean** value: `{{true}}` or `{{false}}` | + +## Events + +Events are actions that can be triggered programmatically when the user interacts with the component. Click on the component handle to open its properties on the right. Go to the **Events** accordion and click on **+ Add handler**. + +| Events | Description | +|:----------- |:----------- | +| **On click** | This event is triggered when the user clicks on the button in the button group. | + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## General +#### Tooltip + +A Tooltip is often used to display additional information when the user hovers the mouse pointer over the component. Once a value is set for Tooltip, hovering over the element will display the specified string as the tooltip text. + +
+ +Button group layout + +
+ +## Layout + +#### Show on desktop + +Use this toggle to show or hide the component in the desktop view. You can dynamically configure the value by clicking on **Fx** and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to **`{{true}}`** or **`{{false}}`**. + +#### Show on mobile + +Use this toggle to show or hide the component in the mobile view. You can dynamically configure the value by clicking on **Fx** and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to **`{{true}}`** or **`{{false}}`**. + +## Styles + +| Style | Description | Expected value | +| :---------- | :---------- | :-------------- | +| **Background color** | Set a background color for the buttons in buttons group. | Choose a color from the picker or enter the Hex color code. ex: `#000000` | +| **Text color** | Set a text color for the buttons in buttons group. | Choose a color from the picker or enter the Hex color code. ex: `#000000` | +| **Visibility** | Make the component visible or hidden. | **`{{true}}`** or **`{{false}}`**, By default, its value is set to `{{true}}` | +| **Disable** | Disable the component. | **`{{true}}`** or **`{{false}}`**, By default, its value is set to `{{false}}` | +| **Border radius** | Add a border radius to the buttons in the component using this property. | Any numerical value from `0` to `100` | +| **Selected text color** | Use this property to modify the text color of selected button | Choose a color from the picker or enter the Hex color code. ex: `#000000` | +| **Selected background color** | Use this property to modify the background color of selected button | Choose a color from the picker or enter the Hex color code. ex: `#000000` | +| **Box Shadow** | Sets the add shadow effects around a component's frame. You can specify the horizontal and vertical offsets(through X and Y sliders), blur and spread radius, and color of the shadow. | Values that represent X, Y, blur, spread, and color. Example: `9px 11px 5px 5px #00000040`` | + +## Exposed Variables + +| Variable | Description | +| :---------- | :---------- | +| **selected** | If the **enable multiple selection** option is turned off, then the variable is an array of objects, and the first object holds the value of the selected button. However, if the **enable multiple selection** option is turned on, the variable type changes from an array to an object, and the selected button values are stored as a string within that object. The value can be accessed using `{{components.buttongroup1.selected[0]}}` or `{{components.buttongroup1.selected}}` | + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the button-group component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/button.md b/docs/versioned_docs/version-2.23.0/widgets/button.md new file mode 100644 index 0000000000..b0b43280a5 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/button.md @@ -0,0 +1,81 @@ +--- +id: button +title: Button +--- +# Button + +Button component can be used to trigger an action. It can be used to submit a form, navigate to another page, or trigger a query. + + + +## Properties + +| Property | Description | Expected value | +| :----------- | :----------- | :----------- | +| **Button Text** | It can be used to set the label of the button. | Any **String** value: `Send Message`, `Delete`, or `{{queries.xyz.data.action}}` | +| **Loading state** | The loading state can be used to show a spinner as the button content. Loading state is commonly used with isLoading property of the queries to show a loading status while a query is being run. | Toggle the switch **On** or click on **fx** to programmatically set the value to `{{true}}`` or `{{false}}`` | + +## Events + +Events are actions that can be triggered programmatically when the user interacts with the component. Click on the component handle to open its properties on the right. Go to the **Events** accordion and click on **+ Add handler**. + +| Event | Description | +| :----------- | :----------- | +| **On click** | The On click event is triggered when the button is clicked. | +| **On hover** | The On hover event is triggered when the mouse cursor is moved over the button. Just like any other event on ToolJet, you can set multiple handlers for on click event. | + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## General +#### Tooltip + +A Tooltip is often used to display additional information when the user hovers the mouse pointer over the component. Once a value is set for Tooltip, hovering over the element will display the specified string as the tooltip text. + +
+ +ToolJet - Widget Reference - Tooltip + +
+ +## Layout + +#### Show on desktop + +Use this toggle to show or hide the component in the desktop view. You can dynamically configure the value by clicking on **Fx** and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to **`{{true}}`** or **`{{false}}`**. + +#### Show on mobile + +Use this toggle to show or hide the component in the mobile view. You can dynamically configure the value by clicking on **Fx** and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to **`{{true}}`** or **`{{false}}`**. + +## Styles + +| Style | Description | Expected value | +| :----------- | :----------- | :----------- | +| **Background color** | Change the background color. | Choose color from the colorpicker or enter the Hex color code. ex: `#000000` | +| **Text color** | Change the text color. | Choose color from the colorpicker or enter the Hex color code. ex: `#000000` | +| **Loader color** | Change the color of the loader (if loading state is enabled) | Choose color from the colorpicker or enter the Hex color code. ex: `#000000` | +| **Visibility** | Make the component visible or hidden. | **`{{true}}`** or **`{{false}}`**, By default, its value is set to `{{true}}` | +| **Disable** | Disable the button. | **`{{true}}`** or **`{{false}}`**, By default, its value is set to `{{false}}` | +| **Border radius** | Add a border radius to the button using this property. | Any numerical value from `0` to `100` | +| **Border color** | Change the border color of the button. | Choose color from the colorpicker or enter the Hex color code. ex: `#000000` | +| **Box Shadow** | Sets the add shadow effects around a component's frame. You can specify the horizontal and vertical offsets(through X and Y sliders), blur and spread radius, and color of the shadow. | Values that represent X, Y, blur, spread, and color. Example: `9px 11px 5px 5px #00000040`` | + +## Exposed variables + +| Variable | Description | +| :----------- | :----------- | +| **buttonText** | This variable stores the text displayed on the button. Its value can be dynamically accessed through JavaScript using the following syntax: `{{components.button1.buttonText}}` | + +## Component specific actions (CSA) + +Following actions of button component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| :----------- | :----------- | +| **click** | You can regulate the click of a button via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.button1.click()` | +| **setText** | button's text can be controlled using component specific action from any of the event handler. You can also use RunJS query to execute component specific actions: `await components.button1.setText('New Button Text')` | +| **disable** | button can be disabled using the component specific action from any of the event handler. You can also use RunJS query to execute this action: `await components.button1.disable(true)` or `await components.button1.disable(false)` | +| **visibility** | button can be hidden using the component specific action from any of the event handler. You can also use RunJS query to execute this action: `await components.button1.visibility(true)` or `await components.button1.visibility(false)` | +| **loading** | The loading state of the button can be set dynamically using the component specific actions from any of the event handler. You can also use this action from RunJS: `await components.button1.loading(true)` or `await components.button1.loading(false)` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/calendar.md b/docs/versioned_docs/version-2.23.0/widgets/calendar.md new file mode 100644 index 0000000000..fcc162b9d6 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/calendar.md @@ -0,0 +1,220 @@ +--- +id: calendar +title: Calendar +--- +# Calendar + +Calendar widget comes with the following features: +- **Day, month and week level views** +- **Events** +- **Resource scheduling** + +
+ +ToolJet - Widget Reference - Calendar + +
+ +:::caution Restricted components +In order to avoid excessively complex situations, certain components, namely **Calendar**, and **Kanban** are restricted from being placed within the Calendar component using drag-and-drop functionality. + +If the builder attempts to add any of the aforementioned components inside the Calendar, an error message will be displayed: + +` cannot be used as a child component within the Calendar.` +::: + +## Properties + +### Date format +Determines the format in which any date passed to the calendar via any of the properties will be parsed. It also determines the format in which any date made available by the calendar via exposed variables will be displayed. It uses the date format conventions of [moment.js](https://momentjs.com/). The default Date format is set to `MM-DD-YYYY HH:mm:ss A Z`. +### Default date +Determines the date on which the calendar's view will be centered on. By default, the default date is set to the current date using moment.js i.e. `{{moment().format("MM-DD-YYYY HH:mm:ss A Z")}}`. If the calendar is on `month` view, it will show the month on which this date exists. If the calendar is on `week` view, it will show the week on which this date exists. This property needs to be formatted using the `Date format` property which is configurable on the inspector. + +### Events +`Events` property should contain an array of objects, each of which describes the events that the calendar needs to display. + +Assuming that you set the date format to `MM-DD-YYYY HH:mm:ss A Z`, setting the `Events` property to the following code snippet will display an event titled `Sample Event` at the first hour of this day, as displayed in the image of calendar at the beginning of this page. + +```javascript +{{[ + { + title: 'Sample event', + start: `${moment().startOf('day').format('MM-DD-YYYY HH:mm:ss A Z')}`, + end: `${moment().endOf('day').format('MM-DD-YYYY HH:mm:ss A Z')}`, + allDay: false, + tooltip: 'Sample event', + color: 'lightgreen', + } +]}} +``` + +### Event object properties + +| Name | Description | +|------|-------------| +| title | Title of the event | +| start | The date(and time) on which this event begins. Needs to be formatted in the `Date format` you've supplied | +| end | The date(and time) on which this event ends. Needs to be formatted in the `Date format` you've supplied | +| allDay | Optional. Qualifies the event as an 'All day event', which will pin it to date headers on `day` and `week` level views | +| tooltip | Tooltip which will be display when the user hovers over the event | +| color | Background color of the event, any css supported color name or hex code can be used | +| textColor | Color of the event title, any css supported color name or hex code can be used | +| textOrientation | Optional. If it is set to `vertical`, the title of the event will be oriented vertically. | +| resourceId | Applicable only if you're using resource scheduling. This is the id of the resource to which this event correspond to. | + +You may supply any other additional property to the event(s). These additional properties will available to you when the calendar widget +exposes any of the events via its exposed variables. + +### Resources + +Specifying resources will make the calendar categorize `week` view and `day` view for each of the resources specified. + + For example, to categorize week/day view into for three rooms, we specify `resources` this way: + +```javascript +{{[ + {resourceId: 1, title: 'Room A'}, + {resourceId: 2, title: 'Room B'}, + {resourceId: 3, title: 'Room C'}, + ]}} +``` + +If we specify the `resourceId` of any of the events as `1`, then that event will be assigned to `Room A`, generating the following calendar, assuming that we've set the view to `day` and are viewing the day on which this event exists. + +
+ +ToolJet - Widget Reference - Calendar + +
+ +### Default view + +Determines whether the calendar would display a `day`, a `week` or a `month`. Setting this property to anything other than these values will make the calendar default to `month` view. + +The view that is currently selected will be exposed as the variable `currentView`. + +### Start time on week and day view + +This determines the time at which week view and day view cells begins. Keep in mind that this field accepts a date, but still only the time and timezone(if provided) are taken from this date. The date should be provided in the date format chosen by you in the first property field. + +### End time on week and day view + +This determines the time at which week view and day view cells ends. Keep in mind that this field accepts a date, but still only the time and timezone(if provided) are taken from this date. The date should be provided in the date format chosen by you in the first property field. + +### Show toolbar + +Determines whether the calendar toolbar should be displayed or not. Click on `Fx` button to programmatically determine the field value to `{{true}}` or `{{false}}`. + +### Show view switcher + +Determines whether the calendar's buttons that allow user to switch between `month`, `week` and `day` level views will be displayed. Click on `Fx` button to programmatically determine the field value to `{{true}}` or `{{false}}`. + +### Highlight today + +Determines whether the today's card on the calendar should be highlighted or not. Click on `Fx` button to programmatically determine the field value to `{{true}}` or `{{false}}`. + +### Show popover when the event is clicked + +Determines whether to display a popover whenever an event is clicked. Click on `Fx` button to programmatically determine the field value to `{{true}}` or `{{false}}`. + +## Events + +
+ +ToolJet - Widget Reference - Calendar + +
+ +### On Event selected + +This event is fired when the user clicks on a calendar event. + +Last selected event is exposed as `selectedEvent`. + +### on Slot selected + +This event is fired when the user either clicks on an calendar slot(empty cell or empty space of a cell with event) or when they click and drag to select multiple slots. + +Last selected slot(s) are exposed as `selectedSlots`. + +### On Date Navigate + +This event is fired when the user clicks on `Today`, `Next` or `Back` buttons on the calendar. + +The corresponding date to which the user navigated, will be exposed as `currentDate`. + +### On View Change + +This event is fired when a different view is selected by the user. + +The current view is exposed as `currentView`. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. Under the General accordion,you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Calendar + +
+ +## Layout + +
+ +ToolJet - Widget Reference - Calendar + +
+ +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +
+ +ToolJet - Widget Reference - Calendar + +
+ +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Cell size in views classified by resource + +When `resources` are specified, the calendar could take up quite a lot of horizontal space, making the horizontal scroll bar of calendar having to be relied upon all the time. + +If we set this property to `compact`, the cell sizes will be smaller in `week` and `day` views. + +### Header date format on week view + +This format determines how the column header for each day in week view will be displayed. As with every other date format field in ToolJet, this follows the **momentjs** standard of date formatting. By default, its set to `DD MMM`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| selectedEvent | This variable stores information about the event that has been chosen on the calendar component. This object comprises keys like **title**, **start**, **end**, **allDay**, and **color**, and they can be accessed dynamically through JS using the following syntax: `{{components.calendar1.selectedEvent.title}}` or `{{components.calendar1.selectedEvent.start}}` | +| selectedSlots | The variable selectedSlots contains the values of the slots chosen on the calendar component. This object comprises keys like **slots**, **start**, **end**, **resourceId**, and **action**, and they can be accessed dynamically through JS using the following syntax: {{components.calendar1.selectedSlots.slots[0]}} or {{components.calendar1.selectedSlots.end}}. | +| currentView | The currentView variable holds the type of view currently set on the calendar. The value updates when the user changes the view from the calendar header. Types of views supported: `month`, `week`, and `day`. The value can be accessed using `{{components.calendar1.currentView}}` | +| currentDate | The currentDate variable holds the current date data. The date returned by the variable is in the `MM-DD-YYYY HH:mm:ss A Z` format. The value can be accessed using `{{components.calendar1.currentDate}}`| + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the calendar component. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/chart.md b/docs/versioned_docs/version-2.23.0/widgets/chart.md new file mode 100644 index 0000000000..ccd49a7424 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/chart.md @@ -0,0 +1,420 @@ +--- +id: chart +title: Chart +--- +# Chart + +Chart widget takes the chart type, data and styles to draw charts using Plotly.js. + +## How To Use Chart Widget + + + +## Chart types +### Line charts + +**Data requirements:** The data needs to be an array of objects and each object should have `x` and `y` keys. + +**Example:** +```json +[ + { "x": "Jan", "y": 100}, + { "x": "Feb", "y": 80}, + { "x": "Mar", "y": 40}, + { "x": "Apr", "y": 100}, + { "x": "May", "y": 80}, + { "x": "Jun", "y": 40} +] +``` + +The chart will look like this: + +
+ +ToolJet - Widget Reference - Chart + +
+ +### Bar charts + +**Data requirements:** The data needs to be an array of objects and each object should have `x` and `y` keys. + +**Example:** + +```json +[ + { "x": "Jan", "y": 100}, + { "x": "Feb", "y": 80}, + { "x": "Mar", "y": 40}, + { "x": "Apr", "y": 100}, + { "x": "May", "y": 80}, + { "x": "Jun", "y": 40}, + { "x": "Jul", "y": 100}, + { "x": "Aug", "y": 80}, + { "x": "Sep", "y": 40} +] +``` + +The chart will look like this: + +
+ +ToolJet - Widget Reference - Chart + +
+ +### Pie charts + +**Data requirements:** The data needs to be an array of objects and each object should have `label` and `value` keys. + +**Example:** + +```json +[ + { "x": "Jan", "y": 100}, + { "x": "Feb", "y": 80}, + { "x": "Mar", "y": 40}, + { "x": "Apr", "y": 100}, + { "x": "May", "y": 80}, + { "x": "Jun", "y": 40} +] +``` + +The chart will look like this: + +
+ +ToolJet - Widget Reference - Chart + +
+ +## Properties + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +### Title + +This field is used to add a title to your selected chart. + +### Plotly JSON Chart Schema + +You have the option to plot a chart using JSON data in the chart component. This JSON data contains information about the chart type, chart data, and more. You can find details about the JSON properties [here](https://plotly.com/javascript/reference/). + +To work with the JSON data, you need to enable the **Plotly JSON chart schema** toggle in the properties section. Once enabled, you can provide the JSON data in the **JSON description** field. + +The resulting chart will be generated based on the provided JSON data, allowing you to customize the chart's appearance and functionality. + +
+ +ToolJet - Widget Reference - Chart + +
+ +You can refer to the [JSON Chart Schema](https://plotly.com/chart-studio-help/json-chart-schema/) for more information on constructing the JSON data structure. + +
+ +ToolJet - Widget Reference - Chart + +
+ +### Bar Mode + +The **Bar Mode** option allows you to customize the layout and display style specifically for bar charts. This option becomes available when the **Plotly JSON chart schema** toggle is enabled and a JSON schema specific to bar charts is provided. This option provide different modes for organizing and presenting bars within the chart. + +Please note that the **Bar Mode** option only affects the layout of bar charts, and it requires a JSON schema specifically designed for bar charts. It cannot be used to modify the layout of other chart types such as line charts or pie charts. + +It offers four different modes: + +**1. Stack Mode:** Bars are stacked on top of each other, displaying the total value of each category as well as the individual values within the stack. + +**2. Group Mode:** Bars of different categories are grouped together side by side, facilitating direct comparison between the groups and their subcategories. + +**3. Overlay Mode:** Bars from different categories overlap with slight offsets, allowing for detailed visual comparison of individual values across categories. + +**4. Relative Mode:** Bars represent proportions or percentages relative to a reference value, emphasizing the relative significance of each category. + +
+ +ToolJet - Widget Reference - Chart + +
+ +### Using Plotly JSON chart schema + +In the **JSON description**, the value needs to be the `data` array with x and y axis values and at the end we need to specify the `type`. let's take a look at the examples for different chart types. +#### Line + +```bash + { + "data": [ + { + "x": [ + "Jan", + "Feb", + "Mar" + ], + "y": [ + 100, + 80, + 40 + ], + "type": "line" + }, + { + "x": [ + "Jan", + "Feb", + "Mar" + ], + "y": [ + 300, + 30, + 20 + ], + "type": "line" + } + ] + } +``` + +
+ +ToolJet - Widget Reference - Chart + +
+ +#### Bar + +```bash +{ + "data": [ + { + "name": "SF Zoo", + "type": "bar", + "x": [ + 20, + 14, + 23 + ], + "y": [ + "giraffes", + "orangutans", + "monkeys" + ], + "marker": { + "line": { + "color": "rgba(55, 128, 191, 1.0)", + "width": 1 + }, + "color": "rgba(55, 128, 191, 0.6)" + }, + "orientation": "h" + }, + { + "name": "LA Zoo", + "type": "bar", + "x": [ + 12, + 18, + 29 + ], + "y": [ + "giraffes", + "orangutans", + "monkeys" + ], + "marker": { + "line": { + "color": "rgba(255, 153, 51, 1.0)", + "width": 1 + }, + "color": "rgba(255, 153, 51, 0.6)" + }, + "orientation": "h" + } + ], + "layout": { + "barmode": "stack" + }, + "frames": [] +} +``` +
+ +ToolJet - Widget Reference - Chart + +
+ +#### Area + +```bash +{ + "data": [ + { + "uid": "babced", + "fill": "tonexty", + "mode": "none", + "name": "Col2", + "type": "scatter", + "x": [ + "2000-01-01", + "2001-01-01", + "2002-01-01", + "2003-01-01", + "2004-01-01", + "2005-01-01", + "2006-01-01", + "2007-01-01", + "2008-01-01", + "2009-01-01", + "2010-01-01", + "2011-01-01", + "2012-01-01", + "2013-01-01", + "2014-01-01", + "2015-01-01", + "2016-01-01" + ], + "y": [ + "17087182", + "29354370", + "38760373", + "40912332", + "51611646", + "64780617", + "85507314", + "121892559", + "172338726", + "238027855", + "206956723", + "346004403", + "697089489", + "672985183", + "968882453", + "863105652", + "1068513050" + ], + "fillcolor": "rgb(224, 102, 102)" + } + ], + "layout": { + "title": "Total Number of Websites", + "width": 800, + "xaxis": { + "type": "date", + "range": [ + 946702800000, + 1451624400000 + ], + "title": "Source: Scribblrs
Source: Internet Live Stats", + "showgrid": false, + "autorange": true, + "tickformat": "%Y" + }, + "yaxis": { + "type": "linear", + "range": [ + 0, + 1124750578.9473684 + ], + "title": "", + "autorange": true + }, + "height": 500, + "autosize": false + }, + "frames": [] +} +``` + +
+ +ToolJet - Widget Reference - Chart + +
+ +#### Few more exmaples: + +**Link to JSON description:** https://raw.githubusercontent.com/plotly/plotly.js/master/test/image/mocks/0.json + +
+ +ToolJet - Widget Reference - Chart + +
+ +**Link to JSON description:** https://raw.githubusercontent.com/plotly/plotly.js/master/test/image/mocks/12.json + +
+ +ToolJet - Widget Reference - Chart + +
+ +:::tip +Check the **[Plotly documentation](https://plotly.com/chart-studio-help/json-chart-schema/#more-examples)** to explore the all type of charts available. +::: + +## Marker color + +Modify the color of marker using the color picker or by providing a `HEX color code`. + +## Options +### Loading state + +Toggle `on` the switch to display a loader on the widget. You can also programmatically define it's value by clicking on `Fx`, acceptable values are - `{{true}}` and `{{false}}`. + +### Show Axes + +Enable or disable the `x` and `y` axes on the chart through this property. You can also programmatically define it's value by clicking on `Fx`, acceptable values are - `{{true}}` and `{{false}}`. + +### Show grid lines + +Toggle `on` or `off` to show or hide the grid lines on the chart. You can also programmatically define it's value by clicking on `Fx`, acceptable values are - `{{true}}` and `{{false}}`. + +## Layout + +
+ +ToolJet - Widget Reference - Chart + +
+ +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +
+ +ToolJet - Widget Reference - Chart + +
+ +### Padding + +Define a space between the widget element and the widget border using `Padding` property. Use any numerical value between `1` to `100`. + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/checkbox.md b/docs/versioned_docs/version-2.23.0/widgets/checkbox.md new file mode 100644 index 0000000000..9e6639d508 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/checkbox.md @@ -0,0 +1,116 @@ +--- +id: checkbox +title: Checkbox +--- +# Checkbox + +Checkbox widget can be used for allowing the users to make a binary choice, e.g,. unselected or selected. + +:::info +The checkbox widget consists of a single checkbox input. +::: + +## How To Use Checkbox Widget + + + +## Properties + +### Label + +The text is to be used as the label for the checkbox. This field expects a `String` input. + +### Default Status + +The property is used to set the default status (enabled or disabled) of the checkbox widget when the app is loaded. By default, the checkbox component is set to `{{false}}`/disabled. + +### Events + +To add an event to a checkbox component, click on the widget handle to open the widget properties on the right sidebar. Go to the **Events** section and click on **+ Add handler**. + +
+ +ToolJet - Widget Reference - Checkbox + +
+ +#### On check + +On check event is triggered when checkbox input is checked. +#### On uncheck + +On uncheck event is triggered when checkbox input is unchecked. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Checkbox + +
+ +### Layout + +
+ +ToolJet - Widget Reference - Checkbox + +
+ +#### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +#### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +
+ +ToolJet - Widget Reference - Checkbox + +
+ +### Text color + +Change the color of the Text in checkbox by entering the `Hex color code` or choosing a color of your choice from the color-picker. + +### Checkbox color + +You can change the color of the checkbox by entering the `Hex color code` or choosing a color of your choice from the color-picker. + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| value | This variable holds the boolean value `true` if the checkbox is checked and `false` if unchecked. You can access the value dynamically using JS: `{{components.checkbox1.value}}`| + +## Component specific actions (CSA) + +Following actions of checkbox component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| ----------- | ----------- | +| setChecked | You can change the status of the checkbox component using component specific action from within any event handler. Additionally, you have the option to trigger it from the RunJS query: `await components.checkbox1.setChecked(true)` or `await components.checkbox1.setChecked(false)` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/circular-progressbar.md b/docs/versioned_docs/version-2.23.0/widgets/circular-progressbar.md new file mode 100644 index 0000000000..1914c9f6f8 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/circular-progressbar.md @@ -0,0 +1,87 @@ +--- +id: circular-progress-bar +title: Circular Progress Bar +--- +# Circular Progress Bar + +Circular progress bar widget can be used to show progress in a progress circle. + +
+ +ToolJet - Widget Reference - Circular progress bar + +
+ +## Properties + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +
+ +ToolJet - Widget Reference - Circular progress bar + +
+ +| properties | description | Expected Value | +| ----------- | ----------- | --------------- | +| Text | We can set a text inside the progress circle.| It expects a `String`, you can also use js to dynamically update the text as the progress changes. | +| Progress | It can be used to set the progress of the widget. | Progress should be an integer between 0 and 100.| + +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Circular progress bar + +
+ +## Layout + +
+ +ToolJet - Widget Reference - Circular progress bar + +
+ +| Layout | description | +| ----------- | ----------- | +| Show on desktop | Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on Fx to set the value `{{true}}` or `{{false}}`. | +| Show on mobile | Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on Fx to set the value `{{true}}` or `{{false}}`. | + +## Styles + +
+ +ToolJet - Widget Reference - Circular progress bar + +
+ +| properties | description | Expected Value | +| ----------- | ----------- | ------------------- | +| Color | To define stroke color.| `HEX color code` or choose color from color-picker. | +| Text color | To define color of the text inside circular progress bar.| `HEX color code` or choose color from color-picker. | +| Text size | To define the size of the text | Value must between 0-100. | +| Stroke width | To define the width of stroke | Value must between 0-100.| +| Counter Clockwise | Whether to rotate progress bar in counterclockwise direction. | It accepts `{{true}}` and `{{false}}`, Default value is `false`.| +| Circle ratio | To define ratio of the full circle diameter the progressbar should use. | It accepts numerical value and the default is `1`. | +| Visibility | Toggle on or off to control the visibility of the widget. | You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. | + +:::info +Circular progress bar widget uses [react-circular-progress](https://github.com/kevinsqi/react-circular-progressbar) package. Check the repo for further more details about properties and styles. +::: + + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/code-editor.md b/docs/versioned_docs/version-2.23.0/widgets/code-editor.md new file mode 100644 index 0000000000..6434cd0e3f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/code-editor.md @@ -0,0 +1,219 @@ +--- +id: code-editor +title: Code Editor +--- +# Code Editor + +Code Editor widget is a versatile text editor for editing code and supports several languages. + +
+ +ToolJet - Widget Reference - Code editor + +
+ +## Properties + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +
+ +ToolJet - Widget Reference - Code editor + +
+ +| properties | description | Expected value | +| ----------- | ----------- | ----------------- | +| Placeholder | It specifies a hint that describes the expected value.| This field requires a `String` value | +| Mode | It is used to specify the language to be used for the code-editor.| See `info` below for the list of all supported languages | +| Show Line Number | This property is used to show or hide line numbers to the left of the editor.| This fields expects a boolean value `{{true}}` or `{{false}}` | + +:::info +
+Supporting all commonly used languages. +
    +
  • APL
  • +
  • ASN.1
  • +
  • Asterisk dialplan
  • +
  • Brainfuck
  • +
  • C, C++, C#
  • +
  • Ceylon
  • +
  • Clojure
  • +
  • Closure Stylesheets (GSS)
  • +
  • CMake
  • +
  • COBOL
  • +
  • CoffeeScript
  • +
  • Common Lisp
  • +
  • Crystal
  • +
  • CSS
  • +
  • Cypher
  • +
  • Cython
  • +
  • D
  • +
  • Dart
  • +
  • Django (templating language)
  • +
  • Dockerfile
  • +
  • diff
  • +
  • DTD
  • +
  • Dylan
  • +
  • EBNF
  • +
  • ECL
  • +
  • Eiffel
  • +
  • Elixir
  • +
  • Elm
  • +
  • Erlang
  • +
  • Factor
  • +
  • FCL
  • +
  • Forth
  • +
  • Fortran
  • +
  • F#
  • +
  • Gas (AT&T-style assembly)
  • +
  • Gherkin
  • +
  • Go
  • +
  • Groovy
  • +
  • HAML
  • +
  • Handlebars
  • +
  • Haskell
  • +
  • Haxe
  • +
  • HTML embedded (JSP, ASP.NET)
  • +
  • HTML mixed-mode
  • +
  • HTTP
  • +
  • IDL
  • +
  • Java
  • +
  • JavaScript (JSX)
  • +
  • Jinja2
  • +
  • Julia
  • +
  • Kotlin
  • +
  • LESS
  • +
  • LiveScript
  • +
  • Lua
  • +
  • Markdown (GitHub-flavour)
  • +
  • Mathematica
  • +
  • mbox
  • +
  • mIRC
  • +
  • Modelica
  • +
  • MscGen
  • +
  • MUMPS
  • +
  • Nginx
  • +
  • NSIS
  • +
  • N-Triples/N-Quads
  • +
  • Objective C
  • +
  • OCaml
  • +
  • Octave (MATLAB)
  • +
  • Oz
  • +
  • Pascal
  • +
  • PEG.js
  • +
  • Perl
  • +
  • PGP (ASCII armor)
  • +
  • PHP
  • +
  • Pig Latin
  • +
  • PowerShell
  • +
  • Properties files
  • +
  • ProtoBuf
  • +
  • Pug
  • +
  • Puppet
  • +
  • Python
  • +
  • Q
  • +
  • R
  • +
  • RPM
  • +
  • reStructuredText
  • +
  • Ruby
  • +
  • Rust
  • +
  • SAS
  • +
  • Sass
  • +
  • Spreadsheet
  • +
  • Scala
  • +
  • Scheme
  • +
  • SCSS
  • +
  • Shell
  • +
  • Sieve
  • +
  • Slim
  • +
  • Smalltalk
  • +
  • Smarty
  • +
  • Solr
  • +
  • Soy
  • +
  • Stylus
  • +
  • SQL (several dialects)
  • +
  • SPARQL
  • +
  • Squirrel
  • +
  • Swift
  • +
  • sTeX, LaTeX
  • +
  • Tcl
  • +
  • Textile
  • +
  • Tiddlywiki
  • +
  • Tiki wiki
  • +
  • TOML
  • +
  • Tornado (templating language)
  • +
  • troff (for manpages)
  • +
  • TTCN
  • +
  • TTCN Configuration
  • +
  • Turtle
  • +
  • Twig
  • +
  • VB.NET
  • +
  • VBScript
  • +
  • Velocity
  • +
  • Verilog/SystemVerilog
  • +
  • VHDL
  • +
  • Vue.js app
  • +
  • Web IDL
  • +
  • WebAssembly Text Format
  • +
  • XML/HTML
  • +
  • XQuery
  • +
  • Yacas
  • +
  • YAML
  • +
  • YAML frontmatter
  • +
  • Z80
  • +
+
+::: + +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Code editor + +
+ +## Layout + +
+ +ToolJet - Widget Reference - Code editor + +
+ +| Layout | description | +| ----------- | ----------- | +| Show on desktop | Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on Fx to set the value `{{true}}` or `{{false}}`. | +| Show on mobile | Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on Fx to set the value `{{true}}` or `{{false}}`. | + +## Styles + +
+ +ToolJet - Widget Reference - Code editor + +
+ +| Styles | description | +| ----------- | ----------- | +| Visibility | Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. | +| Disable | This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. | +| Border radius | Use this property to modify the border radius of the editor. The field expects only numerical value from `1` to `100`, default is `0`. | + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| value | This variable holds the value whenever the user inputs anything on the code-editor . You can access the value dynamically using JS: `{{components.codeeditor1.value}}`| + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/color-picker.md b/docs/versioned_docs/version-2.23.0/widgets/color-picker.md new file mode 100644 index 0000000000..2c3260315c --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/color-picker.md @@ -0,0 +1,100 @@ +--- +id: color-picker +title: Color Picker +--- + +# Color Picker + +Color Picker widget is used to select the desired color from the color picker + +
+ +ToolJet - Widget Reference - Color Picker + +
+ +## Properties + +### Default Color + +The data needs to be an valid hex color + +- One can change default color either from color picker or using fx (need to provide only respective hex value) + +**Example:** + +```json +Valid color : #000000 or #000 +Invalid Color : #0000, "black" , rgb(0,0,0) , +``` + +
+ +ToolJet - Widget Reference - Color Picker + +
+ +## Events + +To add an event to a color-picker component, click on the widget handle to open the widget properties on the right sidebar. Go to the **Events** section and click on **+ Add handler**. + +
+ +ToolJet - Widget Reference - Color Picker + +
+ +### On change + +On change event is triggered when the color is changed on the color-picker. + +## Layout + +| Layout | description | Expected value | +| --------------- | ----------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| Show on desktop | Toggle on or off to display desktop view. | You can programmatically determining the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | +| Show on mobile | Toggle on or off to display mobile view. | You can programmatically determining the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | + +## Styles + +| Style | Description | +| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Visibility | Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not visible after the app is deployed. By default, it's set to `{{true}}`. | + +### Actions + +| Action | Description | Properties | +| ----------- | ----------- | ------------------ | +| setColor | Set the color. | `color` eg - `#ffffff` | + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Example: Selecting/changing color from the color picker and getting respective hex, rgb and rgba value of selected color +- Let's start by creating a new app and then dragging the Color Picker widget onto the canvas. +- Click on the Color Picker widget, a picker pop-up will appear, one can select desired color from the picker. +- In order to close the appeared picker pop-up, one need's to move away mouse from the picker pop-up and picker pop-up will fade away. +- In the Inspector, inside component, look for colorpicker, where one can get respective hex, rgb and rgba color + +
+ +ToolJet - Widget Reference - Color Picker + +
+ +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| selectedColorHex | This variable gets updated with HEX color code whenever a user selects a color from the color picker. You can access the value dynamically using JS: `{{components.colorpicker1.selectedColorHex}}`| +| selectedColorRGB | This variable gets updated with RGB color code whenever a user selects a color from the color picker. You can access the value dynamically using JS: `{{components.colorpicker1.selectedColorRGB}}`| +| selectedColorRGBA | This variable gets updated with RGBA color code whenever a user selects a color from the color picker. You can access the value dynamically using JS: `{{components.colorpicker1.selectedColorRGBA}}`| + +## Component specific actions (CSA) + +Following actions of color picker component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| ----------- | ----------- | +| setColor | Set a color on the color component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.colorpicker1.setColor('#64A07A')` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/container.md b/docs/versioned_docs/version-2.23.0/widgets/container.md new file mode 100644 index 0000000000..d387bf7ec8 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/container.md @@ -0,0 +1,99 @@ +--- +id: container +title: Container +--- +# Container + +Containers are used to group widgets together. You can move the desired number of widgets inside a container to organize your app better. + +
+ +ToolJet - Widget Reference - Container + +
+ +:::caution Restricted components +In order to avoid excessively complex situations, certain components, namely **Calendar** and **Kanban**, are restricted from being placed within the Container component using drag-and-drop functionality. + +If the builder attempts to add any of the aforementioned components inside the container, an error message will be displayed: + +` cannot be used as a child component within the container.` +::: + +## Enabling vertical scroll on container + +To enable the vertical scroll on the container, drag and place any component to the bottom grid of the container and the container will automatically enable the scrolling. + +
+ +ToolJet - Widget Reference - Container + +
+ +## Loading state + +To activate the loader on the container component, access its properties and dynamically adjust the **Loading State** property by clicking the **Fx** button. You can set it to either `{{true}}` or `{{false}}`. + +For instance, if you wish to display the loader on the container when the query named `restapi1` is in progress, set the **Loading State** value to `{{queries.restapi1.isLoading}}`. + +
+ +ToolJet - Widget Reference - Container + +
+ +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers themouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Container + +
+ +## Layout + +
+ +ToolJet - Widget Reference - Container + +
+ +| Layout | description | +| ----------- | ----------- | +| Show on desktop | This property have toggle switch. If enabled, the Container widget will display in the desktop view else it will not appear. This is enabled by default.| +| Show on mobile | This property have toggle switch. If enabled, the Container wisget will display in the mobile view else it will not appear.| + +## Styles + +
+ +ToolJet - Widget Reference - Container + +
+ +| Style | Description | +| ----------- | ----------- | +| Background Color | You can change the background color of the Container by entering the `Hex color code` or choosing a color of your choice from the color picker. | +| Border radius | Use this property to modify the border radius of the container. The field expects only numerical value from `1` to `100`, default is `0`. | +| Border Color | You can change the border color of the Container by entering the `Hex color code` or choosing a color of your choice from the color picker. | +| Visibility | This is to control the visibility of the widget. If `{{false}}` the widget will not visible after the app is deployed. It can only have boolean values i.e. either `{{true}}` or `{{false}}`. By default, it's set to `{{true}}`. | +| Disable | This property only accepts boolean values. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. | + + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/custom-component.md b/docs/versioned_docs/version-2.23.0/widgets/custom-component.md new file mode 100644 index 0000000000..953e8dcd83 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/custom-component.md @@ -0,0 +1,116 @@ +--- +id: custom-component +title: Custom Component +--- + +# Custom Component + +Custom Component can be used to do create your own React component when the needed functionality isn't available in other components. + +
+ +ToolJet - Widget Reference - Custom Component + +
+ +## Properties + +### Data + +The data needs to be an objects which needs to be passed as `data` props to the custom component + +**Example:** + +```json +{{{ + title: "Hi! There", + buttonText: "Updated Text", + queryName: "runjs1" +}}} +``` + +### Code + +This field is used to add a React code for your custom component. The packages for the custom component can be imported from [Skypack](https://www.skypack.dev/). For example, to import `React` package into the custom component it can be imported as `import React from 'https://cdn.skypack.dev/react'`. + +Tooljet provides 3 props to interact with the app: `data`, `updateData` and `runQuery`. + +- `data` is a shared object between custom component and Tooljet app. +- `updateData` is a function which accepts a single object used to update the data passed to the custom component. +- `runQuery` is a function which accepts a query name as a string used to run the query from the custom component. + +**Example:** + +```js +import React from "https://cdn.skypack.dev/react"; +import ReactDOM from "https://cdn.skypack.dev/react-dom"; +import { Button, Container, Link } from "https://cdn.skypack.dev/@material-ui/core"; + +const MyCustomComponent = ({data, updateData, runQuery}) => ( + +

{data.title}

+ + +
+); + +const ConnectedComponent = Tooljet.connectComponent(MyCustomComponent); + +ReactDOM.render(, document.body); +``` + +:::info +`Tooljet.connectComponent` acts as a HOC and it is required to get access to the data passed into the custom component and run the query +::: + +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Custom Component + +
+ +## Layout + +| Layout | description | Expected value | +| --------------- | ----------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| Show on desktop | Toggle on or off to display desktop view. | You can programmatically determining the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | +| Show on mobile | Toggle on or off to display mobile view. | You can programmatically determining the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | + +## Styles + +| Style | Description | +| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Visibility | Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not visible after the app is deployed. By default, it's set to `{{true}}`. | + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| data | This variable will hold the variables assigned inside the `code` for custom component. You can access the value dynamically using JS: `{{components.customcomponent1.data.title}}`| + + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/date-range-picker.md b/docs/versioned_docs/version-2.23.0/widgets/date-range-picker.md new file mode 100644 index 0000000000..0b27cf4bca --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/date-range-picker.md @@ -0,0 +1,93 @@ +--- +id: date-range-picker +title: Date-range picker +--- +# Date-range picker + +The date-range picker widget allows users to select a range of dates. + +## How To Use Date Range Picker Widget + + + +## Properties + +### Default start date + +Set the start date to be selected by default in the widget + +### Default end date + +Set the start date to be selected by default in the widget + +### Format + +The format of the date selected by the date picker. Default date format is **DD/MM/YYYY**. Date format should be followed as ISO 8601 as mentioned in the [moment documentation](https://momentjs.com/docs/). + +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Date range picker + +
+ +## Events + +Date range picker supports the following events: + +### On select + +The On select event is triggered when the a start date and end date is selected on the picker. Just like any other event on ToolJet, you can set multiple handlers for on select event. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +
+ +ToolJet - Widget Reference - Date range picker + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Border Radius + +Use this property to modify the border radius of the date range picker. The field expects only numerical value from `1` to `100`, default is `0`. +### Visibility + +This is to control the visibility of the widget. If `{{false}}` the widget will not visible after the app is deployed. It can only have boolean values i.e. either `{{true}}` or `{{false}}`. By default, it's set to `{{true}}`. +### Disable + +This property only accepts boolean values. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +| Variables | Description | +| ----------- | ----------- | +| endDate | This variable will hold the date of the endDate selected in the component. You can access the value dynamically using JS: `{{components.customcomponent1.data.title}}`| +| startDate | This variable will hold the value assigned inside the `code` for custom component. You can access the value dynamically using JS: `{{components.customcomponent1.data.title}}`| + + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/datepicker.md b/docs/versioned_docs/version-2.23.0/widgets/datepicker.md new file mode 100644 index 0000000000..22f19e4955 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/datepicker.md @@ -0,0 +1,118 @@ +--- +id: datepicker +title: Datepicker +--- +# Datepicker + +The Datepicker widget allows users to select a single value for date and time from a pre-determined set. + +
+ +ToolJet - Widget Reference - Date picker + +
+ +## How To Use Datepicker Widget + + + +## Events + +To add an event to a date-picker component, click on the widget handle to open the widget properties on the right sidebar. Go to the **Events** section and click on **+ Add handler**. + +### On select + +On select event is triggered when an date is selected. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## Properties + +### Default value + +This value acts as placeholder for the date picker widget, if any value is not provided then the default value will be used from the picker. The default value needs to be a `String` with respect to the `format` field. Ex: If format is set to `MM/YYYY` then provide default value as `04/2022`. + +### Format + +The format of the date selected by the date picker. Default date format is **DD/MM/YYYY**. Date format should be followed as ISO 8601 as mentioned in the [moment documentation](https://momentjs.com/docs/). This field requires a `String` input. Ex: `DD/MM`, `MM/YYYY`, `YY/MM`, `DD/MM/YYYY` etc. + +### Enable time selection? + +Toggle on or off to enable the time selection. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +### Enable date selection? + +Toggle on or off to enable the date selection. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +### Disabled dates + +We can give disabled dates property which will make specific dates disabled and cannot be selected. The default value needs to be an array of`Strings`. + +Example for disabling the 9th of January: +```js +{{['09-01']}} +``` + +Now user won't be able to select the mentioned date since it will be disabled. + +## Validation + +### Custom Validation + +Add a validation for the date input in the widget using the ternary operator. + +Example of validation for selecting dates that are after the current date: +```js +{{moment(components.datepicker1.value, 'DD/MM/YYYY').isAfter(moment()) ? true : 'Date should be after today'}} +``` +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Date picker + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Visibility + +This is to control the visibility of the widget. If `{{false}}` the widget will not visible after the app is deployed. It can only have boolean values i.e. either `{{true}}` or `{{false}}`. By default, it's set to `{{true}}`. + +### Disable + +This property only accepts boolean values. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +### Border Radius + +Use this property to modify the border radius of the date-picker. The field expects only numerical value from `1` to `100`, default is `0`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +| Variables | Description | +| ----------- | ----------- | +| value | This variable will hold the date selected on the component, the date value will be returned according to the format set in the datepicker properties. You can access the value dynamically using JS: `{{components.datepicker1.value}}`| + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/divider.md b/docs/versioned_docs/version-2.23.0/widgets/divider.md new file mode 100644 index 0000000000..469b6626d0 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/divider.md @@ -0,0 +1,65 @@ +--- +id: divider +title: Divider +--- +# Divider + +Divider widget is used to add separator between components. + +
+ +ToolJet - Widget Reference - Divider + +
+ +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Divider + +
+ +## Layout + +
+ +ToolJet - Widget Reference - Divider + +
+ +| properties | description | +| ----------- | ----------- | +| Show on Desktop | This property have toggle switch. If enabled, the divider will display in the desktop view else it will not appear. | +| Show on Mobile | This property have toggle switch. If enabled, the divider will display in the mobile view else it will not appear. | + +## Styles + +
+ +ToolJet - Widget Reference - Divider + +
+ +| properties | description | +| ----------- | ----------- | +| Divider Color | It is used to set the color of the divider. Use hex code to set the background color. | +| Visibility | This property is used to set the visibility of the divider. The property accepts Boolean value. | + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +There are currently no exposed variables for the component. + + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/dropdown.md b/docs/versioned_docs/version-2.23.0/widgets/dropdown.md new file mode 100644 index 0000000000..d50bfc5d0f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/dropdown.md @@ -0,0 +1,160 @@ +--- +id: dropdown +title: Dropdown +--- +# Dropdown + +The Dropdown component can be used to collect user input from a list of options. + +
+ +ToolJet - Widget Reference - Dropdown + +
+ +## Events + +
+ +ToolJet - Widget Reference - Dropdown + +
+ +### Event: On select + +On select event is triggered when an option is selected. + +### Event: On search text changed + +This event is triggered whenever the user searches through the options by typing on the dropdown's input box. The corresponding search text will be exposed as `searchText`. + +## Properties + +
+ +ToolJet - Widget Reference - Dropdown + +
+ +### Label + +Set the value of the label in the dropdown. The value can also be set dynamically using JavaScript. For example, set the Label value to `Select the {{components.text1.text}}` + +### Default value + +Specify the default selected option in the dropdown. + +### Option value + +The option values correspond to the different options available in the dropdown. Dynamically set the option values based on your query, for example: `{{queries.datasource.data.map(item => item.value)}}`. + +### Option labels + +The option labels represent the displayed labels for each value in the dropdown list. Dynamically set the option labels based on your query, for example: `{{queries.datasource.data.map(item => item.value)}}`. + +### Advanced + +Configure the dropdown options and manage them by providing an array of objects as data. You can dynamically generate this data using JavaScript. + +For example: +```json +{{[ {label: 'One',value: 1,disable: false,visible: true},{label: 'Two',value: 2,disable: false,visible: true},{label: 'Three',value: 3,disable: false,visible: true} ]}} +``` +Each object in the array should include the following key-value pairs: + +| Key | Value | +| --- | ----- | +| label | Option label | +| value | Option value | +| disable | Set to true to disable the option for selection, and false to keep it enabled | +| visible | Set to true to display the option in the dropdown list, and false to hide it | + +### Options loading state + +Enable this property to display a loading state in the widget. By default, it is turned off. You can programmatically toggle it by setting the values to `{{true}}` or `{{false}}` using the `Fx` button. + +### Default placeholder + +Set a placeholder value that appears in the dropdown when no default option is selected or set. + +## Validation + +### Custom validation + +Add a validation for the options in dropdown widget using the ternary operator. + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Dropdown + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +
+ +ToolJet - Widget Reference - Dropdown + +
+ +### Border Radius + +Use this property to modify the border radius of the dropdown. The field expects only numerical value from `1` to `100`, default is `0`. + +### Visibility + +This is to control the visibility of the widget. If `{{false}}` the widget will not visible after the app is deployed. It can only have boolean values i.e. either `{{true}}` or `{{false}}`. By default, it's set to `{{true}}`. + +### Selected text color + +Change the text color of the selected option in the widget by providing the `HEX color code` or choosing the color from color picker. + +### Disable + +This property only accepts boolean values. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +### Align text + +You can align the text inside the widget in following ways: left, right, center, justified + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +
+ +ToolJet - Widget Reference - Dropdown widget + +
+ +| Variable | Description | +| -------- | ----------- | +| Value | This variable holds the value of the currently selected item on the dropdown. Value can be accesed using `{{components.dropdown1.value}}` | +| searchText | This variable is initially empty and will hold the value whenever the user searches on the dropdown. searchText's value can be accesed using`{{components.dropdown1.searchText}}` | +| label | The variable label holds the label name of the dropdown. label's value can be accesed using`{{components.dropdown1.searchText}}` | +| optionLabels | The optionLabels holds the option labels for the values of the dropdown. optionLabels can be accesed using`{{components.dropdown1.optionLabels}}` for all the option labels in the array form or `{{components.dropdown1.optionLabels[0]}}` for particular option label | +| selectedOptionLabel | The variable holds the label of the selected option in the dropdown components. The selected option label can be accessed dynamically using `{{components.dropdown1.selectedOptionLabel}}` | + +## Component specific actions (CSA) + +| Actions | Description | +| -------- | ----------- | +| selectOption | You can set an option on the dropdown component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.dropdown1.setOption(1)` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/file-picker.md b/docs/versioned_docs/version-2.23.0/widgets/file-picker.md new file mode 100644 index 0000000000..e428b9acec --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/file-picker.md @@ -0,0 +1,178 @@ +--- +id: file-picker +title: Filepicker +--- +# Filepicker + +Filepicker widget allows the user to drag and drop files or upload files by browsing the filesystem and selecting one or more files in a directory. + +
+ +ToolJet - Widget Reference - File Picker + +
+ +:::info + File types must be a valid [MIME](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types) type according to input element specification or a valid file extension. + + To accept any/all file type(s), set `Accept file types` to an empty value. +::: + +
+ +ToolJet - Widget Reference - File Picker + +
+ +:::tip +[MIME](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types) type determination is not reliable across platforms. CSV files, for example, are reported as text/plain under macOS but as application/vnd.ms-excel under Windows. +::: + +## Events + +
+ +ToolJet - Widget Reference - File Picker + +
+ +### On file selected + +On file selected event is triggered when one or more files are selected by the selector dialogue box. + +### On file loaded + +On file loaded event is triggered when a file is loaded in the browser. + +### On file deselected + +On file selected event can be triggered when one or more files are removed from the picker. + +:::info +Checkout **[this](/docs/how-to/loading-image-pdf-from-db)** guide to learn how to refer or display images/PDFs using base64 string +::: + +## Properties + +### Instruction Text + +Instruction text can be set to give information on the file picker. + +### Use Drop zone + +Creates a drag & drop zone. Files can be dragged and dropped to the "drag & drop" zone. + +### Use File Picker + +On clicking it invokes the default OS file prompt. + +### Pick multiple files + +Allows drag and drop (or selection from the file dialog) of multiple files. `Pick multiple files` is disabled by default. + +### Max file count + +The maximum accepted number of files The default value is `2`. + +### Accept file types + +By providing types, you can make the dropzone accept specific file types and reject the others. Example: `{{"image/*,application/pdf,application/msword"}}` + +### Max size limit + +Maximum file size (in bytes). + +### Min size limit + +Minimum file size (in bytes). + +:::tip +Files can be accepted or rejected based on the file types, maximum file count, maximum file size (in bytes) and minimum file size (in bytes). +If `Pick multiple files` is set to false and additional files are dropped, all files besides the first will be rejected. +Any file that does not have a size in the range of `Max size limit` and `Min size limit` will be rejected. +::: + +## Options + +
+ +ToolJet - Widget Reference - File Picker + +
+ +### Parse content + +Parse the selected files, supports **CSV**, **xls**, and **xlsx** files. + +### File type + +If **Parse content** is enabled, options to auto-detect files and parse content or parse selected file types. + +:::info +- If **Parse content** option is toggled off, **File Type** option will not be available. +- If the **Parse content** option is toggled on, it only parses the next file that is selected, not the already selected one. +::: + +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - File Picker + +
+ +## Layout + +
+ +ToolJet - Widget Reference - File Picker + +
+ +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +
+ +ToolJet - Widget Reference - File Picker + +
+ +### Visibility + +This is to control the visibility of the widget. If `{{false}}` the widget will not visible after the app is deployed. It can only have boolean values i.e. either `{{true}}` or `{{false}}`. By default, it's set to `{{true}}`. + +### Disable + +This property only accepts boolean values. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +### Border Radius + +Use this property to modify the border radius of the filepicker widget. The field expects only numerical value from `1` to `100`, default is `0`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| file | This variable holds the array of objects where each object represents the file loaded on the file picker component. Each object has the following keys: **name**, **type**, **content**, **dataURL**, **base64Data**, **parsedData**, **filePath**. The values can be accesed using `{{components.filepicker1.file[0].base64Data}}` | + +## Component specific actions (CSA) + +| Actions | Description | +| -------- | ----------- | +| clearFiles() | You can clear the selected files on the filepicker component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.filepicker1.clearFiles()` | diff --git a/docs/versioned_docs/version-2.23.0/widgets/form.md b/docs/versioned_docs/version-2.23.0/widgets/form.md new file mode 100644 index 0000000000..e78510b19d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/form.md @@ -0,0 +1,824 @@ +--- +id: form +title: Form +--- + +The **Form** component is designed to capture user input. It can act as a parent component to various components such as **Text**, **Text Input**, **Dropdown** and **Buttons** to initiate specific events. In this document, we'll go through all the configuration options for the **Form** component. + +
+ +Form + +
+
+ +:::caution Restricted components +Components like **Kanban**, **Calendar**, **Modal**, **Container**, **ListView**, **Tabs**, and **Form** can't be dropped inside the Form component. +::: + +## Properties + +| Properties | Description | Expected Value | +| :---------- | :--------------------------- | :------------- | +| **Button To Submit For**m | This dropdown can be used to select a **Button** that will be used to submit the form. | Any button that is a child component inside the **Form** component +| **Loading State** | Loading state can be used to show a spinner while the content is loaded. Loading state is commonly used with the **isLoading** property of queries. | Use the toggle button or dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either `{{true}}` or `{{false}}`| +| **Use Custom Schema** | Enabling this property allows you to provide a schema for the Form component in the JSON format. | Switch the toggle or click on `Fx` to programmatically enable the **JSON schema**| + +:::info +If you need a step-by-step guide on using a **Form** component, you can checkout **[this](/docs/how-to/use-form-component)** guide. +::: + +## Using Custom Schema + +To provide the form schema in JSON format, we'll pass a JavaScript object with **title**, **properties** and **submitButton**. + +| Key | Description | +| :----------- | :----------- | +| title | The **title** key specifies the title of the form. | +| properties | The **properties** key holds an object that defines the properties of the components that will be inside the form. | +| submitButton | The **submitButton** key holds an object that defines the properties of the Submit Button of the form. | + +This **[list](/docs/widgets/form#custom-schema-examples)** provides examples of Custom Schema for all components that can be used in a Form component. + +```js +{{ + { + title: '', // Provide title for Form + properties: { + + }, // Provide schema of the components that will be inside the form + submitButton: { + + } // Provide schema of the submit button + } +}} +``` + +Here's an example using the custom schema of **Text Input**, **Number Input** and **Dropdown** components: + +```js +{{{ + "title":"Event Registration", + "properties":{ + "textinput1":{ + "type":"textinput", + "value":"", + "placeholder":"Enter Full Name", + "label":"Full Name", + "validation":{ + "maxLength":30, + "minLength":5 + }, + "styles":{ + "backgroundColor":"#00000000", + "borderRadius":5, + "borderColor":"#4299e1", + "errorTextColor":"#4299e1", + "disabled":false, + "visibility":"true", + "textColor":"#4299e1" + } + }, + "numberInput1":{ + "type":"number", + "styles":{ + "backgroundColor":"#f6f5ff", + "borderRadius":5, + "textColor":"#4299e1", + "borderColor":"#4299e1", + "disabled":false, + "visibility":"true" + }, + "value":22, + "maxValue":100, + "minValue":14, + "placeholder":"Enter your age", + "label":"Age" + }, + "dropdown1":{ + "type":"dropdown", + "values":[ + 1, + 2, + 3 + ], + "displayValues":[ + "Male", + "Female", + "Perfer not to Answer" + ], + "loading":false, + "value":3, + "label":"Gender", + "styles":{ + "disabled":false, + "visibility":"true", + "borderRadius":5, + "borderColor":"#4299e1", + "justifyContent":"center" + } + } + }, + "submitButton":{ + "value":"Submit", + "styles":{ + "backgroundColor":"#3A433B", + "borderColor":"#595959" + } + } +} +}} +``` + +
+ Example form schema +
+ +## Events + +To add an event to the **Form** component, go to the **Events** section and click on **Add handler**. + +| Event | Description | +|:------------|:-----------------| +| **On submit** | **On submit** event is triggered when the submit button on the form component is clicked. | +| **On invalid** | **On invalid** event is triggered when the input on the form is invalid. | + + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## General +Tooltip + +A Tooltip is often used to specify the extra information when the user hovers the mouse pointer over the component. Once a value is set for Tooltip, hovering over the element will display the specified string as the tooltip text. + +
+ Tooltip Example +
+ +## Layout + +Show on desktop + +Use this toggle to show or hide the component in the desktop view. You can dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to `{{true}}` or `{{false}}`. + +Show on mobile + +Use this toggle to show or hide the component in the mobile view. You can dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to `{{true}}` or `{{false}}`. + +--- + +## Styles + +| Style | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **Background color** | Changes the background color of the form. | Hex color code/choose a color using the color picker| +| **Border radius** | Adjusts the roundness of the component's corners. | Numeric value| +| **Border color** | Changes the border color of the component.| Hex color code/choose a color using the color picker| +| **Visibility** | Controls the visibility of the component. If set to `{{false}}`, the component will not be visible.| Use the toggle button OR click on `Fx` to pass a boolean value or a logical expression that returns a boolean value i.e. either `{{true}}` or `{{false}}`| +| **Disable** | Makes the component non-functional when set to true. | Use the toggle button OR click on `Fx` to pass a boolean value or a logical expression that returns a boolean value i.e. either `{{true}}` or `{{false}}`| + + +## General + +Box Shadow + +The **Box Shadow** property is used to add shadow effects around a component's frame. You can specify the horizontal and vertical offsets(through X and Y sliders), blur and spread radius, and color of the shadow. + +
+ Box Shadow Example +
+ +## Exposed Variables + +| Variables | Description | Expected Value +| :----------- | :----------- | :-------- | +| **data** | This variable holds the data of all the components that are nested inside the form component. | You can access the value dynamically using JS. For example, `{{components.form1.data.numberinput1.value}}` + +## Component Specific Actions (CSA) + +Following actions of form component can be controlled using the Component Specific Actions(CSA): + +| Actions | Description | +| :----------- | :----------- | +| **submitForm** | Submits the form data via a **[component-specific action](/docs/actions/control-component/)** within any event handler. Additionally, there is an option to employ a RunJS query to execute component-specific actions such as `await components.form1.submitForm()` | +| **resetForm** | Resets the form data via a **[component-specific action](/docs/actions/control-component/)** within any event handler. Additionally, there is an option to employ a RunJS query to execute component-specific actions such as `await components.form1.resetForm()` | + +## Custom Schema Examples +- **[Datepicker](#datepicker)** +- **[Number Input](#number-input)** +- **[Password](#password)** +- **[Checkbox](#checkbox)** +- **[Toggle](#toggle)** +- **[Text Area](#text-area)** +- **[Date Range Picker](#date-range-picker)** +- **[Multiselect](#multiselect)** +- **[Star Rating](#star-rating)** +- **[File Picker](#file-picker)** +- **[Text Input](#text-input)** +- **[Dropdown](#dropdown)** +- **[Button](#button)** +- **[Text](#text)** +- **[Radio](#radio)** + +### Datepicker + +Properties that can be used in Datepicker schema are: + +```js +datepicker1: { + type: 'datepicker', + styles: { + borderRadius: 5, + disabled: false, + visibility: 'true' + }, + value: '09/09/2023', + disabledDates: ['08/09/2023'], + enableTime: true, + format: 'DD/MM/YYYY', + label: 'Select a date' +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'datepicker' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `borderRadius`, `disabled`, `visibility` etc. | +| **borderRadius** | Specifies the border radius of the component. | Numeric value like 5, 10, 20 etc. | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **value** | Specifies the default date of the datepicker. | Any date in the format specified in the `format` key | +| **disabledDates** | Specifies the dates that you want to disable. | Provide the dates in an array that you want to disable | +| **enableTime** | Specifies whether to enable time or not. | set `true` to enable time or `false` to disable it | +| **format** | Specifies the format of the date. | 'DD/MM/YYYY' | +| **label** | Specifies the label of the component. | Any string value | + + +
+ Form custom schema +
+ +### Number Input + +**Properties** + +```js +numberInput1: { + type: 'number', + styles: { + backgroundColor: '#f6f5ff', + borderRadius: 20, + textColor: 'red', + borderColor: 'blue', + disabled: false, + visibility: 'true' + }, + value: 10, + maxValue: 12, + minValue: 6, + placeholder: 'test', + label: 'Number Input' +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'number' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `backgroundColor`, `borderRadius`, `textColor`, `borderColor`, `disabled`, `visibility` etc. | +| **backgroundColor** | Specifies the background color of the component. | Color name or Hex color code '#f6f5ff' | +| **borderRadius** | Specifies the border radius of the component. | Numeric value like 5, 10, 20 etc. | +| **textColor** | Specifies the text color of the component. | Color name or Hex color code '#f6f5ff'| +| **borderColor** | Specifies the border color of the component. | Color name or Hex color code '#f6f5ff'| +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **value** | Specifies the default value of the number input. | Numeric value | +| **maxValue** | Specifies the maximum value of the number input. | Numeric value | +| **minValue** | Specifies the minimum value of the number input. | Numeric value | +| **placeholder** | Specifies the placeholder text of the number input. | Any string value | +| **label** | Specifies the label of the component. | Any string value | + +
+ +Form custom schema + +
+ +### Password + +**Properties** + +```js +passwordInput1: { + type: 'password', + styles: { + backgroundColor: '#f6f5ff', + borderRadius: 10, + disabled: false, + visibility: 'true' + }, + validation: { + maxLength: 9, + minLength: 5, + regex: '^(?=.*[A-Za-z])(?=.*\\d)[A-Za-z\\d]{8,}$' + }, + placeholder: 'Enter a password', + label: '' +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'password' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `backgroundColor`, `borderRadius`, `disabled`, `visibility` etc. | +| **backgroundColor** | Specifies the background color of the component. | Color name or Hex color code '#f6f5ff' | +| **borderRadius** | Specifies the border radius of the component. | Numeric value like 10 | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **validation** | Specifies validation rules for the password. | Object containing `maxLength`, `minLength`, and `regex` properties | +| **maxLength** | Specifies the maximum length of the password. | Numeric value like 9 | +| **minLength** | Specifies the minimum length of the password. | Numeric value like 5 | +| **regex** | Specifies the regular expression for password validation. | Regular expression pattern like '^(?=.*[A-Za-z])(?=.*\\d)[A-Za-z\\d]{8,}$' | +| **placeholder** | Specifies the placeholder text of the password input. | Any string value like 'Enter a password' | +| **label** | Specifies the label of the component. | Any string value (in this case, it's an empty string), to hide the label you can use whitespace within quotes `' '` | + + +
+ +Form custom schema + +
+ +### Checkbox + +**Properties** + +```js +checkbox1: { + type: 'checkbox', + styles: { + checkboxColor: 'red', + disabled: false, + textColor: 'red', + visibility: 'true' + }, + value: false, + label: 'Checkbox' +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'checkbox' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `checkboxColor`, `disabled`, `textColor`, `visibility` etc. | +| **checkboxColor** | Specifies the color of the checkbox. | Color name or Hex color code '#f6f5ff' | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **textColor** | Specifies the text color of the component. | Color name or Hex color code '#f6f5ff' | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **value** | Specifies the default value of the checkbox. | Boolean value (true or false) | +| **label** | Specifies the label of the component. | Any string value like 'Checkbox' | + + +
+ +Form custom schema + +
+ +### Toggle + +**Properties** + +```js +toggleswitch1: { + type: 'toggle', + styles: { + textColor: 'blue', + disabled: false, + visibility: 'true', + toggleSwitchColor: 'red' + }, + value: true, + label: 'Toggle switch' +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'toggle' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `textColor`, `disabled`, `visibility`, `toggleSwitchColor` etc. | +| **textColor** | Specifies the text color of the component. | Color name or Hex color code '#f6f5ff' | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **toggleSwitchColor** | Specifies the color of the toggle switch. | Color name or Hex color code '#f6f5ff' | +| **value** | Specifies the default value of the toggle switch. | Boolean value (true or false) | +| **label** | Specifies the label of the component. | Any string value like 'Toggle switch' | + + +
+ +Form custom schema + +
+ +### Text Area + +**Properties** + +```js +textArea1: { + type: 'textarea', + styles: { + disabled: false, + visibility: 'true', + borderRadius: 20 + }, + value: 'This is a text area', + placeholder: 'Enter text here', + label: 'Text Area' +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'textarea' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `disabled`, `visibility`, `borderRadius` etc. | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **borderRadius** | Specifies the border radius of the component. | Numeric value like 20 | +| **value** | Specifies the default value of the text area. | Any string value like 'This is a text area' | +| **placeholder** | Specifies the placeholder text of the text area. | Any string value like 'Enter text here' | +| **label** | Specifies the label of the component. | Any string value like 'Text Area' | + + +
+ +Form custom schema + +
+ +### Date Range Picker + +**Properties** + +```js +daterangepicker1: { + type: 'daterangepicker', + styles: { + disabled: true, + visibility: 'true', + borderRadius: 5 + }, + defaultEndDate: '12/04/2022', + defaultStartDate: '1/04/2022', + format: 'DD/MM/YYYY', + label: 'Select a date range' +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'daterangepicker' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `disabled`, `visibility`, `borderRadius` etc. | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **borderRadius** | Specifies the border radius of the component. | Numeric value like 5 | +| **defaultEndDate** | Specifies the default end date of the date range picker. | Date in the format specified in the `format` key, e.g., '12/04/2022' | +| **defaultStartDate** | Specifies the default start date of the date range picker. | Date in the format specified in the `format` key, e.g., '1/04/2022' | +| **format** | Specifies the format of the date. | 'DD/MM/YYYY' | +| **label** | Specifies the label of the component. | Any string value like 'Select a date range' | + +
+ +Form custom schema + +
+ +### Multiselect + +**Properties** + +```js +multiselect1: { + type: 'multiselect', + styles: { + disabled: false, + visibility: 'true', + borderRadius: 5 + }, + displayValues: ["one", "two", "three"], + label: 'Select options of your choice', + value: [2, 3], + values: [1, 2, 3], + showAllOption: true +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'multiselect' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `disabled`, `visibility`, `borderRadius` etc. | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **borderRadius** | Specifies the border radius of the component. | Numeric value like 5 | +| **displayValues** | Specifies the value for option labels in an array format. | Array of strings like `["one", "two", "three"]` | +| **label** | Specifies the label of the component. | Any string value like 'Select options of your choice' | +| **value** | Specifies the default value(s) in an array. | Array of values like `[2, 3]` | +| **values** | Specifies the values in an array. | Array of values like `[1, 2, 3]` | +| **showAllOption** | Specifies whether to show the 'All' option in the multiselect or not. | set `true` to show the 'All' option or `false` to hide it | + + +
+ +Form custom schema + +
+ +### Star Rating + +**Properties** + +```js +starRating1: { + type: 'starrating', + styles: { + disabled: false, + visibility: 'true', + textColor: 'yellow', + labelColor: 'red' + }, + allowHalfStar: true, + defaultSelected: 4.5, + maxRating: 10, + tooltips: ['one', 'two', 'three', 'four'], + label: 'Select a rating' +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'starrating' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `disabled`, `visibility`, `textColor`, `labelColor` etc. | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **textColor** | Specifies the color of the stars. | Color name or Hex color code '#f6f5ff' | +| **labelColor** | Specifies the color of the label. | Color name or Hex color code '#f6f5ff' | +| **allowHalfStar** | Specifies whether to allow selection of half star rating or not. | set `true` to allow half-star ratings or `false` to disable it | +| **defaultSelected** | Specifies the default value of the star rating. | Numeric value like 4.5 | +| **maxRating** | Specifies the maximum rating. | Numeric value like 10 | +| **tooltips** | Specifies the tooltips for each star in an array. | Array of strings like `['one', 'two', 'three', 'four']` | +| **label** | Specifies the label of the component. | Any string value like 'Select a rating' | + + +
+ +Form custom schema + +
+ +### File Picker + +**Properties** + +```js +filepicker1: { + type: 'filepicker', + styles: { + visibility: 'true', + borderRadius: 10 + }, + enableMultiple: true, + fileType: '*/*', + instructionText: 'Click here to select files', + maxFileCount: 5, + maxSize: 6000000, + minSize: 25, + parseContent: true, + parseFileType: 'csv', + label: 'Select a file' +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'filepicker' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `visibility`, `borderRadius` etc. | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **borderRadius** | Specifies the border radius of the component. | Numeric value like 10 | +| **enableMultiple** | Specifies whether to enable multiple file selection or not. | set `true` to enable multiple file selection or `false` to disable it | +| **fileType** | Specifies the mime file type. | Mime types like '*/*' (accepts all file types) | +| **instructionText** | Specifies the instruction text of the file picker. | Any string value like 'Click here to select files' | +| **maxFileCount** | Specifies the maximum number of files that can be selected. | Numeric value like 5 | +| **maxSize** | Specifies the maximum size of the file in bytes. | Numeric value like 6000000 (6MB) | +| **minSize** | Specifies the minimum size of the file in bytes. | Numeric value like 25 | +| **parseContent** | Specifies whether to parse the content of the file or not. | set `true` to parse the content or `false` to disable it | +| **parseFileType** | Specifies the file type to parse (e.g., csv, text, xlsx). | File type like 'csv' | +| **label** | Specifies the label of the component. | Any string value like 'Select a file' | + +
+ +Form custom schema + +
+ +### Text Input + +**Properties** + +```js +textinput1: { + type: 'textinput', + value: 'Random text', + placeholder: 'enter first name here', + label: 'First name', + validation: { + maxLength: 6 + }, + styles: { + backgroundColor: 'red', + borderRadius: 20, + errorTextColor: 'green', + disabled: false, + visibility: false, + textColor: 'yellow' + } +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'textinput' | +| **value** | Specifies the default value of the text input. | Any string value like 'Random text' | +| **placeholder** | Specifies the placeholder text of the text input. | Any string value like 'enter first name here' | +| **label** | Specifies the label of the component. | Any string value like 'First name' | +| **validation** | Specifies validation rules for the text input. | Object containing `maxLength` property | +| **maxLength** | Specifies the maximum length validation of the text input. | Numeric value like 6 | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `backgroundColor`, `borderRadius`, `errorTextColor`, `disabled`, `visibility`, `textColor` etc. | +| **backgroundColor** | Specifies the background color of the component. | Color name or Hex color code '#f6f5ff' | +| **borderRadius** | Specifies the border radius of the component. | Numeric value like 20 | +| **errorTextColor** | Specifies the color of the error text. | Color name or Hex color code '#f6f5ff' | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `false` to hide the component or `true` to show it | +| **textColor** | Specifies the text color of the component. | Color name or Hex color code '#f6f5ff' | + +
+ +Form custom schema + +
+ +### Dropdown + +**Properties** + +```js +dropdown1: { + type: 'dropdown', + displayValues: [1, 2, 3], + values: ['one', 'two', 'three'], + loading: false, + value: 'two', + label: 'Select a number', + styles: { + disabled: false, + visibility: 'true', + borderRadius: 5, + justifyContent: 'end' + } +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'dropdown' | +| **displayValues** | Specifies the value for option labels in an array format. | Array of values like `[1, 2, 3]` | +| **values** | Specifies the option labels in an array. | Array of strings like `['one', 'two', 'three']` | +| **loading** | Specifies whether to show the loading state or not. | set `true` to show the loading state or `false` to hide it | +| **value** | Specifies the default selected value of the dropdown. | Any value from the `values` array, like 'two' | +| **label** | Specifies the label of the component. | Any string value like 'Select a number' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `disabled`, `visibility`, `borderRadius`, `justifyContent` etc. | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **borderRadius** | Specifies the border radius of the component. | Numeric value like 5 | +| **justifyContent** | Specifies the alignment of the dropdown options. | 'start', 'center', or 'end' | + + +
+ +Form custom schema + +
+ +### Button + +**Properties** + +```js +button1: { + type: 'button', + value: 'Submit', + label: '', + styles: { + backgroundColor: 'blue', + textColor: 'white', + borderRadius: 5, + borderColor: 'black', + loaderColor: 'gray', + visibility: 'true', + disabled: true + } +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'button' | +| **value** | Specifies the button text. | Any string value like 'Submit' | +| **label** | Specifies the label of the component. | Set to `''` (empty string) to hide the label | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `backgroundColor`, `textColor`, `borderRadius`, `borderColor`, `loaderColor`, `visibility`, `disabled` etc. | +| **backgroundColor** | Specifies the background color of the button. | Color name or Hex color code '#f6f5ff' | +| **textColor** | Specifies the text color of the button. | Color name or Hex color code '#f6f5ff' | +| **borderRadius** | Specifies the border radius of the button. | Numeric value like 5 | +| **borderColor** | Specifies the border color of the button. | Color name or Hex color code '#f6f5ff' | +| **loaderColor** | Specifies the color of the loader on the button. | Color name or Hex color code '#f6f5ff' | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | + +
+ +Form custom schema + +
+ +### Text + +**Properties** + +```js +text1: { + type: 'text', + value: 'This is a text component', + label: '', + styles: { + backgroundColor: '#f6f5ff', + textColor: 'red', + fontSize: 24, + fontWeight: 30 + } +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'text' | +| **value** | Specifies the value of the text component. | Any string value like 'This is a text component' | +| **label** | Specifies the label of the component. | Set to `''` (empty string) to hide the label | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `backgroundColor`, `textColor`, `fontSize`, `fontWeight` etc. | +| **backgroundColor** | Specifies the background color of the text. | Color name or Hex color code '#f6f5ff' | +| **textColor** | Specifies the text color of the text. | Color name or Hex color code '#f6f5ff' | +| **fontSize** | Specifies the font size of the text. | Numeric value like 24 | +| **fontWeight** | Specifies the font weight of the text. | Numeric value like 30 | + +
+ +Form custom schema + +
+ +### Radio + +**Properties** + +```js +radioButton1: { + type: 'radio', + styles: { + textColor: 'black', + disabled: false, + visibility: 'true' + }, + displayValues: ['option 1', 'option 2', 'option 3'], + label: 'Radio Buttons', + value: 2, + values: [1, 2, 3] +} +``` + +| Key | Description | Expected Value | +| :----------- | :----------- | :-----------| +| **type** | Specifies the type of component. | 'radio' | +| **styles** | Specifies the styles of the component. | Object that will contain the styles of the component like `textColor`, `disabled`, `visibility` etc. | +| **textColor** | Specifies the text color of the radio options. | Color name or Hex color code '#f6f5ff' | +| **disabled** | Specifies whether to disable the component or not. | set `true` to disable the component or `false` to enable it | +| **visibility** | Specifies whether to show the component or not. | set `'true'` to show the component or `'false'` to hide it | +| **displayValues** | Specifies the value for labels in an array format. | Array of strings like `['option 1', 'option 2', 'option 3']` | +| **label** | Specifies the label of the component. | Any string value like 'Radio Buttons' | +| **value** | Specifies the default selected value of the radio button. | Any value from the `values` array, like 2 | +| **values** | Specifies the values in an array. | Array of values like `[1, 2, 3]` | + +
+ +Form custom schema + +
diff --git a/docs/versioned_docs/version-2.23.0/widgets/html.md b/docs/versioned_docs/version-2.23.0/widgets/html.md new file mode 100644 index 0000000000..cc1e06c574 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/html.md @@ -0,0 +1,80 @@ +--- +id: html +title: HTML Viewer +--- + +# HTML Viewer + +HTML widget can be used to create your own HTML-CSS layout. + +
+ +HTML component + +
+ +## Properties + +### Raw HTML + +The Raw HTML needs to be an HTML. In order to provide styles, one can add inline css to the respective HTML tags + +**Example:** + +```json + + + +
+
+ You can build your custom HTML-CSS template here +
+
+ + + +``` + +
+ +HTML component + +
+ +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +HTML component + +
+ +## Layout + +| Layout | description | Expected value | +| --------------- | ----------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| Show on desktop | Toggle on or off to display desktop view. | You can programmatically determining the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | +| Show on mobile | Toggle on or off to display mobile view. | You can programmatically determining the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | + +## Styles + +| Style | Description | +| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Visibility | Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not visible after the app is deployed. By default, it's set to `{{true}}`. | + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/icon.md b/docs/versioned_docs/version-2.23.0/widgets/icon.md new file mode 100644 index 0000000000..fd93553088 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/icon.md @@ -0,0 +1,77 @@ +--- +id: icon +title: Icon +--- + +An Icon widget can be used to add icons(sourced from icon library). It supports events like on hover and on click. + +
+ +ToolJet - Widget - Icon + +
+ +## Properties + +| Properties | description | Expected value | +| ----------- | ----------- | -------------- | +| Icon | Use this to choose an icon form the list of available icons | You can also use the search bar in it to look for the icons | + +## Events + +
+ +ToolJet - Widget - Icon + +
+ +To add an event, click on the icon widget's configuration handle to open the widget properties on the components drawer on the right. Go to the **Events** section and click on **+ Add handler**. + +The Icon widget supports the following events: + +| Event | Description | +| ----------- | ----------- | +| On hover | This event is triggered when the cursor is hovered over the icon| +| On click | This event is triggered when the icon is clicked | + +Just like any other event on ToolJet, you can set multiple handlers for any of the above-mentioned events. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## General + +Tooltip: Set a tooltip text to specify the information when the user moves the mouse pointer over the widget. + +## Layout + +| Layout | description | Expected value | +| ----------- | ----------- | ------------ | +| Show on desktop | Toggle on or off to show/hide the widget on desktop screens. | You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | +| Show on mobile | Toggle on or off to show/hide the widget on mobile screens. | You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | + +## Styles + +| Style | Description | Expected value | +| ----------- | ----------- | ------------- | +| Icon color | You can change the color of the icon widget by entering the Hex color code or choosing a color of your choice from the color picker. | +| Visibility | This is to control the visibility of the widget. | If `{{false}}` the widget will not visible after the app is deployed. | It can only have boolean values i.e. either `{{true}}` or `{{false}}`. By default, it's set to `{{true}}`. | +| Box shadow | This property adds a shadow to the widget. | You can use different values for box shadow property like offsets, blur, spread, and the color code. | + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +Following actions of the component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| ----------- | ----------- | +| setVisibility | You can toggle the visibility of the icon component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.icon1.setVisibility(false)` | +| click | You can trigger the click action on icon component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.icon1.click()` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/iframe.md b/docs/versioned_docs/version-2.23.0/widgets/iframe.md new file mode 100644 index 0000000000..d73ac37210 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/iframe.md @@ -0,0 +1,75 @@ +--- +id: iframe +title: Iframe +--- +# Iframe + +Iframe widget is used to embed another HTML page into the current one and display iframes in your app. + +
+ +ToolJet - Widget Reference - Iframe + +
+ +## Properties + +### URL + +Set the **URL** of the page to embed. + +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Iframe + +
+ +## Layout + +
+ +ToolJet - Widget Reference - Iframe + +
+ +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +
+ +ToolJet - Widget Reference - Iframe + +
+ +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/image.md b/docs/versioned_docs/version-2.23.0/widgets/image.md new file mode 100644 index 0000000000..33a071bb82 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/image.md @@ -0,0 +1,115 @@ +--- +id: image +title: Image +--- +# Image + +Image widget is used to display images in your app. + +
+ +ToolJet - Widget Reference - Image + +
+ +## Events + +
+ +ToolJet - Widget Reference - Image + +
+ +### On click + +On click event is triggered when an image is clicked. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## Properties + +
+ +ToolJet - Widget Reference - Image + +
+ +### URL +Enter the URL of the image to display it on the widget. + +### Loading state +Loading state can be used to show a spinner as the image content. Loading state is commonly used with `isLoading` property of the queries to show a loading status while a query is being run. Switch the toggle **On** or click on `fx` to programmatically set the value `{{true}}` or `{{false}}`. + +### Alternative text +Used for alt text of images. + +### Zoom buttons +Toggle this to enable zoom options inside image. + +### Rotate buttons +Toggle this on to enable rotate button in the image. + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Image + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}`. + +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Border type +Choose a border type for the image from available options: +- **None** +- **Rounded** +- **Circle** +- **Thumbnail** + +### Image fit +Choose a image fit - similar to object fit for the image from available options: +- **fill** +- **cover** +- **contain** +- **scale-down** + +### Background color +Add a background color to widget by providing the `HEX color code` or choosing the color of your choice from the color-picker. + +### Padding +Adds padding between the image and widget border. It accepts any numerical value from `0` to `100`. + +### Visibility +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/kanban-board.md b/docs/versioned_docs/version-2.23.0/widgets/kanban-board.md new file mode 100644 index 0000000000..22027ca856 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/kanban-board.md @@ -0,0 +1,158 @@ +--- +id: kanban +title: Kanban +--- + +# Kanban + +Kanban widget allows you to visually organize and prioritize your tasks with a transparent workflow. You can set the number of columns to display, enable/disable the add cards button, and bind data to the cards. + +
+ +ToolJet - Widget Reference - Kanban widget + +
+ +:::caution Restricted components +In order to avoid excessively complex situations, certain components are restricted from being placed within the **Card** and **Popout** of the Kanban component. +- **Card**: Calendar, Kanban, Form, Tabs, Modal, ListView, Container +- **Popout**: Calendar, Kanban + +If the builder attempts to add any of the aforementioned components inside the Kanban Card or Popout, an error message will be displayed: + +` cannot be used as a child component within the Kanban Popout/Card.` +::: + +## Events + +To add an event, click on the widget handle to open the widget properties on the right sidebar. Go to the **Events** section and click on **Add handler**. + +- **[On update](#on-update)** +- **[On add card click](#on-add-card-click)** +- **[Card removed](#card-removed)** +- **[Card added](#card-added)** +- **[Card moved](#card-moved)** +- **[Card selected](#card-selected)** + +
+ +ToolJet - Widget Reference - Kanban widget + +
+ +Just like any other event on ToolJet, you can set multiple handlers for any of the above mentioned events. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. + +Check the **[Component Specific Action](#component-specific-actions-csa)** available for Kanban. +::: + +### On Update +On update event is triggered whenever the card data (id, title, description, or columnID) is updated using the component specific actions. + +### On add card click +This event is triggered whenever the **Add card** button on the kanban is clicked. + +### Card removed +This event is triggered whenever the card is **deleted** from the kanban by dragging it into the bottom delete box or using component specific action. + +### Card added +This event is triggered whenever a card is **added** on the kanban using the component specific action. + +### Card moved +This event is triggered whenever the card's position is changed on the kanban or using the component specific action. + +### Card selected +This event is triggered whenever a card is clicked to open the modal. + +## Properties + +
+ +ToolJet - Widget Reference - Kanban widget + +
+ +:::caution +- It is mandatory to provide `id` for each column in the `column data` field. The `id` can be of type `string` or `number`. +- It is mandatory to provide `id`, and `columnId` for each card in the `Card data` field. The `id` and `columnId` can be of type `string` or `number`. +::: + +| Properties | description | Expected value | +| ----------- | ----------- | ----------- | +| Column Data | Enter the columns data - `id` and `title` in the form of array of objects or from a query that returns an array of objects. | `{{[{ "id": "c1", "title": "to do" },{ "id": "c2", "title": "in progress" },{ "id": "c3", "title": "Completed" }]}}` or `{{queries.xyz.data}}` | +| Card Data | Enter the cards data - `id`, `title` and `columnId` in the form of array of objects or from a query that returns an array of objects. | `{{[{ id: "r1", title: "Title 1", description: "Description 1", columnId: "c1" },{ id: "r2", title: "Title 2", description: "Description 2", columnId: "c2" },{ id: "r3", title: "Title 3", description: "Description 3",columnId: "c3" }]}}` or `{{queries.abc.data}}` | +| Card Width | Set the width of the card | This property expects a numerical value. By default, the value is set to `{{302}}` | +| Card Height | Set the width of the card | This property expects a numerical value. By default, the value is set to `{{100}}` | +| Enable Add Card | This property allows you to show or hide the **+Add Cards** button on the Kanban. | By default its enabled, you can programmatically set value to `{{true}}` or `{{false}}` to enable/disable button by clicking on the `Fx` next to it | +| Show Delete button | This property allows you to show or hide the **Drop here to delete cards** section at the bottom of the kanban. | By default its enabled, you can programmatically set value to `{{true}}` or `{{false}}` to enable/disable button by clicking on the `Fx` next to it | + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Kanban widget + +
+ +## Layout + +
+ +ToolJet - Widget Reference - Kanban widget + +
+ +| Layout | description | Expected value | +| --------------- | ------------------------------------------------------- | ----------------------------------------------------------------------------------------------------- | +| Show on desktop | Toggle on or off to display the widget in desktop view. | You can programmatically set the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | +| Show on mobile | Toggle on or off to display the widget in mobile view. | You can programmatically set the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | + +## Styles + +
+ +ToolJet - Widget Reference - Kanban widget + +
+ +| Style | Description | +| ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Disable | If disabled or set to `{{false}}` the widget will be locked and becomes non-functional. By default, its disabled i.e. its value is set to `{{true}}` . | +| Visibility | This is to control the visibility of the widget. If `{{false}}`/disabled the widget will not visible after the app is deployed. By default, it's enabled (set to `{{true}}`). | +| Accent color | You can change the accent color of the column title by entering the Hex color code or choosing a color of your choice from the color picker. | + +## Exposed variables + +
+ +ToolJet - Widget Reference - Kanban widget + +
+ +| Variable | Description | +| -------- | ----------- | +| updatedCardData | The `updatedCardData` variable will hold the latest values of all the cards in the kanban. This variable won't have any values initially, it will have values only when any action on any of the card is performed like when the card is moved, added, deleted, or updated. | +| lastAddedCard | The variable `lastAddedCard` holds the values of the the last added card. It holds the following data - `id`, `title`, `description` and `columnId` of the last added card. You can get the values using `{{components.kanban1.lastAddedCard.title}}` | +| lastRemovedCard | The variable `lastRemovedCard` holds the properties of the card that has been recently deleted from the kanban. It holds the following data - `id`, `title`, `description` and `columnId` of the recently deleted card. You can get the values using `{{components.kanbanboard1.lastRemovedCard.title}}` | +| lastCardMovement | The variable `lastCardMovement` holds the properties of the card that has been recently moved from its original position. It holds the following data - `originColumnId`, `destinationColumnId`, `originCardIndex`, `destinationCardIndex` and an object `cardDetails` which includes `id`, `title`, `description` and `columnId` of the moved card. You can get the values using `{{components.kanbanboard1.lastCardMovement.cardDetails.title}}` or `{{components.kanbanboard1.lastCardMovement.destinationCardIndex}}` | +| lastSelectedCard | The variable `lastSelectedCard` holds the `id`, `title`, `columnId`, and `description` of the last selected(clicked to view) card on the kanban. You can get the values using `{{components.kanban1.lastSelectedCard.columnId}}` | +| lastUpdatedCard | The variable `lastUpdatedCard` holds the `id`, `title`, `description`, and `columnId` of the last updated card(using componenet specific action). You can get the values using `{{components.kanban1.lastUpdatedCard.columnId}}` | +| lastCardUpdate | The variable `lastCardUpdate` holds the old an new values of the property that has been changed in the card(using componenet specific action). You can get the values using `{{components.kanban1.lastCardUpdate[0].title.oldValue}}` | + +## Component specific actions (CSA) + +Following actions of kanban component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| ----------- | ----------- | +| updateCardData | Update the card data of kanban component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `components.kanban1.updateCardData('c1', {title: 'New Title'})` | +| moveCard | Move a card from one column to other column on the kanban via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.kanban1.moveCard('card id,'column id')` ex: `await components.kanban1.moveCard('c1','r2')` | +| addCard | Add a card onto the kanban via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.kanban1.addCard('c1', {title: 'New Title'})` | +| deleteCard | Delete a card from the kanban via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.kanban1.deleteCard('card id')` ex: `await components.kanban1.deleteCard('c2')` | diff --git a/docs/versioned_docs/version-2.23.0/widgets/link.md b/docs/versioned_docs/version-2.23.0/widgets/link.md new file mode 100644 index 0000000000..fffd89239a --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/link.md @@ -0,0 +1,81 @@ +--- +id: link +title: Link +--- + +# Link + +Link widget allows you to add a hyperlink and navigate to the external URL. + +
+ +ToolJet - Widget - Link + +
+ +## Properties + +| Properties | description | Expected value | +| ----------- | ----------- | -------------- | +| Link Target | This property sets the URL where the user needs to be taken on clicking the link | example: `https://dev.to/tooljet` or `{{queries.xyz.data.url}}` | +| Link Text | This property sets the text for the link widget | example: `Click here` or `Open webpage` | +| Target Type | This property specifies the link to be opened in the same tab or new tab on clickinh the link | Options: `New Tab` & `Same Tab` | + +## Events +To add an event to a link, click on the widget handle to open the widget properties on the right sidebar. Go to the **Events** section and click on **Add handler**. + +### On Click +**On Click** event is triggered when the link is clicked. Just like any other event on ToolJet, you can set multiple handlers for on click event. + +### On hover +**On Hover** event is triggered when the link is hovered. Just like any other event on ToolJet, you can set multiple handlers for on click event. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +## Layout + +| Layout | description | Expected value | +| ----------- | ----------- | ------------ | +| Show on desktop | Toggle on or off to show/hide the widget on desktop view. | You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | +| Show on mobile | Toggle on or off to show/hide the widget on mobile view. | You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | + +## Styles + +
+ +ToolJet - Widget - Link + +
+ +| Style | Description | +| ----------- | ----------- | +| Text Color | You can change the background color of the text by entering the Hex color code or choosing a color of your choice from the color picker. | +| Text Size | By default, the text size is set to 14. You can enter any value from 1-100 to set custom text size. | +| Underline | You can change the underline of the text in the following ways: **on-hover (default), never, always** | +| Visibility | Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not visible after the app is deployed. By default, it's set to `{{true}}`. | + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +Following actions of link component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| ----------- | ----------- | +| click | You can trigger the click action of the link component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.link1.click()` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/listview.md b/docs/versioned_docs/version-2.23.0/widgets/listview.md new file mode 100644 index 0000000000..7d13a07d45 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/listview.md @@ -0,0 +1,216 @@ +--- +id: listview +title: List view +--- +# List view + +List view widget allows to create a list of repeatable rows of data. Just like a container widget, you can nest other widgets inside of it and control how many times they repeat. + +
+ +ToolJet - List view widget + +
+ +:::caution Restricted components +In order to avoid excessively complex situations, certain components, namely **Calendar** and **Kanban**, are restricted from being placed within the list view component using drag-and-drop functionality. + +If the builder attempts to add any of the aforementioned components inside the List view, an error message will be displayed: + +` cannot be used as a child component within the list view.` +::: + +## Events + +To attach an event handler to the list view component, follow these steps: +1. Click on the component handle to open its properties on the right sidebar. +2. Navigate to the **Events** section. +3. Click on the **+Add handler** button. + +There are two events that you can use with the List View component: +- **[Row clicked (Deprecated)](#row-clicked)** +- **[Record clicked](#record-clicked)** + +
+ +ToolJet - List view widget + +
+ +### Row clicked + +The **Row clicked** event is triggered when any row inside the list view is clicked. Similar to other events in ToolJet, you can define multiple actions for this event. + +When a row is clicked in the list view component, certain related data is made available through the **selectedRowId** and **selectedRow** variables. For the list view component's available exposed variables, refer to the **[here](#exposed-variables)** section. + +:::warning +The Row clicked event is being deprecated, so it is recommended to use the **Record Clicked** event instead. +::: + +### Record clicked + +The **Record clicked** event is similar to the row click event, as it is triggered whenever an interaction is made with a record in the component. + +When a record is clicked in the list view component, relevant data is exposed through the **selectedRecordId** and **selectedRecord** variables. For the list view component's available exposed variables, refer to the **[here](#exposed-variables)** section. + +:::info +To get detailed information about all the **Actions**, please consult the [Action Reference](/docs/category/actions-reference) documentation. +::: + +## Properties + +
+ +ToolJet - List view widget + +
+ +| **Properties** | **Description** | **Expected value** | +|---|---|---| +| **List data** | The data that you want to display in the list view component. This can be an array of objects or data from a query that returns an array of objects. | An array of objects or a query that returns an array of objects. | +| **Mode** | The layout of the list view component. You can choose between `List` and `Grid` mode. | `list` or `grid` | +| **Show bottom border** | Whether to show or hide the bottom border on a row. This option is only available when the **Mode** is set to `List`. | `true` or `false` | +| **Columns** | The number of columns in the list view component. This option is only available when the **Mode** is set to `Grid`. | Any numerical value | +| **Row height** | The height of each row in the list view component. | Any number between 1 and 100 | +| **Enable pagination** | Whether to enable pagination. If enabled, you can set the number of rows per page. | `true` or `false` | +| **Rows per page** | The number of rows per page. This option is only available when **Enable pagination** is enabled. | Any numerical value | + +
+ +ToolJet - List view widget + +
+ +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - List view widget + +
+ +## Layout + +
+ +ToolJet - List view widget + +
+ +| Layout | description | Expected value | +| ----------- | ----------- | ------------ | +| Show on desktop | Toggle on or off to display the desktop view. | You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | +| Show on mobile | Toggle on or off to display the mobile view. | You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | + +## Styles + +
+ +ToolJet - List view widget + +
+ +| Style | Description | +| ----------- | ----------- | +| Background Color | You can change the background color of the widget by entering the Hex color code or choosing a color of your choice from the color picker. | +| Border Color | You can change the border color of the listview by entering the `Hex color code` or choosing a color of your choice from the color picker. | +| Visibility | This is to control the visibility of the widget. If `{{false}}` the widget will not be visible after the app is deployed. It can only have boolean values i.e. either `{{true}}` or `{{false}}`. By default, it's set to `{{true}}`. | +| Disable | This property only accepts boolean values. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. | +| Border radius | Use this property to modify the border radius of the list view. The field expects only numerical value from `1` to `100`, default is `0`. | + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Example: Displaying data in the list view + +- Let's start by creating a new app and then dragging the List view widget onto the canvas. + +
+ +ToolJet - List view widget + +
+ +- Now lets create a query and select the REST API from the datasource dropdown. Choose the `GET` method and enter the API endpoint - `https://reqres.in/api/users?page=1`. Save this query and fire it. Inspect the query results from the left sidebar, you'll see that it resulted in the `data` object having an array of objects. + +
+ +ToolJet - List view widget + +
+ + +- Now lets edit the `List data` property of the list view widget for displaying the query data. We will use JS to get the data from the query - `{{queries.restapi1.data.data}}`. Here the last `data` is a data object that includes an array of objects, the first `data` is the data resulted from the `restapi1` query. This will automatically create the rows in the widget using the data. + +
+ +ToolJet - List view widget + +
+ + +- Finally, we will need to nest widgets into the first row of list view widget and the widget will automatically create the subsequent instances. The subsequent rows will appear the same way you'll display the data in the first row. + +
+ +ToolJet - List view widget + +
+ + +:::tip + +Use `{{listItem.key}}` to display data on the nested widgets. Example: For displaying the images we used `{{listItem.avatar}}` where **avatar** is one of the key in the objects from the query result. + +::: + +## Exposed Variables + +
+ +ToolJet - List view widget + +
+ +| **Variables** | **Description** | +| ----------- | ----------- | +| **data** | This variable stores the data loaded into the list view component. You can retrieve the data of each record in the list view using `{{components.listview1.data["0"].text1.text}}` | +| **selectedRowId** (deprecated) | This variable holds the ID of the clicked row in the list view. The row ID starts from `0`. You can access the selectedRowId using `{{components.listview1.selectedRowId}}` | +| **selectedRow** (deprecated) | This variable contains the data of the components within the selected row. You can access the data using `{{components.listview1.selectedRow.text1}}` | +| **selectedRecordId** | This variable holds the ID of the clicked record in the list view. The record ID starts from `0`. You can access the selectedRecordId using `{{components.listview1.selectedRecordId}}` | +| **selectedRecord** | This variable stores the data of the components within the selected record. You can access the data using `{{components.listview1.selectedRecord.text1}}` | +| **children** | This variable stores the data of the components within all the records in listview component. The purpose of exposing children is to enable the child components to be [controlled using component specific actions](#controlling-child-components). | + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. + +## Controlling child components + +All the child components of the list view component are exposed through the `children` variable. This variable is an array of objects, where each object represents a record in the listview and contains the data of the child components. + +
+ +ToolJet - List view widget + +
+ +
+ +The components inside the list view can be controlled using the javascipt queries. For example, if you want to disable the `button1` component in the first record, you can use the following expression: + +```js +components.listview1.children[0].button1.disable(true) // disables the button1 component in the first record +``` + +
+ +:::caution +Currently, only those child components can be controlled using the javascript queries that have component specific actions implemented. To check if a component has component specific actions implemented, refer to the document of that **[specific component](/docs/widgets/overview)**. +::: \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/map.md b/docs/versioned_docs/version-2.23.0/widgets/map.md new file mode 100644 index 0000000000..5bd422b165 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/map.md @@ -0,0 +1,89 @@ +--- +id: map +title: Map +--- + +The map component enables users to display a map on the app. It can be used to display or choose a single location or multiple locations on the map. The map component can be used to display the location of a business, a store, or a restaurant. It can also be used to display the location of a user on the map. It allows users to interact with the map interface and pick specific points of interest. + +:::tip Using Self-hosted +If you are utilizing the self-hosted version of ToolJet, it is necessary to configure the Google Maps API key as an environment variable. Please refer to the [environment variable setup documentation](/docs/setup/env-vars/#google-maps-configuration--optional-). +::: + +
+ +ToolJet - Component Reference - Map + +
+ +## Properties + +| Properties | Description | Expected value | +|:----------- |:----------- |:------------------ | +| **Initial location** | default location when the app is loaded initially. | An object containing the **latitude** and **langitude** as key value pairs. ex: `{{ {"lat": 40.7128, "lng": -73.935242} }}` | +| **Default Markers** | Number of markers that should be shown on the map | An array of objects containing the coordinates. ex: `{{ [{"lat": 40.7128, "lng": -73.935242}, {"lat": 40.7128, "lng": -73.935242}] }}` | +| **Polygon points** | Create a polygon on the map using the given coordinates. | An array of objects containing the coordinates. ex: `{{ [{"lat": 40.7128, "lng": -73.935242}, {"lat": 40.7128, "lng": -73.935242}] }}` | +| **Add new markers** | On clicking the map, a new marker will be added to the map. | By default, it's set to `On`. Toggle `off` to disable adding new markers on the map. Click `Fx` to set `{{true}}` or `{{false}}` programmatically. | +| **Search for places** | Enable to show the search box on the map. | By default, it's set to `On`. Toggle `off` to disable the search box on the map. Click `Fx` to set `{{true}}` or `{{false}}` programmatically. | + +
+ +ToolJet - Component Reference - Map + +
+ +## Events + +| Event Name | Description | +|:----------------- | :--------------------------------------------- | +| **On bounds change** | Triggers when the bounding area is modified. This event occurs after the `bounds` variable changes. | +| **On create marker** | Triggers when a new marker is added to the map. | +| **On marker click** | Triggers when the user clicks on any of the markers on the map. | +| **On polygon click** | Triggers when the user clicks on the polygon on the map. | + +:::info +For detailed information about all the available **Actions**, please refer to the [Action Reference](/docs/category/actions-reference) documentation. +::: + +## General +#### Tooltip + +A Tooltip is often used to specify the extra information when the user hovers the mouse pointer over the component. Once a value is set for Tooltip, hovering over the element will display the specified string as the tooltip text. + +## Layout + +| Properties | Description | Expected value | +|:----------- |:----------- |:------------------ | +| Show on desktop | Toggle on or off to display the component in desktop view. You can programmatically determine the value by clicking on Fx to set the value `{{true}}` or `{{false}}`. | +| Show on mobile | Toggle on or off to display the component in mobile view. You can programmatically determine the value by clicking on Fx to set the value `{{true}}` or `{{false}}`. | + +## Styles + +| Properties | Description | Expected value | +|:----------- |:----------- |:------------------ | +| **Visibility** | Toggle on or off to control the visibility of the component. | You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the component will not be visible after the app is release. By default, it's set to `{{true}}`. | +| **Disable** | This is `off` by default, toggle `on` the switch to lock the component and make it non-functional. | You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the component will be locked and becomes non-functional. By default, its value is set to `{{false}}`. | +| **Box shadow** | Add a shadow effect to the component by providing values to X, Y, Blur, Spread and Color. | You can also programmatically set the value by clicking on the `Fx` button next to it. Ex: `{{"x": 0, "y": 0, "blur": 0, "spread": 0, "color": "#000000"}}` | + +## Exposed Variables + +Exposed variables can be used to get data from the component. + +| Variables | Description | +| ----------- | ----------- | +| **center** | This variable will hold the latitude, longitude and the google map url value. | +| **center.`lat`** | This variable holds the latitude value of the marker on the map component. You can access the value dynamically using JS: `{{components.map1.center.lat}}`| +| **center.`lng`** | This variable gets updated with RGB color code whenever a user selects a color from the color picker. You can access the value dynamically using JS: `{{components.map1.center.lng}}`| +| **center.`googleMapUrl`** | This variable holds the URL of the location where the center marker is placed on the map component. You can access the value dynamically using JS: `{{components.map1.center.googleMapUrl}}`| +| **markers** | The markers variable will hold the value only if `add new markers` is enabled from the map properties. Each marker is an object and will have `lat` and `lng` keys. Values can be accessed dynamically using `{{components.map1.markers[1].lat}}` | +| **selectedMarker** | Object with the marker selected by the user | +| **bounds** | It constructs a rectangle from the points at its south-west and north-east corners | +| **bounds.northEast** | It holds the latitude and longitude of the north-east corner of the rectangle. You can access the value dynamically using JS: `{{components.map1.bounds.northEast.lat}}` or `{{components.map1.bounds.northEast.lng}}` | +| **bounds.southWest** | It holds the latitude and longitude of the south-west corner of the rectangle. You can access the value dynamically using JS: `{{components.map1.bounds.southWest.lat}}` or `{{components.map1.bounds.southWest.lng}}` | + +## Component specific actions (CSA) + +Following actions of map component can be controlled using the component specific actions(CSA): + +| Actions | Description | +|:---------- |:---------- | +| **setLocation** | Set the marker's location on map using latitude and longitude values as parameteres via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as: `component.map1.setLocation(40.7128, -73.935242)` | diff --git a/docs/versioned_docs/version-2.23.0/widgets/modal.md b/docs/versioned_docs/version-2.23.0/widgets/modal.md new file mode 100644 index 0000000000..ae3ebd33b6 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/modal.md @@ -0,0 +1,127 @@ +--- +id: modal +title: Modal +--- +# Modal + +Modal widget renders in front of a backdrop, and it blocks interaction with the rest of the application until the modal is closed. It can be used to add dialog boxes to your app for lightboxes, user notifications, forms, etc. + +
+ +ToolJet - Widget Reference - Modal + +
+ +:::caution Restricted components +In order to avoid excessively complex situations, certain components, namely **Calendar** and **Kanban**, are restricted from being placed within the Modal component using drag-and-drop functionality. + +If the builder attempts to add any of the aforementioned components inside the Modal, an error message will be displayed: + +` cannot be used as a child component within the Modal.` +::: + +## How To Use Modal Widget + + + +## Add widgets to Modal + +To add widgets to the Modals please refer to **[Tutorial - Adding widgets to a modal](/docs/tutorial/adding-widget#adding-widgets-to-modal)** + +## Properties + +### Title + +Title that should be shown on the header of the modal. + +### Loading State + +Loading state can be used to show a spinner on the modal content. Loading state is commonly used with isLoading property of the queries to show a loading status while a query is being run. Enable the toggle **On** or click on `fx` to programmatically set the value `{{true}}` or `{{false}}` . + +### Hide title bar + +Enabling this option hides the title bar in the modal. The value `{{true}}` or `{{false}}` can be set programmatically by clicking on the `Fx` button next to it. + +### Hide close button + +By enabling this option, the close button within the modal will be hidden. The value can be programmatically set to either `{{true}}` or `{{false}}` by clicking the adjacent `Fx` button. + +### Close on escape key + +Enabling this option will cause the modal to close whenever the escape key is pressed. The value can be programmatically set to either `{{true}}` or `{{false}}` by clicking the adjacent `Fx` button. This property is enabled by default. + +### Close on outside click + +Enabling this feature will result in the modal closing when clicked outside of its boundaries. The value can be programmatically set to either `{{true}}` or `{{false}}` by clicking the adjacent `Fx` button. + +### Modal size + +Determines the size of the modal. Available options include `medium`, `small`, and `large`, with the default set to `medium`. The value can also be programmatically configured by clicking the `Fx` button and setting it to `sm`, `md`, or `lg`. + +### Modal height + +Specifies the height of the modal, with the default height set to `400px`. The modal's height can also be dynamically set using JS binding by utilizing the `{{components.xyz.data.key === 'Sun' ?? '600px' : '300px'}}` syntax. + +## Options + +### Use default trigger button + +The default trigger button is enabled by default, this button can be used to show the modal. The value `{{true}}` or `{{false}}` can be set programmatically by clicking on the `Fx` button next to it. + +:::info +A modal can be triggered using the default trigger button, [action](/docs/actions/show-modal) or via [JavaScript](/docs/how-to/run-actions-from-runjs#show-modal). +::: + +### Trigger button label + +It can be used to set the label of the trigger button. + +## Events + +Modal supports the following two events: +- **On open** +- **On close** + +:::info +Just like any other event on ToolJet, you can set multiple handlers for the events supported by Modal. Check all the [actions here](/docs/category/actions-reference). +::: + +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + + +| Style | Description | value | +| ----------- | ----------- | ------ | +| Header background color | Change the background color of the header in modal | Enter the Hex color code or choose a color of your choice from the color picker | +| Header title color | Change the color of the Title in modal | Enter the Hex color code or choose a color of your choice from the color picker | +| Body background color | Change the background color of the body in modal | Enter the Hex color code or choose a color of your choice from the color picker | +| Visibility | Toggle on or off to control the visibility of the default trigger button that comes with modal | You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the button will not visible after the app is released. By default, it's set to `{{true}}`. | +| Disable | Toggle on to disable the default trigger button that comes with modal | You can programmatically change its value by clicking on the `Fx` button next to it, if set to `{{true}}`, the button will be locked and becomes non-functional. By default, its value is set to `{{false}}`. | +| Trigger button background color | Change the background color of the default trigger button of modal | Enter the Hex color code or choose a color of your choice from the color picker | +| Trigger button text color | Change the color of the label in default trigger button of modal | Enter the Hex color code or choose a color of your choice from the color picker | + +:::info +Trigger Button styles are only visible when **Use default trigger button** under Options is toggled on. +::: + +## Exposed variables + +There are currently no exposed variables for the component. + + +## Component specific actions (CSA) + +Following actions of modal component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| ----------- | ----------- | +| open | Control the opening and closing of the modal componennt via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.modal1.open()` | +| close | Control the closing of the modal componennt via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.modal1.close()` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/multiselect.md b/docs/versioned_docs/version-2.23.0/widgets/multiselect.md new file mode 100644 index 0000000000..07146db893 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/multiselect.md @@ -0,0 +1,118 @@ +--- +id: multiselect +title: Multiselect +--- +# Multiselect + +Multiselect widget can be used to collect multiple user inputs from a list of options. + +
+ +ToolJet - Widget Reference - Multiselect + +
+ +## Events + +
+ +ToolJet - Widget Reference - Multiselect + +
+ +### On select + +The **On select** event is triggered when a particular option is chosen. + +### On search text changed + +This event is triggered when a user modifies the search text on the multiselect component. This event also updates the value of the `searchText` **[exposed variable](#exposed-variables)**. + +:::info +For comprehensive information on all available **Actions**, refer to the [Action Reference](/docs/category/actions-reference) documentation. +::: + +## Properties + +### Label + +The text is to be used as the label for the multiselect widget. + +### Default value + +The value of the default option. This should always be an array. +### Option values + +Values for different items/options in the list of the multiselect. + +### Option labels + +Labels for different items/options in the list of the multiselect. + +### General +#### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Multiselect + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Border radius + +Add a border radius to the multiselect using this property. It accepts any numerical value from `0` to `100`. + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +## Actions + +| Action | Description | Properties | +| ----------- | ----------- | ------------------ | +| `selectOption` | Select options. | pass options as parameter. ex: `components.multiselect1.selectOption(1)` | +| `deselectOption` | Deselect options.| pass options as parameter. ex: `components.multiselect1.deselectOption(1)` | +| `clearSelections` | Clear all selection. | ex: `components.multiselect1.clearSelections()` | + + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| values | This variable holds the values of the multiselect component in an array of objects where the objects are the options in the multiselect. You can access the value dynamically using JS: `{{components.multiselect1.values[1]}}` | +| searchText | This variable stores the user-entered search text in the multiselect component. The value of this variable is updated with each character entered in the search field. | + +## Component specific actions (CSA) +await components.multiselect1.clearSelections() +await components.multiselect1.deselectOption(2) + +Following actions of multselect component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| ----------- | ----------- | +| selectOption | Select an option on the multiselect component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.multiselect1.selectOption(3)` | +| deselectOption | Deselect a selected option on the multiselect component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.multiselect1.deselectOption(3)` | +| clearOptions | Clear all the selected options from the multiselect component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.multiselect1.clearSelections(2,3)` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/number-input.md b/docs/versioned_docs/version-2.23.0/widgets/number-input.md new file mode 100644 index 0000000000..c96d45a928 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/number-input.md @@ -0,0 +1,76 @@ +--- +id: number-input +title: Number Input +--- +# Number Input + +The Number Input component allows users to enter numbers. It can be used as a standalone component or in form fields. In this document, we'll go through all the configuration options for the **Number Input** component. + + +## Properties + +| Property | Description | Expected Value | +|:----------------|:-----------------------------------| :--------------| +| Default Value | Default Value is the initial value in the Number Input field when the application is loaded. It is a pre-established value that will be retrieved from the number input component if no modifications are made to it. | Any numeric value| +| Minimum value | Sets the minimum value that can be entered in the input field.| Any numerical value| +| Maximum value | Sets the maximum value that can be entered in the input field.| Any numerical value| +| Placeholder | The placeholder value is displayed when no user input has been made yet. It disappears once the user interacts with the control, such as typing a number or using the arrow keys on the right side of the component. |Enter some instructional text as the value (example: "Type number here")| +| Loading state | The loading state can be enabled to show a spinner as the content of the number input. This is commonly used with the `isLoading` property of queries to indicate a loading status while a query is being executed. | Use the toggle button or dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either `{{true}}` or `{{false}}`| +| Decimal places | This controls decimal places in the number input. You pick how many decimals you want. If you choose `{{2}}`, any decimals will be rounded to two places. Use `{{0}}` for whole numbers or increase for more precision.| Any numeric value| + + +## Events +To add an event to the Number Input component, go to the **Events** section and click on **Add handler**. + +| Event | Description | +|-----------|-----------------------------------------------------------------------------| +| On change | This event fires whenever the value of the number input component is changed. | + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## General + +Tooltip + +A **Tooltip** is commonly used to provide additional information about an element. This information becomes visible when the user hovers the mouse pointer over the respective component. + +In the input field under **Tooltip**, you can enter some text and the component will show the specified text as a tooltip when it is hovered over. + +
+ Tooltip Example +
+ +## Layout +Show on desktop + +Use this toggle to show or hide the component in the desktop view. You can dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to `{{true}}` or `{{false}}`. + +Show on mobile + +Use this toggle to show or hide the component in the mobile view. You can dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to `{{true}}` or `{{false}}`. + +--- + +## Styles + +| Style | Description | Expected Value| +|:-------------|:--------------------|:---------------------| +| Visibility | Controls the visibility of the component. If set to `{{false}}`, the component will not be visible after the app is deployed.| Use the toggle button or dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either `{{true}}` or `{{false}}`.| +| Disable | Makes the component non-functional when set to true. | Use the toggle button or dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either `{{true}}` or `{{false}}`.| +| Border radius | Adjusts the roundness of the component's corners. | Numeric value| +| Background color | Changes the background color of the number-input component. | Hex color code/choose a color using the color picker | +| Border color | Changes the border color of the component.| Hex color code/choose a color using the color picker| +| Text Color | Sets the color of the input value. |Hex color code/choose a color using the color picker | + + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| value | This variable updates whenever a user selects a number on the number input. You can access the value dynamically using JS: `{{components.numberinput1.value}}`| + +## Component Specific Actions (CSA) + +There are currently no Component-Specific Actions (CSA) implemented to regulate or control the component. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/overview.md b/docs/versioned_docs/version-2.23.0/widgets/overview.md new file mode 100644 index 0000000000..a0937368bd --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/overview.md @@ -0,0 +1,122 @@ +--- +id: overview +title: Overview +--- + +# Components: Overview + +Components are used to build the UI of the applications. They can be dragged onto the canvas from the Component Library and can be modified from the Properties Panel without needing to write any code. **[Event Handlers](/docs/widgets/overview#component-event-handlers)** in Components allow end users to trigger queries and other application events to perform the **[Actions](/docs/category/actions-reference)**. + +## Adding components + +Components can be dragged and dropped from the Component Library(from the right side on app builder) on to the canvas. Components can be moved by simply click and hold, and can be resized from edges or borders. + +
+ +Components: Overview + +
+ +### Select multiple components + +For moving the **multiple components** at once, simply **shift+click**, to select multiple components. Once grouped, the components can be moved on the canvas while maintaining their relative positions. + +
+ +Components: Overview + +
+ +You can also create a selection triangle and move multiple components together by `click and drag` + +
+ +Components: Overview + +
+ +:::tip +You can also use many other **[Keyboard Shortcuts](/docs/tutorial/keyboard-shortcuts)** in ToolJet to copy, cut, paste components to the canvas. +::: + +## Component properties + +Each Component can be modified and styled from the Properties Panel such as the **data** field, a toggle for **disabling** the component, or stylings like a **background color**. Properties can be modified directly or programmatically by using **[Bindings](#bindings)**, which enables you to write JavaScript code. + +
+ +Components: Overview + +
+ +## Component Event Handlers + +Event Handlers can be found in the Component's **Property Panel** or in the **Advanced** section of the Query. Event handlers can be used to trigger **[Actions](/docs/category/actions-reference)** such as executing the queries, perform Component Specific Actions(CSA) or for setting a variable. + +Event handlers for components have the following properties: + +1. **Event**: Each component has its own set of exclusive events. You can refer to the component reference to find the specific events available for each component. These events are triggered by user interactions or other actions within the application. + +2. **Action**: Actions are the operations that can be performed when an event is triggered. There is a comprehensive list of available actions, which can be found in the **[actions reference documentation](/docs/category/actions-reference)**. In addition to general actions, each component may also have its own set of **Component Specific Actions (CSA)** that are specific to that particular component. The CSA can be found in the respective component reference. + +3. **Run Only If**: The "Run Only If" property allows you to define a condition that must be satisfied before the event handler's action is executed. By specifying a condition, you can control the flow of execution and ensure that the action is only performed when the condition is met. + +
+ +Event Handler + +
+ +### Using Run only if + +With this option in Event Handlers, users can specify a condition that must be met before the event handler's action is executed. This allows for more fine-grained control over when certain actions should be triggered in response to component events. + +For example, let's consider a button component with an `OnClick` event handler. By specifying a "Run Only If" condition for the event handler, users can control when the associated action should be executed. Here's an example: + +```javascript +Button Component + └─ OnClick Event Handler: runQuery() + │ + ├─ Run Only If: expression/condition +``` + +In this case, the action `runQuery()` will only be triggered if the `expression/condition` is truthy. The `expression/condition` can utilize the values dynamically from other parts of the application or exposed variables. + +**Example expressions:** + +```js +{{globals.currentUser.groups[1] === 'admin'}} // returns true if the current user is admin + +or + +{{components.form1.isValid}} // isValid holds the boolean value true or false +``` + +
+ +Components: Run only if + +
+ +## Bindings + +Bindings allow you to get dynamic data into the components. Anything inside of **`{{}}`** is evaluated as a JavaScript expression in ToolJet. + +Any arbitrary JavaScript code can be written inside **`{{}}`**: + +```js +{{(function () { + + })() +}} +``` + +or + +```js +{{components.xyz.data.key === Sun ?? true : false}} +``` + +:::tip +Check out the How-to guides like **[changing color of text in table column](/docs/how-to/access-cellvalue-rowdata)**, **[Enable/Disable a component using JavaScript](/docs/how-to/access-currentuser)**, and **[more](/docs/category/how-to)**. +::: diff --git a/docs/versioned_docs/version-2.23.0/widgets/package-lock.json b/docs/versioned_docs/version-2.23.0/widgets/package-lock.json new file mode 100644 index 0000000000..624508d7dc --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/package-lock.json @@ -0,0 +1,32216 @@ +{ + "name": "docs", + "version": "0.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "version": "0.0.0", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/plugin-google-gtag": "^2.0.0-alpha.73", + "@docusaurus/preset-classic": "2.0.0-alpha.73", + "@mdx-js/react": "^1.6.21", + "clsx": "^1.1.1", + "react": "^17.0.1", + "react-dom": "^17.0.1" + } + }, + "node_modules/@algolia/autocomplete-core": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.2.2.tgz", + "integrity": "sha512-JOQaURze45qVa8OOFDh+ozj2a/ObSRsVyz6Zd0aiBeej+RSTqrr1hDVpGNbbXYLW26G5ujuc9QIdH+rBHn95nw==", + "dependencies": { + "@algolia/autocomplete-shared": "1.2.2" + } + }, + "node_modules/@algolia/autocomplete-preset-algolia": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.2.2.tgz", + "integrity": "sha512-AZkh+bAMaJDzMZTelFOXJTJqkp5VPGH8W3n0B+Ggce7DdozlMRsDLguKTCQAkZ0dJ1EbBPyFL5ztL/JImB137Q==", + "dependencies": { + "@algolia/autocomplete-shared": "1.2.2" + }, + "peerDependencies": { + "@algolia/client-search": "^4.9.1", + "algoliasearch": "^4.9.1" + } + }, + "node_modules/@algolia/autocomplete-shared": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.2.2.tgz", + "integrity": "sha512-mLTl7d2C1xVVazHt/bqh9EE/u2lbp5YOxLDdcjILXmUqOs5HH1D4SuySblXaQG1uf28FhTqMGp35qE5wJQnqAw==" + }, + "node_modules/@algolia/cache-browser-local-storage": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.10.5.tgz", + "integrity": "sha512-cfX2rEKOtuuljcGI5DMDHClwZHdDqd2nT2Ohsc8aHtBiz6bUxKVyIqxr2gaC6tU8AgPtrTVBzcxCA+UavXpKww==", + "dependencies": { + "@algolia/cache-common": "4.10.5" + } + }, + "node_modules/@algolia/cache-common": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.10.5.tgz", + "integrity": "sha512-1mClwdmTHll+OnHkG+yeRoFM17kSxDs4qXkjf6rNZhoZGXDvfYLy3YcZ1FX4Kyz0DJv8aroq5RYGBDsWkHj6Tw==" + }, + "node_modules/@algolia/cache-in-memory": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.10.5.tgz", + "integrity": "sha512-+ciQnfIGi5wjMk02XhEY8fmy2pzy+oY1nIIfu8LBOglaSipCRAtjk6WhHc7/KIbXPiYzIwuDbM2K1+YOwSGjwA==", + "dependencies": { + "@algolia/cache-common": "4.10.5" + } + }, + "node_modules/@algolia/client-account": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.10.5.tgz", + "integrity": "sha512-I9UkSS2glXm7RBZYZIALjBMmXSQbw/fI/djPcBHxiwXIheNIlqIFl2SNPkvihpPF979BSkzjqdJNRPhE1vku3Q==", + "dependencies": { + "@algolia/client-common": "4.10.5", + "@algolia/client-search": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "node_modules/@algolia/client-analytics": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.10.5.tgz", + "integrity": "sha512-h2owwJSkovPxzc+xIsjY1pMl0gj+jdVwP9rcnGjlaTY2fqHbSLrR9yvGyyr6305LvTppxsQnfAbRdE/5Z3eFxw==", + "dependencies": { + "@algolia/client-common": "4.10.5", + "@algolia/client-search": "4.10.5", + "@algolia/requester-common": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "node_modules/@algolia/client-common": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.10.5.tgz", + "integrity": "sha512-21FAvIai5qm8DVmZHm2Gp4LssQ/a0nWwMchAx+1hIRj1TX7OcdW6oZDPyZ8asQdvTtK7rStQrRnD8a95SCUnzA==", + "dependencies": { + "@algolia/requester-common": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "node_modules/@algolia/client-personalization": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.10.5.tgz", + "integrity": "sha512-nH+IyFKBi8tCyzGOanJTbXC5t4dspSovX3+ABfmwKWUYllYzmiQNFUadpb3qo+MLA3jFx5IwBesjneN6dD5o3w==", + "dependencies": { + "@algolia/client-common": "4.10.5", + "@algolia/requester-common": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "node_modules/@algolia/client-search": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.10.5.tgz", + "integrity": "sha512-1eQFMz9uodrc5OM+9HeT+hHcfR1E1AsgFWXwyJ9Q3xejA2c1c4eObGgOgC9ZoshuHHdptaTN1m3rexqAxXRDBg==", + "dependencies": { + "@algolia/client-common": "4.10.5", + "@algolia/requester-common": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "node_modules/@algolia/logger-common": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.10.5.tgz", + "integrity": "sha512-gRJo9zt1UYP4k3woEmZm4iuEBIQd/FrArIsjzsL/b+ihNoOqIxZKTSuGFU4UUZOEhvmxDReiA4gzvQXG+TMTmA==" + }, + "node_modules/@algolia/logger-console": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.10.5.tgz", + "integrity": "sha512-4WfIbn4253EDU12u9UiYvz+QTvAXDv39mKNg9xSoMCjKE5szcQxfcSczw2byc6pYhahOJ9PmxPBfs1doqsdTKQ==", + "dependencies": { + "@algolia/logger-common": "4.10.5" + } + }, + "node_modules/@algolia/requester-browser-xhr": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.10.5.tgz", + "integrity": "sha512-53/MURQEqtK+bGdfq4ITSPwTh5hnADU99qzvpAINGQveUFNSFGERipJxHjTJjIrjFz3vxj5kKwjtxDnU6ygO9g==", + "dependencies": { + "@algolia/requester-common": "4.10.5" + } + }, + "node_modules/@algolia/requester-common": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.10.5.tgz", + "integrity": "sha512-UkVa1Oyuj6NPiAEt5ZvrbVopEv1m/mKqjs40KLB+dvfZnNcj+9Fry4Oxnt15HMy/HLORXsx4UwcthAvBuOXE9Q==" + }, + "node_modules/@algolia/requester-node-http": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.10.5.tgz", + "integrity": "sha512-aNEKVKXL4fiiC+bS7yJwAHdxln81ieBwY3tsMCtM4zF9f5KwCzY2OtN4WKEZa5AAADVcghSAUdyjs4AcGUlO5w==", + "dependencies": { + "@algolia/requester-common": "4.10.5" + } + }, + "node_modules/@algolia/transporter": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.10.5.tgz", + "integrity": "sha512-F8DLkmIlvCoMwSCZA3FKHtmdjH3o5clbt0pi2ktFStVNpC6ZDmY307HcK619bKP5xW6h8sVJhcvrLB775D2cyA==", + "dependencies": { + "@algolia/cache-common": "4.10.5", + "@algolia/logger-common": "4.10.5", + "@algolia/requester-common": "4.10.5" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", + "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", + "dependencies": { + "@babel/highlight": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", + "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz", + "integrity": "sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og==", + "dependencies": { + "@babel/code-frame": "^7.15.8", + "@babel/generator": "^7.15.8", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.8", + "@babel/helpers": "^7.15.4", + "@babel/parser": "^7.15.8", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz", + "integrity": "sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g==", + "dependencies": { + "@babel/types": "^7.15.6", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz", + "integrity": "sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz", + "integrity": "sha512-P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q==", + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz", + "integrity": "sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==", + "dependencies": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz", + "integrity": "sha512-7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz", + "integrity": "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz", + "integrity": "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz", + "integrity": "sha512-J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz", + "integrity": "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==", + "dependencies": { + "@babel/helper-get-function-arity": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz", + "integrity": "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz", + "integrity": "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz", + "integrity": "sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz", + "integrity": "sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz", + "integrity": "sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg==", + "dependencies": { + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-simple-access": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz", + "integrity": "sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz", + "integrity": "sha512-v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-wrap-function": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz", + "integrity": "sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz", + "integrity": "sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz", + "integrity": "sha512-BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz", + "integrity": "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==", + "dependencies": { + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.15.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", + "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz", + "integrity": "sha512-Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw==", + "dependencies": { + "@babel/helper-function-name": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz", + "integrity": "sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==", + "dependencies": { + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", + "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "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==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz", + "integrity": "sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz", + "integrity": "sha512-eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.15.4", + "@babel/plugin-proposal-optional-chaining": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.8.tgz", + "integrity": "sha512-2Z5F2R2ibINTc63mY7FLqGfEbmofrHU9FitJW1Q7aPaKFhiPvSq6QEt/BoWN5oME3GVyjcRuNNSRbb9LC0CSWA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.15.4", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz", + "integrity": "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz", + "integrity": "sha512-M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz", + "integrity": "sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz", + "integrity": "sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz", + "integrity": "sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz", + "integrity": "sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz", + "integrity": "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz", + "integrity": "sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.15.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.15.6.tgz", + "integrity": "sha512-qtOHo7A1Vt+O23qEAX+GdBpqaIuD3i9VRrWgCJeq7WO6H2d14EK3q11urj5Te2MAeK97nMiIdRpwd/ST4JFbNg==", + "dependencies": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz", + "integrity": "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz", + "integrity": "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz", + "integrity": "sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz", + "integrity": "sha512-X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz", + "integrity": "sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz", + "integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz", + "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz", + "integrity": "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz", + "integrity": "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==", + "dependencies": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz", + "integrity": "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz", + "integrity": "sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz", + "integrity": "sha512-Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz", + "integrity": "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz", + "integrity": "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz", + "integrity": "sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz", + "integrity": "sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz", + "integrity": "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz", + "integrity": "sha512-DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz", + "integrity": "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==", + "dependencies": { + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz", + "integrity": "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz", + "integrity": "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz", + "integrity": "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==", + "dependencies": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd/node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz", + "integrity": "sha512-qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.15.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs/node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz", + "integrity": "sha512-fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw==", + "dependencies": { + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.9", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs/node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz", + "integrity": "sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz", + "integrity": "sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz", + "integrity": "sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz", + "integrity": "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz", + "integrity": "sha512-9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz", + "integrity": "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.14.5.tgz", + "integrity": "sha512-NBqLEx1GxllIOXJInJAQbrnwwYJsV3WaMHIcOwD8rhYS0AabTWn7kHdHgPgu5RmHLU0q4DMxhAMu8ue/KampgQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.15.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz", + "integrity": "sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz", + "integrity": "sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-jsx": "^7.14.5", + "@babel/types": "^7.14.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.14.5.tgz", + "integrity": "sha512-rdwG/9jC6QybWxVe2UVOa7q6cnTpw8JRRHOxntG/h6g/guAOe6AhtQHJuJh5FwmnXIT1bdm5vC2/5huV8ZOorQ==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.14.5.tgz", + "integrity": "sha512-3X4HpBJimNxW4rhUy/SONPyNQHp5YRr0HhJdT2OH1BRp0of7u3Dkirc7x9FRJMKMqTBI079VZ1hzv7Ouuz///g==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz", + "integrity": "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==", + "dependencies": { + "regenerator-transform": "^0.14.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz", + "integrity": "sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.15.8.tgz", + "integrity": "sha512-+6zsde91jMzzvkzuEA3k63zCw+tm/GvuuabkpisgbDMTPQsIMHllE3XczJFFtEHLjjhKQFZmGQVRdELetlWpVw==", + "dependencies": { + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.5", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz", + "integrity": "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.15.8.tgz", + "integrity": "sha512-/daZ8s2tNaRekl9YJa9X4bzjpeRZLt122cpgFnQPLGUe61PH8zMEBmYqKkW5xF5JUEh5buEGXJoQpqBmIbpmEQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz", + "integrity": "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz", + "integrity": "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz", + "integrity": "sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.8.tgz", + "integrity": "sha512-ZXIkJpbaf6/EsmjeTbiJN/yMxWPFWvlr7sEG1P95Xb4S4IBcrf2n7s/fItIhsAmOf8oSh3VJPDppO6ExfAfKRQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-typescript": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz", + "integrity": "sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz", + "integrity": "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.8.tgz", + "integrity": "sha512-rCC0wH8husJgY4FPbHsiYyiLxSY8oMDJH7Rl6RQMknbN9oDDHhM9RDFvnGM2MgkbUJzSQB4gtuwygY5mCqGSsA==", + "dependencies": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.15.4", + "@babel/plugin-proposal-async-generator-functions": "^7.15.8", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-class-static-block": "^7.15.4", + "@babel/plugin-proposal-dynamic-import": "^7.14.5", + "@babel/plugin-proposal-export-namespace-from": "^7.14.5", + "@babel/plugin-proposal-json-strings": "^7.14.5", + "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", + "@babel/plugin-proposal-numeric-separator": "^7.14.5", + "@babel/plugin-proposal-object-rest-spread": "^7.15.6", + "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-private-methods": "^7.14.5", + "@babel/plugin-proposal-private-property-in-object": "^7.15.4", + "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.14.5", + "@babel/plugin-transform-async-to-generator": "^7.14.5", + "@babel/plugin-transform-block-scoped-functions": "^7.14.5", + "@babel/plugin-transform-block-scoping": "^7.15.3", + "@babel/plugin-transform-classes": "^7.15.4", + "@babel/plugin-transform-computed-properties": "^7.14.5", + "@babel/plugin-transform-destructuring": "^7.14.7", + "@babel/plugin-transform-dotall-regex": "^7.14.5", + "@babel/plugin-transform-duplicate-keys": "^7.14.5", + "@babel/plugin-transform-exponentiation-operator": "^7.14.5", + "@babel/plugin-transform-for-of": "^7.15.4", + "@babel/plugin-transform-function-name": "^7.14.5", + "@babel/plugin-transform-literals": "^7.14.5", + "@babel/plugin-transform-member-expression-literals": "^7.14.5", + "@babel/plugin-transform-modules-amd": "^7.14.5", + "@babel/plugin-transform-modules-commonjs": "^7.15.4", + "@babel/plugin-transform-modules-systemjs": "^7.15.4", + "@babel/plugin-transform-modules-umd": "^7.14.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", + "@babel/plugin-transform-new-target": "^7.14.5", + "@babel/plugin-transform-object-super": "^7.14.5", + "@babel/plugin-transform-parameters": "^7.15.4", + "@babel/plugin-transform-property-literals": "^7.14.5", + "@babel/plugin-transform-regenerator": "^7.14.5", + "@babel/plugin-transform-reserved-words": "^7.14.5", + "@babel/plugin-transform-shorthand-properties": "^7.14.5", + "@babel/plugin-transform-spread": "^7.15.8", + "@babel/plugin-transform-sticky-regex": "^7.14.5", + "@babel/plugin-transform-template-literals": "^7.14.5", + "@babel/plugin-transform-typeof-symbol": "^7.14.5", + "@babel/plugin-transform-unicode-escapes": "^7.14.5", + "@babel/plugin-transform-unicode-regex": "^7.14.5", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.15.6", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.5", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "core-js-compat": "^3.16.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.14.5.tgz", + "integrity": "sha512-XFxBkjyObLvBaAvkx1Ie95Iaq4S/GUEIrejyrntQ/VCMKUYvKLoyKxOBzJ2kjA3b6rC9/KL6KXfDC2GqvLiNqQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-react-display-name": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.5", + "@babel/plugin-transform-react-jsx-development": "^7.14.5", + "@babel/plugin-transform-react-pure-annotations": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.15.0.tgz", + "integrity": "sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-typescript": "^7.15.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz", + "integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime-corejs3": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz", + "integrity": "sha512-lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg==", + "dependencies": { + "core-js-pure": "^3.16.0", + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz", + "integrity": "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==", + "dependencies": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz", + "integrity": "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==", + "dependencies": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.15.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz", + "integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.14.9", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@choojs/findup": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@choojs/findup/-/findup-0.2.1.tgz", + "integrity": "sha512-YstAqNb0MCN8PjdLCDfRsBcGVRN41f3vgLvaI0IrIcBp4AqILRSS0DeWNGkicC+f/zRIPJLc+9RURVSepwvfBw==", + "dependencies": { + "commander": "^2.15.1" + }, + "bin": { + "findup": "bin/findup.js" + } + }, + "node_modules/@choojs/findup/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/@docsearch/css": { + "version": "3.0.0-alpha.40", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.0.0-alpha.40.tgz", + "integrity": "sha512-PrOTPgJMl+Iji1zOH0+J0PEDMriJ1teGxbgll7o4h8JrvJW6sJGqQw7/bLW7enWiFaxbJMK76w1yyPNLFHV7Qg==" + }, + "node_modules/@docsearch/react": { + "version": "3.0.0-alpha.40", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.0.0-alpha.40.tgz", + "integrity": "sha512-aKxnu7sgpP1R7jtgOV/pZdJEHXx6Ts+jnS9U/ejSUS2BMUpwQI5SA3oLs1BA5TA9kIViJ5E+rrjh0VsbcsJ6sQ==", + "dependencies": { + "@algolia/autocomplete-core": "1.2.2", + "@algolia/autocomplete-preset-algolia": "1.2.2", + "@docsearch/css": "3.0.0-alpha.40", + "algoliasearch": "^4.0.0" + }, + "peerDependencies": { + "@types/react": ">= 16.8.0 < 18.0.0", + "react": ">= 16.8.0 < 18.0.0", + "react-dom": ">= 16.8.0 < 18.0.0" + } + }, + "node_modules/@docusaurus/core": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-2.0.0-alpha.73.tgz", + "integrity": "sha512-gUF5UOcy/5XmPWFOpLdiilI+7FEEYtvunB62xnvwEp/SNRvoL9PAs9dI2mFaDkme1RmUtPMXKzPZxwlntFnA9A==", + "dependencies": { + "@babel/core": "^7.12.16", + "@babel/generator": "^7.12.15", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.13", + "@babel/plugin-proposal-optional-chaining": "^7.12.16", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.12.15", + "@babel/preset-env": "^7.12.16", + "@babel/preset-react": "^7.12.13", + "@babel/preset-typescript": "^7.12.16", + "@babel/runtime": "^7.12.5", + "@babel/runtime-corejs3": "^7.12.13", + "@babel/traverse": "^7.12.13", + "@docusaurus/cssnano-preset": "2.0.0-alpha.73", + "@docusaurus/react-loadable": "5.5.0", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "@endiliey/static-site-generator-webpack-plugin": "^4.0.0", + "@svgr/webpack": "^5.5.0", + "autoprefixer": "^10.2.5", + "babel-loader": "^8.2.2", + "babel-plugin-dynamic-import-node": "2.3.0", + "boxen": "^5.0.0", + "cache-loader": "^4.1.0", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "clean-css": "^5.1.1", + "commander": "^5.1.0", + "copy-webpack-plugin": "^6.4.1", + "core-js": "^3.9.1", + "css-loader": "^5.1.1", + "del": "^6.0.0", + "detect-port": "^1.3.0", + "eta": "^1.12.1", + "express": "^4.17.1", + "file-loader": "^6.2.0", + "fs-extra": "^9.1.0", + "github-slugger": "^1.3.0", + "globby": "^11.0.2", + "html-minifier-terser": "^5.1.1", + "html-tags": "^3.1.0", + "html-webpack-plugin": "^4.5.0", + "import-fresh": "^3.3.0", + "is-root": "^2.1.0", + "leven": "^3.1.0", + "lodash": "^4.17.20", + "mini-css-extract-plugin": "^0.8.0", + "module-alias": "^2.2.2", + "nprogress": "^0.2.0", + "null-loader": "^4.0.0", + "optimize-css-assets-webpack-plugin": "^5.0.4", + "pnp-webpack-plugin": "^1.6.4", + "postcss": "^8.2.7", + "postcss-loader": "^4.1.0", + "prompts": "^2.4.0", + "react-dev-utils": "^11.0.1", + "react-helmet": "^6.1.0", + "react-loadable": "^5.5.0", + "react-loadable-ssr-addon": "^0.3.0", + "react-router": "^5.2.0", + "react-router-config": "^5.1.1", + "react-router-dom": "^5.2.0", + "resolve-pathname": "^3.0.0", + "rtl-detect": "^1.0.2", + "semver": "^7.3.4", + "serve-handler": "^6.1.3", + "shelljs": "^0.8.4", + "std-env": "^2.2.1", + "terser-webpack-plugin": "^4.1.0", + "tslib": "^2.1.0", + "update-notifier": "^5.1.0", + "url-loader": "^4.1.1", + "wait-on": "^5.2.1", + "webpack": "^4.44.1", + "webpack-bundle-analyzer": "^4.4.0", + "webpack-dev-server": "^3.11.2", + "webpack-merge": "^4.2.2", + "webpackbar": "^5.0.0-3" + }, + "bin": { + "docusaurus": "bin/docusaurus.js" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/cssnano-preset": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-2.0.0-alpha.73.tgz", + "integrity": "sha512-8DregwCCcKl5h3WAwK/NuTQ8BpXiKUnF8owVE4XAS7OnHXSobKfxz0wpF2Jzi0G8TdVfnZzPrXelnWWDL1mc3g==", + "dependencies": { + "cssnano-preset-advanced": "^4.0.7", + "postcss": "^7.0.2", + "postcss-sort-media-queries": "^1.7.26" + } + }, + "node_modules/@docusaurus/cssnano-preset/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/@docusaurus/cssnano-preset/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/@docusaurus/cssnano-preset/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@docusaurus/mdx-loader": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-2.0.0-alpha.73.tgz", + "integrity": "sha512-cteoaLe8rFLULAjRy8iOyKwo9LBupu6VPEvQbjhrM23EWap15LD5b66MmfRsCS8ubTdB1i5uYTVhwg1j41Fxjw==", + "dependencies": { + "@babel/parser": "^7.12.16", + "@babel/traverse": "^7.12.13", + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@mdx-js/mdx": "^1.6.21", + "@mdx-js/react": "^1.6.21", + "escape-html": "^1.0.3", + "file-loader": "^6.2.0", + "fs-extra": "^9.1.0", + "github-slugger": "^1.3.0", + "loader-utils": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "remark-emoji": "^2.1.0", + "stringify-object": "^3.3.0", + "unist-util-visit": "^2.0.2", + "url-loader": "^4.1.1", + "webpack": "^4.44.1" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/plugin-content-blog": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.0.0-alpha.73.tgz", + "integrity": "sha512-1G5lV+hIhZJPS+Z1/QWEVBB26MtTpgA3V9nMXrivet88LBi97X/O4auat4gzCd1ZAAAIssBqvjJZux3iYYuTZg==", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/mdx-loader": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "chalk": "^4.1.0", + "feed": "^4.2.2", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "reading-time": "^1.3.0", + "remark-admonitions": "^1.2.1", + "tslib": "^2.1.0", + "webpack": "^4.44.1" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/plugin-content-blog/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/@docusaurus/plugin-content-blog/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@docusaurus/plugin-content-docs": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.0.0-alpha.73.tgz", + "integrity": "sha512-exMBKvTgJ//AazsXNYx/rSlIOt/8nMebOYNd0YMOrY1HNH3SFiTMln2nf6DhZlqDnC+e3DHxBV1mJJnZCef8xQ==", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/mdx-loader": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "chalk": "^4.1.0", + "combine-promises": "^1.1.0", + "execa": "^5.0.0", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", + "import-fresh": "^3.2.2", + "js-yaml": "^4.0.0", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "remark-admonitions": "^1.2.1", + "shelljs": "^0.8.4", + "tslib": "^2.1.0", + "utility-types": "^3.10.0", + "webpack": "^4.44.1" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/plugin-content-docs/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==" + }, + "node_modules/@docusaurus/plugin-content-docs/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@docusaurus/plugin-content-docs/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@docusaurus/plugin-content-docs/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@docusaurus/plugin-content-docs/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==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@docusaurus/plugin-content-docs/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/@docusaurus/plugin-content-docs/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@docusaurus/plugin-content-docs/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@docusaurus/plugin-content-pages": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.0.0-alpha.73.tgz", + "integrity": "sha512-/q9B+N3ICWlnI5mm58lMXhzWit7IP3ntY1snfy8qD98wEfWKLZwefdxnB1HI+qJXBQq5uQTWIe9lULaN/gbDzw==", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/mdx-loader": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "globby": "^11.0.2", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "minimatch": "^3.0.4", + "remark-admonitions": "^1.2.1", + "slash": "^3.0.0", + "tslib": "^2.1.0", + "webpack": "^4.44.1" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/plugin-content-pages/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/@docusaurus/plugin-content-pages/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@docusaurus/plugin-debug": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-2.0.0-alpha.73.tgz", + "integrity": "sha512-EdovLNi8oxLFZDi/7lfLwfmgbaWFR/wOZqOYuyrHJto/TlqCCIOziX4dHYqUPHItbnwV1PGGR49DUrqyNYuLBQ==", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "react-json-view": "^1.21.1", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/plugin-google-analytics": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.0.0-alpha.73.tgz", + "integrity": "sha512-t3Noo80wT412IMI4vnapWVpfm5PBhYPQpXQxVIZap61K2CT1lAkelyi43vREWt80HwCjXh5HvoR2TxCdGwi6nA==", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/plugin-google-gtag": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.0.0-alpha.73.tgz", + "integrity": "sha512-DqrmV4eW81DzlAJrqMiki+m4tTUlpPkUL7sNemVjzqVl4616tng7wa93FcNw3sZbVm1Kp69Hep3uN2OgRmEqRQ==", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/plugin-sitemap": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.0.0-alpha.73.tgz", + "integrity": "sha512-APBI/l8T5lsfEYvRZ0ipzZlUlKX/4x47w3WfIvlqS78vk7WHAXa0tEp3S8FK36TqeTjmdmCP0F4DJCY7UJZCSw==", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "fs-extra": "^9.1.0", + "sitemap": "^6.3.6", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/preset-classic": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-2.0.0-alpha.73.tgz", + "integrity": "sha512-eXgwPVMXA9K9FmGrXwOeec9Uqr0KXMdHvx3C5Ocm4E7b/mylMGwykOgR9iaSLYdVY12EKrO7T9Lm3Z37Gll7Zw==", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/plugin-content-blog": "2.0.0-alpha.73", + "@docusaurus/plugin-content-docs": "2.0.0-alpha.73", + "@docusaurus/plugin-content-pages": "2.0.0-alpha.73", + "@docusaurus/plugin-debug": "2.0.0-alpha.73", + "@docusaurus/plugin-google-analytics": "2.0.0-alpha.73", + "@docusaurus/plugin-google-gtag": "2.0.0-alpha.73", + "@docusaurus/plugin-sitemap": "2.0.0-alpha.73", + "@docusaurus/theme-classic": "2.0.0-alpha.73", + "@docusaurus/theme-search-algolia": "2.0.0-alpha.73" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/react-loadable": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-5.5.0.tgz", + "integrity": "sha512-Ld/kwUE6yATIOTLq3JCsWiTa/drisajwKqBQ2Rw6IcT+sFsKfYek8F2jSH8f68AT73xX97UehduZeCSlnuCBIg==", + "dependencies": { + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "*" + } + }, + "node_modules/@docusaurus/theme-classic": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-2.0.0-alpha.73.tgz", + "integrity": "sha512-SVjq3xPIFQ/Uzs6WJn+8Gm1b47jLV7YBbcUXpIGd3NBKj16yZml9t7YNpos6Vt7Y5mCVhIP4IqWYJshArw6Aog==", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/plugin-content-blog": "2.0.0-alpha.73", + "@docusaurus/plugin-content-docs": "2.0.0-alpha.73", + "@docusaurus/plugin-content-pages": "2.0.0-alpha.73", + "@docusaurus/theme-common": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "@mdx-js/mdx": "^1.6.21", + "@mdx-js/react": "^1.6.21", + "chalk": "^4.1.0", + "clsx": "^1.1.1", + "copy-text-to-clipboard": "^3.0.0", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", + "infima": "0.2.0-alpha.22", + "lodash": "^4.17.20", + "parse-numeric-range": "^1.2.0", + "postcss": "^7.0.2", + "prism-react-renderer": "^1.1.1", + "prismjs": "^1.23.0", + "prop-types": "^15.7.2", + "react-router-dom": "^5.2.0", + "rtlcss": "^2.6.2" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/theme-classic/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/@docusaurus/theme-classic/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/@docusaurus/theme-classic/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@docusaurus/theme-common": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-2.0.0-alpha.73.tgz", + "integrity": "sha512-ePteJFQkQRkK+J1FKDhmczq+yiEmORTW9YJgYceQVq+9L6unr0XxeOBBNC27BxSabUI+A9YXjQbtdmOHFM8LKA==", + "dependencies": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/plugin-content-blog": "2.0.0-alpha.73", + "@docusaurus/plugin-content-docs": "2.0.0-alpha.73", + "@docusaurus/plugin-content-pages": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "prism-react-renderer": "^1.1.1", + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/theme-search-algolia": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.0.0-alpha.73.tgz", + "integrity": "sha512-SMfeGYZb85GIcuUjefMN+RunLDK+x6ETnlGuY9LU2S6bvoaZ4YTcqBPOt0iyZ1LH+XZmFuz78lFDW1gklaNmfg==", + "dependencies": { + "@docsearch/react": "^3.0.0-alpha.33", + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/theme-common": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "algoliasearch": "^4.8.4", + "algoliasearch-helper": "^3.3.4", + "clsx": "^1.1.1", + "eta": "^1.12.1", + "lodash": "^4.17.20" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "react": "^16.8.4 || ^17.0.0", + "react-dom": "^16.8.4 || ^17.0.0" + } + }, + "node_modules/@docusaurus/types": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-2.0.0-alpha.73.tgz", + "integrity": "sha512-+q7q178LS2mMTGD/U5KgloLGKtG8yzpqj+NOp2QprjFVqTfkwTFcMhN33PTZTUcDunMDuUt+LOo9hi9Vz9+r5Q==", + "dependencies": { + "@types/webpack": "^4.41.0", + "commander": "^5.1.0", + "joi": "^17.4.0", + "querystring": "0.2.0", + "webpack-merge": "^4.2.2" + } + }, + "node_modules/@docusaurus/utils": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-2.0.0-alpha.73.tgz", + "integrity": "sha512-kUHnE1b/3yNWNAn0V8owLgCrxqyxfolkCbkPFfnRT+4m+agyn3riEcr+ZVObs7K9nxCla8oklX5RKSJGzyqWww==", + "dependencies": { + "@docusaurus/types": "2.0.0-alpha.73", + "@types/github-slugger": "^1.3.0", + "chalk": "^4.1.0", + "escape-string-regexp": "^4.0.0", + "fs-extra": "^9.1.0", + "gray-matter": "^4.0.2", + "lodash": "^4.17.20", + "resolve-pathname": "^3.0.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/@docusaurus/utils-validation": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-2.0.0-alpha.73.tgz", + "integrity": "sha512-A36kKC+tCy/MGXdaK7emH2CHyHKru/+Td9zCm6fvNdNbu+dDNvEddTZ3ecjB0zNdDZM25Er4+KIo9GV3vnJ8Rg==", + "dependencies": { + "@docusaurus/utils": "2.0.0-alpha.73", + "chalk": "^4.1.0", + "joi": "^17.4.0", + "tslib": "^2.1.0" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/@docusaurus/utils/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==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@endiliey/static-site-generator-webpack-plugin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@endiliey/static-site-generator-webpack-plugin/-/static-site-generator-webpack-plugin-4.0.0.tgz", + "integrity": "sha512-3MBqYCs30qk1OBRC697NqhGouYbs71D1B8hrk/AFJC6GwF2QaJOQZtA1JYAaGSe650sZ8r5ppRTtCRXepDWlng==", + "dependencies": { + "bluebird": "^3.7.1", + "cheerio": "^0.22.0", + "eval": "^0.1.4", + "url": "^0.11.0", + "webpack-sources": "^1.4.3" + } + }, + "node_modules/@gar/promisify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz", + "integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==" + }, + "node_modules/@hapi/hoek": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.1.tgz", + "integrity": "sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw==" + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@mdx-js/mdx": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-1.6.22.tgz", + "integrity": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==", + "dependencies": { + "@babel/core": "7.12.9", + "@babel/plugin-syntax-jsx": "7.12.1", + "@babel/plugin-syntax-object-rest-spread": "7.8.3", + "@mdx-js/util": "1.6.22", + "babel-plugin-apply-mdx-type-prop": "1.6.22", + "babel-plugin-extract-import-names": "1.6.22", + "camelcase-css": "2.0.1", + "detab": "2.0.4", + "hast-util-raw": "6.0.1", + "lodash.uniq": "4.5.0", + "mdast-util-to-hast": "10.0.1", + "remark-footnotes": "2.0.0", + "remark-mdx": "1.6.22", + "remark-parse": "8.0.3", + "remark-squeeze-paragraphs": "4.0.0", + "style-to-object": "0.3.0", + "unified": "9.2.0", + "unist-builder": "2.0.3", + "unist-util-visit": "2.0.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/@mdx-js/mdx/node_modules/@babel/core": { + "version": "7.12.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz", + "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.5", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.5", + "@babel/parser": "^7.12.7", + "@babel/template": "^7.12.7", + "@babel/traverse": "^7.12.9", + "@babel/types": "^7.12.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@mdx-js/mdx/node_modules/@babel/plugin-syntax-jsx": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz", + "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@mdx-js/mdx/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@mdx-js/react": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-1.6.22.tgz", + "integrity": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "react": "^16.13.1 || ^17.0.0" + } + }, + "node_modules/@mdx-js/util": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/@mdx-js/util/-/util-1.6.22.tgz", + "integrity": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "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==", + "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==", + "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==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.0.0.tgz", + "integrity": "sha512-8ltnOpRR/oJbOp8vaGUnipOi3bqkcW+sLHFlyXIr08OGHmVJLB1Hn7QtGXbYcpVtH1gAYZTlmDXtE4YV0+AMMQ==", + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.21", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", + "integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==" + }, + "node_modules/@sideway/address": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.2.tgz", + "integrity": "sha512-idTz8ibqWFrPU8kMirL0CoPH/A29XOzzAzpyN3zQ4kAWnzmNfFmRaoMNN6VI8ske5M73HZyhIaW4OuSFIdM4oA==", + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz", + "integrity": "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==" + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" + }, + "node_modules/@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dependencies": { + "defer-to-connect": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@types/github-slugger": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@types/github-slugger/-/github-slugger-1.3.0.tgz", + "integrity": "sha512-J/rMZa7RqiH/rT29TEVZO4nBoDP9XJOjnbbIofg7GQKs4JIduEO3WLpte+6WeUz/TcrXKlY+bM7FYrp8yFB+3g==" + }, + "node_modules/@types/glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/hast": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", + "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", + "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==" + }, + "node_modules/@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==" + }, + "node_modules/@types/mdast": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", + "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" + }, + "node_modules/@types/node": { + "version": "16.11.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.0.tgz", + "integrity": "sha512-8MLkBIYQMuhRBQzGN9875bYsOhPnf/0rgXGo66S2FemHkhbn9qtsz9ywV1iCG+vbjigE4WUNVvw37Dx+L0qsPg==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "node_modules/@types/parse5": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz", + "integrity": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" + }, + "node_modules/@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + }, + "node_modules/@types/sax": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.3.tgz", + "integrity": "sha512-+QSw6Tqvs/KQpZX8DvIl3hZSjNFLW/OqE5nlyHXtTwODaJvioN2rOWpBNEWZp2HZUFhOh+VohmJku/WxEXU2XA==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + }, + "node_modules/@types/tapable": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz", + "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==" + }, + "node_modules/@types/uglify-js": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz", + "integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/uglify-js/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@types/unist": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" + }, + "node_modules/@types/webpack": { + "version": "4.41.31", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.31.tgz", + "integrity": "sha512-/i0J7sepXFIp1ZT7FjUGi1eXMCg8HCCzLJEQkKsOtbJFontsJLolBcDC+3qxn5pPwiCt1G0ZdRmYRzNBtvpuGQ==", + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/webpack/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dependencies": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + }, + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dependencies": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + }, + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dependencies": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/algoliasearch": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.10.5.tgz", + "integrity": "sha512-KmH2XkiN+8FxhND4nWFbQDkIoU6g2OjfeU9kIv4Lb+EiOOs3Gpp7jvd+JnatsCisAZsnWQdjd7zVlW7I/85QvQ==", + "dependencies": { + "@algolia/cache-browser-local-storage": "4.10.5", + "@algolia/cache-common": "4.10.5", + "@algolia/cache-in-memory": "4.10.5", + "@algolia/client-account": "4.10.5", + "@algolia/client-analytics": "4.10.5", + "@algolia/client-common": "4.10.5", + "@algolia/client-personalization": "4.10.5", + "@algolia/client-search": "4.10.5", + "@algolia/logger-common": "4.10.5", + "@algolia/logger-console": "4.10.5", + "@algolia/requester-browser-xhr": "4.10.5", + "@algolia/requester-common": "4.10.5", + "@algolia/requester-node-http": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "node_modules/algoliasearch-helper": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.6.0.tgz", + "integrity": "sha512-F4Smiq+Vyv/JJytuKNFuzXndPSb4pjtiHZSkEztQCcB+SORu71A8grgt2NSJhbB5VhqHW19QDtlPKbdYdcNrLg==", + "dependencies": { + "events": "^1.1.1" + }, + "peerDependencies": { + "algoliasearch": ">= 3.1 < 5" + } + }, + "node_modules/algoliasearch-helper/node_modules/events": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", + "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "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": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/arg": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz", + "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dependencies": { + "object-assign": "^4.1.1", + "util": "0.10.3" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dependencies": { + "inherits": "2.0.1" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.3.7", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.7.tgz", + "integrity": "sha512-EmGpu0nnQVmMhX8ROoJ7Mx8mKYPlcUHuxkwrRYEYMz85lu7H09v8w6R1P0JPdn/hKU32GjpLBFEOuIlDWCRWvg==", + "dependencies": { + "browserslist": "^4.17.3", + "caniuse-lite": "^1.0.30001264", + "fraction.js": "^4.1.1", + "normalize-range": "^0.1.2", + "picocolors": "^0.2.1", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/autoprefixer/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/babel-loader": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", + "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/babel-loader/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/babel-plugin-apply-mdx-type-prop": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz", + "integrity": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==", + "dependencies": { + "@babel/helper-plugin-utils": "7.10.4", + "@mdx-js/util": "1.6.22" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@babel/core": "^7.11.6" + } + }, + "node_modules/babel-plugin-apply-mdx-type-prop/node_modules/@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz", + "integrity": "sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-extract-import-names": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz", + "integrity": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==", + "dependencies": { + "@babel/helper-plugin-utils": "7.10.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/babel-plugin-extract-import-names/node_modules/@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz", + "integrity": "sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==", + "dependencies": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz", + "integrity": "sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.16.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz", + "integrity": "sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/bail": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "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==" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base16": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz", + "integrity": "sha1-4pf2DX7BAUp6lxo568ipjAtoHnA=" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "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/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/bn.js": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", + "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" + }, + "node_modules/body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dependencies": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/bonjour/node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dependencies": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "node_modules/browserify-sign/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "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/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.17.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz", + "integrity": "sha512-Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ==", + "dependencies": { + "caniuse-lite": "^1.0.30001265", + "electron-to-chromium": "^1.3.867", + "escalade": "^3.1.1", + "node-releases": "^2.0.0", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + }, + "node_modules/buffer-json": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/buffer-json/-/buffer-json-2.0.0.tgz", + "integrity": "sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw==" + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + }, + "node_modules/bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cacache/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cache-loader": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cache-loader/-/cache-loader-4.1.0.tgz", + "integrity": "sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw==", + "dependencies": { + "buffer-json": "^2.0.0", + "find-cache-dir": "^3.0.0", + "loader-utils": "^1.2.3", + "mkdirp": "^0.5.1", + "neo-async": "^2.6.1", + "schema-utils": "^2.0.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/cache-loader/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/cache-loader/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-callsite/node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001267", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001267.tgz", + "integrity": "sha512-r1mjTzAuJ9W8cPBGbbus8E0SKcUP7gn03R14Wk8FlAlqhH9hroy9nLqmpuXlfKEw/oILW+FGz47ipXV2O7x8lg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/ccount": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz", + "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "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/chalk/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/chalk/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/chalk/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/chalk/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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/chalk/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==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/cheerio": { + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", + "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=", + "dependencies": { + "css-select": "~1.2.0", + "dom-serializer": "~0.1.0", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash.assignin": "^4.0.9", + "lodash.bind": "^4.1.4", + "lodash.defaults": "^4.0.1", + "lodash.filter": "^4.4.0", + "lodash.flatten": "^4.2.0", + "lodash.foreach": "^4.3.0", + "lodash.map": "^4.4.0", + "lodash.merge": "^4.4.0", + "lodash.pick": "^4.2.1", + "lodash.reduce": "^4.4.0", + "lodash.reject": "^4.4.0", + "lodash.some": "^4.4.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cheerio/node_modules/css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "dependencies": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + } + }, + "node_modules/cheerio/node_modules/css-what": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", + "engines": { + "node": "*" + } + }, + "node_modules/cheerio/node_modules/dom-serializer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", + "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "dependencies": { + "domelementtype": "^1.3.0", + "entities": "^1.1.1" + } + }, + "node_modules/cheerio/node_modules/domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/cheerio/node_modules/entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + }, + "node_modules/chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz", + "integrity": "sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==" + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-css": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.2.1.tgz", + "integrity": "sha512-ooQCa1/70oRfVdUUGjKpbHuxgMgm8BsDT5EBqBGvPxMoRoGXf4PNx5mMnkjzJ9Ptx4vvmDdha0QVh86QtYIk1g==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "node_modules/cliui/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "engines": { + "node": ">=4" + } + }, + "node_modules/cliui/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dependencies": { + "mimic-response": "^1.0.0" + } + }, + "node_modules/clsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/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==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/collapse-white-space": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz", + "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "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==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/color-string": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz", + "integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/combine-promises": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/combine-promises/-/combine-promises-1.1.0.tgz", + "integrity": "sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/comma-separated-tokens": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", + "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concat-stream/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/concat-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "dependencies": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/consola": { + "version": "2.15.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", + "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + }, + "node_modules/content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dependencies": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "node_modules/copy-concurrently/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-text-to-clipboard": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.0.1.tgz", + "integrity": "sha512-rvVsHrpFcL4F2P8ihsoLdFHmd404+CMg71S756oRSeQgqk51U3kicGdnvfkrxva0xXH92SjGS62B0XIJsbh+9Q==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/copy-webpack-plugin": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.4.1.tgz", + "integrity": "sha512-MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA==", + "dependencies": { + "cacache": "^15.0.5", + "fast-glob": "^3.2.4", + "find-cache-dir": "^3.3.1", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + } + }, + "node_modules/copy-webpack-plugin/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==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/copy-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/core-js": { + "version": "3.18.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.18.3.tgz", + "integrity": "sha512-tReEhtMReZaPFVw7dajMx0vlsz3oOb8ajgPoHVYGxr8ErnZ6PcYEvvmjGmXlfpnxpkYSdOQttjB+MvVbCGfvLw==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.18.3", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.18.3.tgz", + "integrity": "sha512-4zP6/y0a2RTHN5bRGT7PTq9lVt3WzvffTNjqnTKsXhkAYNDTkdCLOIfAdOLcQ/7TDdyRj3c+NeHe1NmF1eDScw==", + "dependencies": { + "browserslist": "^4.17.3", + "semver": "7.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/core-js-pure": { + "version": "3.18.3", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.18.3.tgz", + "integrity": "sha512-qfskyO/KjtbYn09bn1IPkuhHl5PlJ6IzJ9s9sraJ1EqcuGyLGKzhSM1cY0zgyL9hx42eulQLZ6WaeK5ycJCkqw==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/cross-fetch": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz", + "integrity": "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==", + "dependencies": { + "node-fetch": "2.6.1" + } + }, + "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-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "engines": { + "node": "*" + } + }, + "node_modules/css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dependencies": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "engines": { + "node": ">4" + } + }, + "node_modules/css-declaration-sorter/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/css-declaration-sorter/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/css-declaration-sorter/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dependencies": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-tree/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", + "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", + "dependencies": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-preset-advanced": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-4.0.8.tgz", + "integrity": "sha512-DlZ5+XNKwB3ZnrtJ7jdj8WxT5Zgt1WIr4gdP9v1Sdn3SObqcLwbBobQaM7BqLIVHS74TE5iWn2TSYmOVSsmozQ==", + "dependencies": { + "autoprefixer": "^9.4.7", + "cssnano-preset-default": "^4.0.8", + "postcss-discard-unused": "^4.0.1", + "postcss-merge-idents": "^4.0.1", + "postcss-reduce-idents": "^4.0.2", + "postcss-zindex": "^4.0.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-preset-advanced/node_modules/autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "dependencies": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/cssnano-preset-advanced/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/cssnano-preset-advanced/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/cssnano-preset-advanced/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", + "dependencies": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-preset-default/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/cssnano-preset-default/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/cssnano-preset-default/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/cssnano-util-raw-cache/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/cssnano-util-raw-cache/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/cssnano/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/cssnano/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/csso/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + }, + "node_modules/debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", + "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", + "dependencies": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "node_modules/detab": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.4.tgz", + "integrity": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==", + "dependencies": { + "repeat-string": "^1.5.4" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/detect-port": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz", + "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + }, + "node_modules/dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/dom-serializer/node_modules/domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dependencies": { + "domelementtype": "1" + } + }, + "node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/duplexify/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/duplexify/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "node_modules/electron-to-chromium": { + "version": "1.3.870", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.870.tgz", + "integrity": "sha512-PiJMshfq6PL+i1V+nKLwhHbCKeD8eAz8rvO9Cwk/7cChOHJBtufmjajLyYLsSRHguRFiOCVx3XzJLeZsIAYfSA==" + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "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/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/emoticon": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/emoticon/-/emoticon-3.2.0.tgz", + "integrity": "sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/enhanced-resolve/node_modules/memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/enhanced-resolve/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/enhanced-resolve/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "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==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-ex/node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "node_modules/es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "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": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "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==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "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==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eta": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/eta/-/eta-1.12.3.tgz", + "integrity": "sha512-qHixwbDLtekO/d51Yr4glcaUJCIjGVJyTzuqV4GPlgZo1YpgOKG+avQynErZIYrfM6JIJdtiG2Kox8tbb+DoGg==", + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "url": "https://github.com/eta-dev/eta?sponsor=1" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eval": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.6.tgz", + "integrity": "sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ==", + "dependencies": { + "require-like": ">= 0.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "dependencies": { + "original": "^1.0.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/execa/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dependencies": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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==" + }, + "node_modules/fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "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==" + }, + "node_modules/fast-url-parser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", + "integrity": "sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=", + "dependencies": { + "punycode": "^1.3.2" + } + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", + "dependencies": { + "fbjs": "^3.0.0" + } + }, + "node_modules/fbjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz", + "integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==", + "dependencies": { + "cross-fetch": "^3.0.4", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" + } + }, + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + }, + "node_modules/feed": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz", + "integrity": "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==", + "dependencies": { + "xml-js": "^1.6.11" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/filesize": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "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==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/flush-write-stream/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/flush-write-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/flux": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.2.tgz", + "integrity": "sha512-u/ucO5ezm3nBvdaSGkWpDlzCePoV+a9x3KHmy13TV/5MzOaCZDN8Mfd94jmf0nOi8ZZay+nOKbBUkOe2VNaupQ==", + "dependencies": { + "fbemitter": "^3.0.0", + "fbjs": "^3.0.0" + }, + "peerDependencies": { + "react": "^15.0.2 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.14.4", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.4.tgz", + "integrity": "sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "dependencies": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "engines": { + "node": ">=6.11.5", + "yarn": ">=1.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/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==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/extend-shallow/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz", + "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/from2/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/from2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs-write-stream-atomic/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/fs-write-stream-atomic/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "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-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/github-slugger": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.4.0.tgz", + "integrity": "sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==" + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global-dirs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz", + "integrity": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==", + "dependencies": { + "ini": "2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dependencies": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + }, + "node_modules/gray-matter": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", + "dependencies": { + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "dependencies": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "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/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hast-to-hyperscript": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz", + "integrity": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==", + "dependencies": { + "@types/unist": "^2.0.3", + "comma-separated-tokens": "^1.0.0", + "property-information": "^5.3.0", + "space-separated-tokens": "^1.0.0", + "style-to-object": "^0.3.0", + "unist-util-is": "^4.0.0", + "web-namespaces": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz", + "integrity": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==", + "dependencies": { + "@types/parse5": "^5.0.0", + "hastscript": "^6.0.0", + "property-information": "^5.0.0", + "vfile": "^4.0.0", + "vfile-location": "^3.2.0", + "web-namespaces": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-parse-selector": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", + "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-raw": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-6.0.1.tgz", + "integrity": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==", + "dependencies": { + "@types/hast": "^2.0.0", + "hast-util-from-parse5": "^6.0.0", + "hast-util-to-parse5": "^6.0.0", + "html-void-elements": "^1.0.0", + "parse5": "^6.0.0", + "unist-util-position": "^3.0.0", + "vfile": "^4.0.0", + "web-namespaces": "^1.0.0", + "xtend": "^4.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-parse5": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz", + "integrity": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==", + "dependencies": { + "hast-to-hyperscript": "^9.0.0", + "property-information": "^5.0.0", + "web-namespaces": "^1.0.0", + "xtend": "^4.0.0", + "zwitch": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hastscript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz", + "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", + "dependencies": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^1.0.0", + "hast-util-parse-selector": "^2.0.0", + "property-information": "^5.0.0", + "space-separated-tokens": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" + }, + "node_modules/history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" + }, + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" + }, + "node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" + }, + "node_modules/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dependencies": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-minifier-terser/node_modules/clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/html-minifier-terser/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/html-tags": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", + "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/html-void-elements": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz", + "integrity": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/html-webpack-plugin": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz", + "integrity": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==", + "dependencies": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "engines": { + "node": ">=6.9" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/html-webpack-plugin/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/html-webpack-plugin/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/html-webpack-plugin/node_modules/util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dependencies": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "node_modules/htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dependencies": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + }, + "node_modules/http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "node_modules/http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/http-errors/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/extend-shallow/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "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/iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + }, + "node_modules/ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "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==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + }, + "node_modules/infima": { + "version": "0.2.0-alpha.22", + "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.22.tgz", + "integrity": "sha512-wKOWp4C1lTFG/h54UWD3Uf6VEsj5qYehM3ZVio3GBzIQuY8B3cTiwG7ZRNoobg+LvdQA21p5BJTugpTLQJLIrA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "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==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "dependencies": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-ci/node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "dependencies": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "node_modules/is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "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==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "dependencies": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd/node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "node_modules/is-weakref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz", + "integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==", + "dependencies": { + "call-bind": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-whitespace-character": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz", + "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-word-character": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz", + "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/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==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/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==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/joi": { + "version": "17.4.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.4.2.tgz", + "integrity": "sha512-Lm56PP+n0+Z2A2rfRvsfWVDXGEWjXxatPopkQ8qQ5mxCEhwHG+Ettgg5o98FFaxilOxozoa14cFhrE/hOzh/Nw==", + "dependencies": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.0", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" + } + }, + "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==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, + "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==" + }, + "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==" + }, + "node_modules/json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + }, + "node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz", + "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "dependencies": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "node_modules/latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "dependencies": { + "package-json": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + }, + "node_modules/loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "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==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.assignin": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", + "integrity": "sha1-uo31+4QesKPoBEIysOJjqNxqKKI=" + }, + "node_modules/lodash.bind": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", + "integrity": "sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU=" + }, + "node_modules/lodash.curry": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz", + "integrity": "sha1-JI42By7ekGUB11lmIAqG2riyMXA=" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + }, + "node_modules/lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=" + }, + "node_modules/lodash.filter": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", + "integrity": "sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4=" + }, + "node_modules/lodash.flatten": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", + "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" + }, + "node_modules/lodash.flow": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz", + "integrity": "sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o=" + }, + "node_modules/lodash.foreach": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", + "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=" + }, + "node_modules/lodash.map": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", + "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "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==" + }, + "node_modules/lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" + }, + "node_modules/lodash.reduce": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", + "integrity": "sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=" + }, + "node_modules/lodash.reject": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", + "integrity": "sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU=" + }, + "node_modules/lodash.some": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", + "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "node_modules/loglevel": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==", + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "engines": { + "node": ">=0.10.0" + } + }, + "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==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/markdown-escapes": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz", + "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdast-squeeze-paragraphs": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz", + "integrity": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==", + "dependencies": { + "unist-util-remove": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-definitions": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", + "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", + "dependencies": { + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz", + "integrity": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==", + "dependencies": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "mdast-util-definitions": "^4.0.0", + "mdurl": "^1.0.0", + "unist-builder": "^2.0.0", + "unist-util-generated": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/memory-fs/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/memory-fs/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "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/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/microevent.ts": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + }, + "node_modules/micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.50.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz", + "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.33", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz", + "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==", + "dependencies": { + "mime-db": "1.50.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-create-react-context": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz", + "integrity": "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==", + "dependencies": { + "@babel/runtime": "^7.12.1", + "tiny-warning": "^1.0.3" + }, + "peerDependencies": { + "prop-types": "^15.0.0", + "react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.2.tgz", + "integrity": "sha512-a3Y4of27Wz+mqK3qrcd3VhYz6cU0iW5x3Sgvqzbj+XmlrSizmvu8QQMl5oMYJjgHOC4iyt+w7l4umP+dQeW3bw==", + "dependencies": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.4.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "dependencies": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "node_modules/minipass": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.5.tgz", + "integrity": "sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dependencies": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/module-alias": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/module-alias/-/module-alias-2.2.2.tgz", + "integrity": "sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==" + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dependencies": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "node_modules/move-concurrently/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "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==" + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + }, + "node_modules/nanoid": { + "version": "3.1.30", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz", + "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-emoji": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", + "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", + "dependencies": { + "lodash": "^4.17.21" + } + }, + "node_modules/node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/readable-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.0.tgz", + "integrity": "sha512-aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA==" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/nprogress": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz", + "integrity": "sha1-y480xTIT2JVyP8urkH6UIq28r7E=" + }, + "node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/null-loader": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/null-loader/-/null-loader-4.0.1.tgz", + "integrity": "sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/null-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/opn/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/optimize-css-assets-webpack-plugin": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.8.tgz", + "integrity": "sha512-mgFS1JdOtEGzD8l+EuISqL57cKO+We9GcoiQEmdCWRqqck+FGNmYJtx9qfAPzEz+lRrlThWMuGDaRkI/yWNx/Q==", + "dependencies": { + "cssnano": "^4.1.10", + "last-call-webpack-plugin": "^3.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dependencies": { + "url-parse": "^1.4.3" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + }, + "node_modules/p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "engines": { + "node": ">=4" + } + }, + "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==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "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==", + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "dependencies": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/package-json/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "node_modules/parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dependencies": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/parallel-transform/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/parallel-transform/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "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==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "dependencies": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "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==", + "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/parse-numeric-range": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz", + "integrity": "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==" + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + }, + "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==", + "engines": { + "node": ">=8" + } + }, + "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": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + }, + "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==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/pnp-webpack-plugin": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz", + "integrity": "sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==", + "dependencies": { + "ts-pnp": "^1.1.6" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.3.9", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.9.tgz", + "integrity": "sha512-f/ZFyAKh9Dnqytx5X62jgjhhzttjZS7hMsohcI7HEI5tjELX/HxCy3EFhsRxyzGvrzFF+82XPvCS8T9TFleVJw==", + "dependencies": { + "nanoid": "^3.1.28", + "picocolors": "^0.2.1", + "source-map-js": "^0.6.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "dependencies": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/postcss-calc/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-calc/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-calc/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dependencies": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-colormin/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-colormin/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-colormin/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-colormin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-convert-values/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-convert-values/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-convert-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-convert-values/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-comments/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-discard-comments/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-discard-comments/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-duplicates/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-discard-duplicates/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-discard-duplicates/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-empty/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-discard-empty/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-discard-empty/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-overridden/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-discard-overridden/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-discard-overridden/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-discard-unused": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-4.0.1.tgz", + "integrity": "sha512-/3vq4LU0bLH2Lj4NYN7BTf2caly0flUB7Xtrk9a5K3yLuXMkHMqMO/x3sDq8W2b1eQFSCyY0IVz2L+0HP8kUUA==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-unused/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-discard-unused/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-discard-unused/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-discard-unused/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz", + "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/postcss-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/postcss-merge-idents": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-4.0.1.tgz", + "integrity": "sha512-43S/VNdF6II0NZ31YxcvNYq4gfURlPAAsJW/z84avBXQCaP4I4qRHUH18slW/SOlJbcxxCobflPNUApYDddS7A==", + "dependencies": { + "cssnano-util-same-parent": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-idents/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-merge-idents/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-merge-idents/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-merge-idents/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dependencies": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-longhand/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-merge-longhand/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-merge-longhand/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-rules/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-merge-rules/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-merge-rules/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-font-values/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-minify-font-values/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-minify-font-values/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-gradients/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-minify-gradients/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-minify-gradients/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dependencies": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-params/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-minify-params/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-minify-params/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-minify-params/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dependencies": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-selectors/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-minify-selectors/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-minify-selectors/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-charset/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-normalize-charset/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-charset/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-normalize-display-values/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-display-values/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-positions/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-normalize-positions/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-positions/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-repeat-style/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-normalize-repeat-style/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-repeat-style/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dependencies": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-string/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-normalize-string/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-string/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-timing-functions/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-normalize-timing-functions/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-timing-functions/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-unicode/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-normalize-unicode/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-unicode/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dependencies": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-url/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-normalize-url/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-url/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-whitespace/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-normalize-whitespace/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-whitespace/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-ordered-values/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-ordered-values/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-ordered-values/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-reduce-idents": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-4.0.2.tgz", + "integrity": "sha512-Tz70Ri10TclPoCtFfftjFVddx3fZGUkr0dEDbIEfbYhFUOFQZZ77TEqRrU0e6TvAvF+Wa5VVzYTpFpq0uwFFzw==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-idents/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-reduce-idents/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-reduce-idents/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-reduce-idents/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-initial/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-reduce-initial/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-reduce-initial/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-reduce-transforms/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-reduce-transforms/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", + "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-sort-media-queries": { + "version": "1.31.21", + "resolved": "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-1.31.21.tgz", + "integrity": "sha512-h+HbXXfOVFeLvCJOzl/Z9SqQ25MNpG/73k71756ftisaaJy75h06/Dn6KOwC4OCMN10ewT2PXMzHV03JNKwBbg==", + "dependencies": { + "postcss": "^7.0.27", + "sort-css-media-queries": "1.5.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-sort-media-queries/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-sort-media-queries/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-sort-media-queries/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-svgo/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-svgo/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-svgo/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dependencies": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-unique-selectors/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-unique-selectors/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-unique-selectors/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + }, + "node_modules/postcss-zindex": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-4.0.1.tgz", + "integrity": "sha512-d/8BlQcUdEugZNRM9AdCA2V4fqREUtn/wcixLN3L6ITgc2P/FMcVVYz8QZkhItWT9NB5qr8wuN2dJCE4/+dlrA==", + "dependencies": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-zindex/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/postcss-zindex/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-zindex/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "node_modules/pretty-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", + "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/prism-react-renderer": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-1.2.1.tgz", + "integrity": "sha512-w23ch4f75V1Tnz8DajsYKvY5lF7H1+WvzvLUcF0paFxkTHSp42RS0H5CttdN2Q8RR3DRGZ9v5xD/h3n8C8kGmg==", + "peerDependencies": { + "react": ">=0.14.9" + } + }, + "node_modules/prismjs": { + "version": "1.25.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.25.0.tgz", + "integrity": "sha512-WCjJHl1KEWbnkQom1+SzftbtXMKQoezOCYs5rECqMN+jP+apI7ftoflyqigqzopSO3hMhTEb0mFClA8lkolgEg==" + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "node_modules/property-information": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", + "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", + "dependencies": { + "xtend": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "node_modules/pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "dependencies": { + "escape-goat": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pure-color": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz", + "integrity": "sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4=" + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "dependencies": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "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==", + "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/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dependencies": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-base16-styling": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.6.0.tgz", + "integrity": "sha1-7yFW1mz0E5aVyKFniGy2nqZgeSw=", + "dependencies": { + "base16": "^1.0.0", + "lodash.curry": "^4.0.1", + "lodash.flow": "^3.3.0", + "pure-color": "^1.2.0" + } + }, + "node_modules/react-dev-utils": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz", + "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==", + "dependencies": { + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "8.0.1", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/react-dev-utils/node_modules/browserslist": { + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "dependencies": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + }, + "node_modules/react-dev-utils/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==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/chalk/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": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/react-dev-utils/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/react-dev-utils/node_modules/node-releases": { + "version": "1.1.77", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz", + "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==" + }, + "node_modules/react-dev-utils/node_modules/prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/react-dev-utils/node_modules/strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + }, + "peerDependencies": { + "react": "17.0.2" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz", + "integrity": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" + }, + "node_modules/react-fast-compare": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz", + "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" + }, + "node_modules/react-helmet": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/react-helmet/-/react-helmet-6.1.0.tgz", + "integrity": "sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==", + "dependencies": { + "object-assign": "^4.1.1", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.1.1", + "react-side-effect": "^2.1.0" + }, + "peerDependencies": { + "react": ">=16.3.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-json-view": { + "version": "1.21.3", + "resolved": "https://registry.npmjs.org/react-json-view/-/react-json-view-1.21.3.tgz", + "integrity": "sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==", + "dependencies": { + "flux": "^4.0.1", + "react-base16-styling": "^0.6.0", + "react-lifecycles-compat": "^3.0.4", + "react-textarea-autosize": "^8.3.2" + }, + "peerDependencies": { + "react": "^17.0.0 || ^16.3.0 || ^15.5.4", + "react-dom": "^17.0.0 || ^16.3.0 || ^15.5.4" + } + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-loadable": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/react-loadable/-/react-loadable-5.5.0.tgz", + "integrity": "sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg==", + "dependencies": { + "prop-types": "^15.5.0" + }, + "peerDependencies": { + "react": "*" + } + }, + "node_modules/react-loadable-ssr-addon": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/react-loadable-ssr-addon/-/react-loadable-ssr-addon-0.3.0.tgz", + "integrity": "sha512-E+lnmDakV0k6ut6R2J77vurwCOwTKEwKlHs9S62G8ez+ujecLPcqjt3YAU8M58kIGjp2QjFlZ7F9QWkq/mr6Iw==", + "dependencies": { + "@babel/runtime": "^7.10.3" + }, + "engines": { + "node": ">=4.2.4" + }, + "peerDependencies": { + "react-loadable": "*", + "webpack": ">=4.41.1" + } + }, + "node_modules/react-router": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.1.tgz", + "integrity": "sha512-lIboRiOtDLFdg1VTemMwud9vRVuOCZmUIT/7lUoZiSpPODiiH1UQlfXy+vPLC/7IWdFYnhRwAyNqA/+I7wnvKQ==", + "dependencies": { + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "mini-create-react-context": "^0.4.0", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-router-config": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz", + "integrity": "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==", + "dependencies": { + "@babel/runtime": "^7.1.2" + }, + "peerDependencies": { + "react": ">=15", + "react-router": ">=5" + } + }, + "node_modules/react-router-dom": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.0.tgz", + "integrity": "sha512-ObVBLjUZsphUUMVycibxgMdh5jJ1e3o+KpAZBVeHcNQZ4W+uUGGWsokurzlF4YOldQYRQL4y6yFRWM4m3svmuQ==", + "dependencies": { + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.2.1", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-router/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "node_modules/react-router/node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dependencies": { + "isarray": "0.0.1" + } + }, + "node_modules/react-side-effect": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/react-side-effect/-/react-side-effect-2.1.1.tgz", + "integrity": "sha512-2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ==", + "peerDependencies": { + "react": "^16.3.0 || ^17.0.0" + } + }, + "node_modules/react-textarea-autosize": { + "version": "8.3.3", + "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.3.tgz", + "integrity": "sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==", + "dependencies": { + "@babel/runtime": "^7.10.2", + "use-composed-ref": "^1.0.0", + "use-latest": "^1.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/reading-time": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz", + "integrity": "sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==" + }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "dependencies": { + "minimatch": "3.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz", + "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "node_modules/regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz", + "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/registry-auth-token": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", + "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", + "dependencies": { + "rc": "^1.2.8" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "dependencies": { + "rc": "^1.2.8" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + }, + "node_modules/regjsparser": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz", + "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==", + "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": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/rehype-parse": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-6.0.2.tgz", + "integrity": "sha512-0S3CpvpTAgGmnz8kiCyFLGuW5yA4OQhyNTm/nwPopZ7+PI11WnGl1TTWTGv/2hPEe/g2jRLlhVVSsoDH8waRug==", + "dependencies": { + "hast-util-from-parse5": "^5.0.0", + "parse5": "^5.0.0", + "xtend": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-parse/node_modules/hast-util-from-parse5": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-5.0.3.tgz", + "integrity": "sha512-gOc8UB99F6eWVWFtM9jUikjN7QkWxB3nY0df5Z0Zq1/Nkwl5V4hAAsl0tmwlgWl/1shlTF8DnNYLO8X6wRV9pA==", + "dependencies": { + "ccount": "^1.0.3", + "hastscript": "^5.0.0", + "property-information": "^5.0.0", + "web-namespaces": "^1.1.2", + "xtend": "^4.0.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-parse/node_modules/hastscript": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-5.1.2.tgz", + "integrity": "sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ==", + "dependencies": { + "comma-separated-tokens": "^1.0.0", + "hast-util-parse-selector": "^2.0.0", + "property-information": "^5.0.0", + "space-separated-tokens": "^1.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-parse/node_modules/parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==" + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remark-admonitions": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/remark-admonitions/-/remark-admonitions-1.2.1.tgz", + "integrity": "sha512-Ji6p68VDvD+H1oS95Fdx9Ar5WA2wcDA4kwrrhVU7fGctC6+d3uiMICu7w7/2Xld+lnU7/gi+432+rRbup5S8ow==", + "dependencies": { + "rehype-parse": "^6.0.2", + "unified": "^8.4.2", + "unist-util-visit": "^2.0.1" + } + }, + "node_modules/remark-admonitions/node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/remark-admonitions/node_modules/unified": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", + "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", + "dependencies": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-emoji": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/remark-emoji/-/remark-emoji-2.2.0.tgz", + "integrity": "sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==", + "dependencies": { + "emoticon": "^3.2.0", + "node-emoji": "^1.10.0", + "unist-util-visit": "^2.0.3" + } + }, + "node_modules/remark-footnotes": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-2.0.0.tgz", + "integrity": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-1.6.22.tgz", + "integrity": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==", + "dependencies": { + "@babel/core": "7.12.9", + "@babel/helper-plugin-utils": "7.10.4", + "@babel/plugin-proposal-object-rest-spread": "7.12.1", + "@babel/plugin-syntax-jsx": "7.12.1", + "@mdx-js/util": "1.6.22", + "is-alphabetical": "1.0.4", + "remark-parse": "8.0.3", + "unified": "9.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-mdx/node_modules/@babel/core": { + "version": "7.12.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz", + "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.5", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.5", + "@babel/parser": "^7.12.7", + "@babel/template": "^7.12.7", + "@babel/traverse": "^7.12.9", + "@babel/types": "^7.12.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/remark-mdx/node_modules/@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + }, + "node_modules/remark-mdx/node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz", + "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-transform-parameters": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/remark-mdx/node_modules/@babel/plugin-syntax-jsx": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz", + "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/remark-mdx/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/remark-parse": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz", + "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==", + "dependencies": { + "ccount": "^1.0.0", + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^2.0.0", + "vfile-location": "^3.0.0", + "xtend": "^4.0.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remark-squeeze-paragraphs": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz", + "integrity": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==", + "dependencies": { + "mdast-squeeze-paragraphs": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "node_modules/renderkid": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + } + }, + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/renderkid/node_modules/css-select": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz", + "integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/renderkid/node_modules/css-what": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz", + "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/renderkid/node_modules/dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/renderkid/node_modules/domhandler": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/renderkid/node_modules/nth-check": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", + "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-like": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz", + "integrity": "sha1-rW8wwTvs15cBDEaK+ndcDAprR/o=", + "engines": { + "node": "*" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + }, + "node_modules/resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "engines": { + "node": ">=4" + } + }, + "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==", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pathname": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "deprecated": "https://github.com/lydell/resolve-url#deprecated" + }, + "node_modules/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "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==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" + }, + "node_modules/rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/rtl-detect": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/rtl-detect/-/rtl-detect-1.0.4.tgz", + "integrity": "sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==" + }, + "node_modules/rtlcss": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-2.6.2.tgz", + "integrity": "sha512-06LFAr+GAPo+BvaynsXRfoYTJvSaWRyOhURCQ7aeI1MKph9meM222F+Zkt3bDamyHHJuGi3VPtiRkpyswmQbGA==", + "dependencies": { + "@choojs/findup": "^0.2.1", + "chalk": "^2.4.2", + "mkdirp": "^0.5.1", + "postcss": "^6.0.23", + "strip-json-comments": "^2.0.0" + }, + "bin": { + "rtlcss": "bin/rtlcss.js" + } + }, + "node_modules/rtlcss/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==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/rtlcss/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dependencies": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/rtlcss/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "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==", + "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/run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", + "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/section-matter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", + "dependencies": { + "extend-shallow": "^2.0.1", + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + }, + "node_modules/selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", + "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "dependencies": { + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/semver-diff/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dependencies": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + }, + "node_modules/serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-handler": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.3.tgz", + "integrity": "sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==", + "dependencies": { + "bytes": "3.0.0", + "content-disposition": "0.5.2", + "fast-url-parser": "1.1.3", + "mime-types": "2.1.18", + "minimatch": "3.0.4", + "path-is-inside": "1.0.2", + "path-to-regexp": "2.2.1", + "range-parser": "1.2.0" + } + }, + "node_modules/serve-handler/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serve-handler/node_modules/content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-handler/node_modules/mime-db": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-handler/node_modules/mime-types": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "dependencies": { + "mime-db": "~1.33.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-handler/node_modules/path-to-regexp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz", + "integrity": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==" + }, + "node_modules/serve-handler/node_modules/range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "node_modules/serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "node_modules/setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "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/shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + }, + "node_modules/shelljs": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz", + "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==", + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz", + "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==" + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/sirv": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.17.tgz", + "integrity": "sha512-qx9go5yraB7ekT7bCMqUHJ5jEaOC/GXBxUWv+jeWnb7WzHUFdcQPGWk7YmAwFBaQBrogpuSqd/azbC2lZRqqmw==", + "dependencies": { + "@polka/url": "^1.0.0-next.20", + "mime": "^2.3.1", + "totalist": "^1.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/sirv/node_modules/mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/sitemap": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-6.4.0.tgz", + "integrity": "sha512-DoPKNc2/apQZTUnfiOONWctwq7s6dZVspxAZe2VPMNtoqNq7HgXRvlRnbIpKjf+8+piQdWncwcy+YhhTGY5USQ==", + "dependencies": { + "@types/node": "^14.14.28", + "@types/sax": "^1.2.1", + "arg": "^5.0.0", + "sax": "^1.2.4" + }, + "bin": { + "sitemap": "dist/cli.js" + }, + "engines": { + "node": ">=10.3.0", + "npm": ">=5.6.0" + } + }, + "node_modules/sitemap/node_modules/@types/node": { + "version": "14.17.27", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.27.tgz", + "integrity": "sha512-94+Ahf9IcaDuJTle/2b+wzvjmutxXAEXU6O81JHblYXUg2BDG+dnBy7VxIPHKAyEEDHzCMQydTJuWvrE+Aanzw==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.2.tgz", + "integrity": "sha512-ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==", + "dependencies": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.3" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/sort-css-media-queries": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sort-css-media-queries/-/sort-css-media-queries-1.5.0.tgz", + "integrity": "sha512-QofNE7CEVH1AKdhS7L9IPbV9UtyQYNXyw++8lC+xG6iOLlpzsmncZRiKbihTAESvZ8wOhwnPoesHbMrehrQyyw==", + "engines": { + "node": ">= 6.3.0" + } + }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz", + "integrity": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.20", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz", + "integrity": "sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + }, + "node_modules/space-separated-tokens": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "node_modules/state-toggle": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz", + "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/std-env": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-2.3.1.tgz", + "integrity": "sha512-eOsoKTWnr6C8aWrqJJ2KAReXoa7Vn5Ywyw6uCXgA/xDhxPoaIsBa5aNJmISY04dLwXPBnDHW4diGM7Sn5K4R/g==", + "dependencies": { + "ci-info": "^3.1.1" + } + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-browserify/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/stream-browserify/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-http/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/stream-http/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "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/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/string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/stringify-object/node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "engines": { + "node": ">=0.10.0" + } + }, + "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-bom-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/style-to-object": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", + "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", + "dependencies": { + "inline-style-parser": "0.1.1" + } + }, + "node_modules/stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/stylehacks/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/stylehacks/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/stylehacks/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/stylehacks/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "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==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/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==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", + "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "dependencies": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/terser-webpack-plugin/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==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.9.0.tgz", + "integrity": "sha512-h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ==", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/terser/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + }, + "node_modules/tiny-invariant": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz", + "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + }, + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "engines": { + "node": ">=6" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz", + "integrity": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/trim": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", + "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" + }, + "node_modules/trim-trailing-lines": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz", + "integrity": "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/ts-essentials": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-2.0.12.tgz", + "integrity": "sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==" + }, + "node_modules/ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + }, + "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==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/ua-parser-js": { + "version": "0.7.28", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz", + "integrity": "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + } + ], + "engines": { + "node": "*" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "dependencies": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unherit": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz", + "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==", + "dependencies": { + "inherits": "^2.0.0", + "xtend": "^4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unified": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz", + "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==", + "dependencies": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unified/node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/unified/node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "node_modules/uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/unist-builder": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz", + "integrity": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-generated": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz", + "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz", + "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.1.0.tgz", + "integrity": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==", + "dependencies": { + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-remove-position": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz", + "integrity": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==", + "dependencies": { + "unist-util-visit": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "dependencies": { + "@types/unist": "^2.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", + "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", + "dependencies": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/yeoman/update-notifier?sponsor=1" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/uri-js/node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "deprecated": "Please see https://github.com/lydell/urix#deprecated" + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/url-parse": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz", + "integrity": "sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/url-parse-lax/node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "engines": { + "node": ">=4" + } + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/use-composed-ref": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.1.0.tgz", + "integrity": "sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==", + "dependencies": { + "ts-essentials": "^2.0.3" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/use-isomorphic-layout-effect": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.1.tgz", + "integrity": "sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-latest": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.0.tgz", + "integrity": "sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==", + "dependencies": { + "use-isomorphic-layout-effect": "^1.0.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + }, + "node_modules/utility-types": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz", + "integrity": "sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/value-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/vfile": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "dependencies": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-location": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz", + "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "dependencies": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile/node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "node_modules/wait-on": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-5.3.0.tgz", + "integrity": "sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==", + "dependencies": { + "axios": "^0.21.1", + "joi": "^17.3.0", + "lodash": "^4.17.21", + "minimist": "^1.2.5", + "rxjs": "^6.6.3" + }, + "bin": { + "wait-on": "bin/wait-on" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dependencies": { + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + }, + "optionalDependencies": { + "chokidar": "^3.4.1", + "watchpack-chokidar2": "^2.0.1" + } + }, + "node_modules/watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "optional": true, + "dependencies": { + "chokidar": "^2.1.8" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "optional": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "optional": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "optional": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.", + "optional": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/watchpack-chokidar2/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "optional": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/extend-shallow/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "optional": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "optional": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "optional": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "optional": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "optional": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "optional": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "optional": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "optional": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "optional": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/watchpack-chokidar2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "optional": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "optional": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/web-namespaces": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz", + "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/webpack": { + "version": "4.46.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz", + "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + }, + "webpack-command": { + "optional": true + } + } + }, + "node_modules/webpack-bundle-analyzer": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz", + "integrity": "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==", + "dependencies": { + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "opener": "^1.5.2", + "sirv": "^1.0.7", + "ws": "^7.3.1" + }, + "bin": { + "webpack-bundle-analyzer": "lib/bin/analyzer.js" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/acorn": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz", + "integrity": "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz", + "integrity": "sha512-A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ==", + "dependencies": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.", + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/webpack-dev-server/node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/extend-shallow/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-dev-server/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/webpack-dev-server/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack-dev-server/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/webpack-dev-server/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-merge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", + "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==", + "dependencies": { + "lodash": "^4.17.15" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack-sources/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dependencies": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/webpack/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/extend-shallow/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/webpack/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/webpack/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/webpack/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/webpack/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "dependencies": { + "figgy-pudding": "^3.5.1" + } + }, + "node_modules/webpack/node_modules/terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dependencies": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/webpackbar": { + "version": "5.0.0-3", + "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.0-3.tgz", + "integrity": "sha512-viW6KCYjMb0NPoDrw2jAmLXU2dEOhRrtku28KmOfeE1vxbfwCYuTbTaMhnkrCZLFAFyY9Q49Z/jzYO80Dw5b8g==", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.1.0", + "consola": "^2.15.0", + "figures": "^3.2.0", + "pretty-time": "^1.1.0", + "std-env": "^2.2.1", + "text-table": "^0.2.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "webpack": "3 || 4 || 5" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "engines": { + "node": ">=0.8.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/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/worker-rpc": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", + "dependencies": { + "microevent.ts": "~0.1.1" + } + }, + "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/wrap-ansi/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/wrap-ansi/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/wrap-ansi/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/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.5.tgz", + "integrity": "sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/xml-js": { + "version": "1.6.11", + "resolved": "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz", + "integrity": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==", + "dependencies": { + "sax": "^1.2.4" + }, + "bin": { + "xml-js": "bin/cli.js" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "node_modules/yargs/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/yargs/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "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==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zwitch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + }, + "dependencies": { + "@algolia/autocomplete-core": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.2.2.tgz", + "integrity": "sha512-JOQaURze45qVa8OOFDh+ozj2a/ObSRsVyz6Zd0aiBeej+RSTqrr1hDVpGNbbXYLW26G5ujuc9QIdH+rBHn95nw==", + "requires": { + "@algolia/autocomplete-shared": "1.2.2" + } + }, + "@algolia/autocomplete-preset-algolia": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.2.2.tgz", + "integrity": "sha512-AZkh+bAMaJDzMZTelFOXJTJqkp5VPGH8W3n0B+Ggce7DdozlMRsDLguKTCQAkZ0dJ1EbBPyFL5ztL/JImB137Q==", + "requires": { + "@algolia/autocomplete-shared": "1.2.2" + } + }, + "@algolia/autocomplete-shared": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.2.2.tgz", + "integrity": "sha512-mLTl7d2C1xVVazHt/bqh9EE/u2lbp5YOxLDdcjILXmUqOs5HH1D4SuySblXaQG1uf28FhTqMGp35qE5wJQnqAw==" + }, + "@algolia/cache-browser-local-storage": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.10.5.tgz", + "integrity": "sha512-cfX2rEKOtuuljcGI5DMDHClwZHdDqd2nT2Ohsc8aHtBiz6bUxKVyIqxr2gaC6tU8AgPtrTVBzcxCA+UavXpKww==", + "requires": { + "@algolia/cache-common": "4.10.5" + } + }, + "@algolia/cache-common": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.10.5.tgz", + "integrity": "sha512-1mClwdmTHll+OnHkG+yeRoFM17kSxDs4qXkjf6rNZhoZGXDvfYLy3YcZ1FX4Kyz0DJv8aroq5RYGBDsWkHj6Tw==" + }, + "@algolia/cache-in-memory": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.10.5.tgz", + "integrity": "sha512-+ciQnfIGi5wjMk02XhEY8fmy2pzy+oY1nIIfu8LBOglaSipCRAtjk6WhHc7/KIbXPiYzIwuDbM2K1+YOwSGjwA==", + "requires": { + "@algolia/cache-common": "4.10.5" + } + }, + "@algolia/client-account": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.10.5.tgz", + "integrity": "sha512-I9UkSS2glXm7RBZYZIALjBMmXSQbw/fI/djPcBHxiwXIheNIlqIFl2SNPkvihpPF979BSkzjqdJNRPhE1vku3Q==", + "requires": { + "@algolia/client-common": "4.10.5", + "@algolia/client-search": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "@algolia/client-analytics": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.10.5.tgz", + "integrity": "sha512-h2owwJSkovPxzc+xIsjY1pMl0gj+jdVwP9rcnGjlaTY2fqHbSLrR9yvGyyr6305LvTppxsQnfAbRdE/5Z3eFxw==", + "requires": { + "@algolia/client-common": "4.10.5", + "@algolia/client-search": "4.10.5", + "@algolia/requester-common": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "@algolia/client-common": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.10.5.tgz", + "integrity": "sha512-21FAvIai5qm8DVmZHm2Gp4LssQ/a0nWwMchAx+1hIRj1TX7OcdW6oZDPyZ8asQdvTtK7rStQrRnD8a95SCUnzA==", + "requires": { + "@algolia/requester-common": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "@algolia/client-personalization": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.10.5.tgz", + "integrity": "sha512-nH+IyFKBi8tCyzGOanJTbXC5t4dspSovX3+ABfmwKWUYllYzmiQNFUadpb3qo+MLA3jFx5IwBesjneN6dD5o3w==", + "requires": { + "@algolia/client-common": "4.10.5", + "@algolia/requester-common": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "@algolia/client-search": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.10.5.tgz", + "integrity": "sha512-1eQFMz9uodrc5OM+9HeT+hHcfR1E1AsgFWXwyJ9Q3xejA2c1c4eObGgOgC9ZoshuHHdptaTN1m3rexqAxXRDBg==", + "requires": { + "@algolia/client-common": "4.10.5", + "@algolia/requester-common": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "@algolia/logger-common": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.10.5.tgz", + "integrity": "sha512-gRJo9zt1UYP4k3woEmZm4iuEBIQd/FrArIsjzsL/b+ihNoOqIxZKTSuGFU4UUZOEhvmxDReiA4gzvQXG+TMTmA==" + }, + "@algolia/logger-console": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.10.5.tgz", + "integrity": "sha512-4WfIbn4253EDU12u9UiYvz+QTvAXDv39mKNg9xSoMCjKE5szcQxfcSczw2byc6pYhahOJ9PmxPBfs1doqsdTKQ==", + "requires": { + "@algolia/logger-common": "4.10.5" + } + }, + "@algolia/requester-browser-xhr": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.10.5.tgz", + "integrity": "sha512-53/MURQEqtK+bGdfq4ITSPwTh5hnADU99qzvpAINGQveUFNSFGERipJxHjTJjIrjFz3vxj5kKwjtxDnU6ygO9g==", + "requires": { + "@algolia/requester-common": "4.10.5" + } + }, + "@algolia/requester-common": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.10.5.tgz", + "integrity": "sha512-UkVa1Oyuj6NPiAEt5ZvrbVopEv1m/mKqjs40KLB+dvfZnNcj+9Fry4Oxnt15HMy/HLORXsx4UwcthAvBuOXE9Q==" + }, + "@algolia/requester-node-http": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.10.5.tgz", + "integrity": "sha512-aNEKVKXL4fiiC+bS7yJwAHdxln81ieBwY3tsMCtM4zF9f5KwCzY2OtN4WKEZa5AAADVcghSAUdyjs4AcGUlO5w==", + "requires": { + "@algolia/requester-common": "4.10.5" + } + }, + "@algolia/transporter": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.10.5.tgz", + "integrity": "sha512-F8DLkmIlvCoMwSCZA3FKHtmdjH3o5clbt0pi2ktFStVNpC6ZDmY307HcK619bKP5xW6h8sVJhcvrLB775D2cyA==", + "requires": { + "@algolia/cache-common": "4.10.5", + "@algolia/logger-common": "4.10.5", + "@algolia/requester-common": "4.10.5" + } + }, + "@babel/code-frame": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", + "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", + "requires": { + "@babel/highlight": "^7.14.5" + } + }, + "@babel/compat-data": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", + "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==" + }, + "@babel/core": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz", + "integrity": "sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og==", + "requires": { + "@babel/code-frame": "^7.15.8", + "@babel/generator": "^7.15.8", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.8", + "@babel/helpers": "^7.15.4", + "@babel/parser": "^7.15.8", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/generator": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz", + "integrity": "sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g==", + "requires": { + "@babel/types": "^7.15.6", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz", + "integrity": "sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz", + "integrity": "sha512-P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q==", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz", + "integrity": "sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==", + "requires": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.16.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz", + "integrity": "sha512-7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz", + "integrity": "sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz", + "integrity": "sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==", + "requires": { + "@babel/helper-compilation-targets": "^7.13.0", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/traverse": "^7.13.0", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz", + "integrity": "sha512-J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g==", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-function-name": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz", + "integrity": "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==", + "requires": { + "@babel/helper-get-function-arity": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz", + "integrity": "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz", + "integrity": "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz", + "integrity": "sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-module-imports": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz", + "integrity": "sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-module-transforms": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz", + "integrity": "sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg==", + "requires": { + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-simple-access": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz", + "integrity": "sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz", + "integrity": "sha512-v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-wrap-function": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-replace-supers": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz", + "integrity": "sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-simple-access": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz", + "integrity": "sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz", + "integrity": "sha512-BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A==", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz", + "integrity": "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==", + "requires": { + "@babel/types": "^7.15.4" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.15.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", + "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==" + }, + "@babel/helper-wrap-function": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz", + "integrity": "sha512-Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw==", + "requires": { + "@babel/helper-function-name": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/helpers": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz", + "integrity": "sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==", + "requires": { + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", + "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + } + } + }, + "@babel/parser": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz", + "integrity": "sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA==" + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz", + "integrity": "sha512-eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.15.4", + "@babel/plugin-proposal-optional-chaining": "^7.14.5" + } + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.8.tgz", + "integrity": "sha512-2Z5F2R2ibINTc63mY7FLqGfEbmofrHU9FitJW1Q7aPaKFhiPvSq6QEt/BoWN5oME3GVyjcRuNNSRbb9LC0CSWA==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.15.4", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz", + "integrity": "sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-class-static-block": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz", + "integrity": "sha512-M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz", + "integrity": "sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz", + "integrity": "sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz", + "integrity": "sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz", + "integrity": "sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz", + "integrity": "sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz", + "integrity": "sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.15.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.15.6.tgz", + "integrity": "sha512-qtOHo7A1Vt+O23qEAX+GdBpqaIuD3i9VRrWgCJeq7WO6H2d14EK3q11urj5Te2MAeK97nMiIdRpwd/ST4JFbNg==", + "requires": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.15.4" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz", + "integrity": "sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz", + "integrity": "sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz", + "integrity": "sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz", + "integrity": "sha512-X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz", + "integrity": "sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz", + "integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz", + "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz", + "integrity": "sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz", + "integrity": "sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==", + "requires": { + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz", + "integrity": "sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz", + "integrity": "sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz", + "integrity": "sha512-Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz", + "integrity": "sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz", + "integrity": "sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz", + "integrity": "sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz", + "integrity": "sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz", + "integrity": "sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz", + "integrity": "sha512-DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz", + "integrity": "sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==", + "requires": { + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz", + "integrity": "sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz", + "integrity": "sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz", + "integrity": "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": { + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "requires": { + "object.assign": "^4.1.0" + } + } + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz", + "integrity": "sha512-qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA==", + "requires": { + "@babel/helper-module-transforms": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-simple-access": "^7.15.4", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": { + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "requires": { + "object.assign": "^4.1.0" + } + } + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz", + "integrity": "sha512-fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw==", + "requires": { + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.9", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "dependencies": { + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "requires": { + "object.assign": "^4.1.0" + } + } + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz", + "integrity": "sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==", + "requires": { + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz", + "integrity": "sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz", + "integrity": "sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz", + "integrity": "sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-replace-supers": "^7.14.5" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz", + "integrity": "sha512-9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz", + "integrity": "sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-constant-elements": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.14.5.tgz", + "integrity": "sha512-NBqLEx1GxllIOXJInJAQbrnwwYJsV3WaMHIcOwD8rhYS0AabTWn7kHdHgPgu5RmHLU0q4DMxhAMu8ue/KampgQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.15.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz", + "integrity": "sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz", + "integrity": "sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-module-imports": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-jsx": "^7.14.5", + "@babel/types": "^7.14.9" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.14.5.tgz", + "integrity": "sha512-rdwG/9jC6QybWxVe2UVOa7q6cnTpw8JRRHOxntG/h6g/guAOe6AhtQHJuJh5FwmnXIT1bdm5vC2/5huV8ZOorQ==", + "requires": { + "@babel/plugin-transform-react-jsx": "^7.14.5" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.14.5.tgz", + "integrity": "sha512-3X4HpBJimNxW4rhUy/SONPyNQHp5YRr0HhJdT2OH1BRp0of7u3Dkirc7x9FRJMKMqTBI079VZ1hzv7Ouuz///g==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz", + "integrity": "sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==", + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz", + "integrity": "sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.15.8.tgz", + "integrity": "sha512-+6zsde91jMzzvkzuEA3k63zCw+tm/GvuuabkpisgbDMTPQsIMHllE3XczJFFtEHLjjhKQFZmGQVRdELetlWpVw==", + "requires": { + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.5", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz", + "integrity": "sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.15.8.tgz", + "integrity": "sha512-/daZ8s2tNaRekl9YJa9X4bzjpeRZLt122cpgFnQPLGUe61PH8zMEBmYqKkW5xF5JUEh5buEGXJoQpqBmIbpmEQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.15.4" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz", + "integrity": "sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz", + "integrity": "sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz", + "integrity": "sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.8.tgz", + "integrity": "sha512-ZXIkJpbaf6/EsmjeTbiJN/yMxWPFWvlr7sEG1P95Xb4S4IBcrf2n7s/fItIhsAmOf8oSh3VJPDppO6ExfAfKRQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/plugin-syntax-typescript": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz", + "integrity": "sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz", + "integrity": "sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.14.5", + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/preset-env": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.8.tgz", + "integrity": "sha512-rCC0wH8husJgY4FPbHsiYyiLxSY8oMDJH7Rl6RQMknbN9oDDHhM9RDFvnGM2MgkbUJzSQB4gtuwygY5mCqGSsA==", + "requires": { + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.15.4", + "@babel/plugin-proposal-async-generator-functions": "^7.15.8", + "@babel/plugin-proposal-class-properties": "^7.14.5", + "@babel/plugin-proposal-class-static-block": "^7.15.4", + "@babel/plugin-proposal-dynamic-import": "^7.14.5", + "@babel/plugin-proposal-export-namespace-from": "^7.14.5", + "@babel/plugin-proposal-json-strings": "^7.14.5", + "@babel/plugin-proposal-logical-assignment-operators": "^7.14.5", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", + "@babel/plugin-proposal-numeric-separator": "^7.14.5", + "@babel/plugin-proposal-object-rest-spread": "^7.15.6", + "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", + "@babel/plugin-proposal-optional-chaining": "^7.14.5", + "@babel/plugin-proposal-private-methods": "^7.14.5", + "@babel/plugin-proposal-private-property-in-object": "^7.15.4", + "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.14.5", + "@babel/plugin-transform-async-to-generator": "^7.14.5", + "@babel/plugin-transform-block-scoped-functions": "^7.14.5", + "@babel/plugin-transform-block-scoping": "^7.15.3", + "@babel/plugin-transform-classes": "^7.15.4", + "@babel/plugin-transform-computed-properties": "^7.14.5", + "@babel/plugin-transform-destructuring": "^7.14.7", + "@babel/plugin-transform-dotall-regex": "^7.14.5", + "@babel/plugin-transform-duplicate-keys": "^7.14.5", + "@babel/plugin-transform-exponentiation-operator": "^7.14.5", + "@babel/plugin-transform-for-of": "^7.15.4", + "@babel/plugin-transform-function-name": "^7.14.5", + "@babel/plugin-transform-literals": "^7.14.5", + "@babel/plugin-transform-member-expression-literals": "^7.14.5", + "@babel/plugin-transform-modules-amd": "^7.14.5", + "@babel/plugin-transform-modules-commonjs": "^7.15.4", + "@babel/plugin-transform-modules-systemjs": "^7.15.4", + "@babel/plugin-transform-modules-umd": "^7.14.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", + "@babel/plugin-transform-new-target": "^7.14.5", + "@babel/plugin-transform-object-super": "^7.14.5", + "@babel/plugin-transform-parameters": "^7.15.4", + "@babel/plugin-transform-property-literals": "^7.14.5", + "@babel/plugin-transform-regenerator": "^7.14.5", + "@babel/plugin-transform-reserved-words": "^7.14.5", + "@babel/plugin-transform-shorthand-properties": "^7.14.5", + "@babel/plugin-transform-spread": "^7.15.8", + "@babel/plugin-transform-sticky-regex": "^7.14.5", + "@babel/plugin-transform-template-literals": "^7.14.5", + "@babel/plugin-transform-typeof-symbol": "^7.14.5", + "@babel/plugin-transform-unicode-escapes": "^7.14.5", + "@babel/plugin-transform-unicode-regex": "^7.14.5", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.15.6", + "babel-plugin-polyfill-corejs2": "^0.2.2", + "babel-plugin-polyfill-corejs3": "^0.2.5", + "babel-plugin-polyfill-regenerator": "^0.2.2", + "core-js-compat": "^3.16.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.14.5.tgz", + "integrity": "sha512-XFxBkjyObLvBaAvkx1Ie95Iaq4S/GUEIrejyrntQ/VCMKUYvKLoyKxOBzJ2kjA3b6rC9/KL6KXfDC2GqvLiNqQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-react-display-name": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.5", + "@babel/plugin-transform-react-jsx-development": "^7.14.5", + "@babel/plugin-transform-react-pure-annotations": "^7.14.5" + } + }, + "@babel/preset-typescript": { + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.15.0.tgz", + "integrity": "sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==", + "requires": { + "@babel/helper-plugin-utils": "^7.14.5", + "@babel/helper-validator-option": "^7.14.5", + "@babel/plugin-transform-typescript": "^7.15.0" + } + }, + "@babel/runtime": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz", + "integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/runtime-corejs3": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz", + "integrity": "sha512-lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg==", + "requires": { + "core-js-pure": "^3.16.0", + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz", + "integrity": "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4" + } + }, + "@babel/traverse": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz", + "integrity": "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==", + "requires": { + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.15.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz", + "integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==", + "requires": { + "@babel/helper-validator-identifier": "^7.14.9", + "to-fast-properties": "^2.0.0" + } + }, + "@choojs/findup": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@choojs/findup/-/findup-0.2.1.tgz", + "integrity": "sha512-YstAqNb0MCN8PjdLCDfRsBcGVRN41f3vgLvaI0IrIcBp4AqILRSS0DeWNGkicC+f/zRIPJLc+9RURVSepwvfBw==", + "requires": { + "commander": "^2.15.1" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + } + }, + "@docsearch/css": { + "version": "3.0.0-alpha.40", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.0.0-alpha.40.tgz", + "integrity": "sha512-PrOTPgJMl+Iji1zOH0+J0PEDMriJ1teGxbgll7o4h8JrvJW6sJGqQw7/bLW7enWiFaxbJMK76w1yyPNLFHV7Qg==" + }, + "@docsearch/react": { + "version": "3.0.0-alpha.40", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.0.0-alpha.40.tgz", + "integrity": "sha512-aKxnu7sgpP1R7jtgOV/pZdJEHXx6Ts+jnS9U/ejSUS2BMUpwQI5SA3oLs1BA5TA9kIViJ5E+rrjh0VsbcsJ6sQ==", + "requires": { + "@algolia/autocomplete-core": "1.2.2", + "@algolia/autocomplete-preset-algolia": "1.2.2", + "@docsearch/css": "3.0.0-alpha.40", + "algoliasearch": "^4.0.0" + } + }, + "@docusaurus/core": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-2.0.0-alpha.73.tgz", + "integrity": "sha512-gUF5UOcy/5XmPWFOpLdiilI+7FEEYtvunB62xnvwEp/SNRvoL9PAs9dI2mFaDkme1RmUtPMXKzPZxwlntFnA9A==", + "requires": { + "@babel/core": "^7.12.16", + "@babel/generator": "^7.12.15", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.13", + "@babel/plugin-proposal-optional-chaining": "^7.12.16", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.12.15", + "@babel/preset-env": "^7.12.16", + "@babel/preset-react": "^7.12.13", + "@babel/preset-typescript": "^7.12.16", + "@babel/runtime": "^7.12.5", + "@babel/runtime-corejs3": "^7.12.13", + "@babel/traverse": "^7.12.13", + "@docusaurus/cssnano-preset": "2.0.0-alpha.73", + "@docusaurus/react-loadable": "5.5.0", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "@endiliey/static-site-generator-webpack-plugin": "^4.0.0", + "@svgr/webpack": "^5.5.0", + "autoprefixer": "^10.2.5", + "babel-loader": "^8.2.2", + "babel-plugin-dynamic-import-node": "2.3.0", + "boxen": "^5.0.0", + "cache-loader": "^4.1.0", + "chalk": "^4.1.0", + "chokidar": "^3.5.1", + "clean-css": "^5.1.1", + "commander": "^5.1.0", + "copy-webpack-plugin": "^6.4.1", + "core-js": "^3.9.1", + "css-loader": "^5.1.1", + "del": "^6.0.0", + "detect-port": "^1.3.0", + "eta": "^1.12.1", + "express": "^4.17.1", + "file-loader": "^6.2.0", + "fs-extra": "^9.1.0", + "github-slugger": "^1.3.0", + "globby": "^11.0.2", + "html-minifier-terser": "^5.1.1", + "html-tags": "^3.1.0", + "html-webpack-plugin": "^4.5.0", + "import-fresh": "^3.3.0", + "is-root": "^2.1.0", + "leven": "^3.1.0", + "lodash": "^4.17.20", + "mini-css-extract-plugin": "^0.8.0", + "module-alias": "^2.2.2", + "nprogress": "^0.2.0", + "null-loader": "^4.0.0", + "optimize-css-assets-webpack-plugin": "^5.0.4", + "pnp-webpack-plugin": "^1.6.4", + "postcss": "^8.2.7", + "postcss-loader": "^4.1.0", + "prompts": "^2.4.0", + "react-dev-utils": "^11.0.1", + "react-helmet": "^6.1.0", + "react-loadable": "^5.5.0", + "react-loadable-ssr-addon": "^0.3.0", + "react-router": "^5.2.0", + "react-router-config": "^5.1.1", + "react-router-dom": "^5.2.0", + "resolve-pathname": "^3.0.0", + "rtl-detect": "^1.0.2", + "semver": "^7.3.4", + "serve-handler": "^6.1.3", + "shelljs": "^0.8.4", + "std-env": "^2.2.1", + "terser-webpack-plugin": "^4.1.0", + "tslib": "^2.1.0", + "update-notifier": "^5.1.0", + "url-loader": "^4.1.1", + "wait-on": "^5.2.1", + "webpack": "^4.44.1", + "webpack-bundle-analyzer": "^4.4.0", + "webpack-dev-server": "^3.11.2", + "webpack-merge": "^4.2.2", + "webpackbar": "^5.0.0-3" + } + }, + "@docusaurus/cssnano-preset": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-2.0.0-alpha.73.tgz", + "integrity": "sha512-8DregwCCcKl5h3WAwK/NuTQ8BpXiKUnF8owVE4XAS7OnHXSobKfxz0wpF2Jzi0G8TdVfnZzPrXelnWWDL1mc3g==", + "requires": { + "cssnano-preset-advanced": "^4.0.7", + "postcss": "^7.0.2", + "postcss-sort-media-queries": "^1.7.26" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "@docusaurus/mdx-loader": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-2.0.0-alpha.73.tgz", + "integrity": "sha512-cteoaLe8rFLULAjRy8iOyKwo9LBupu6VPEvQbjhrM23EWap15LD5b66MmfRsCS8ubTdB1i5uYTVhwg1j41Fxjw==", + "requires": { + "@babel/parser": "^7.12.16", + "@babel/traverse": "^7.12.13", + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@mdx-js/mdx": "^1.6.21", + "@mdx-js/react": "^1.6.21", + "escape-html": "^1.0.3", + "file-loader": "^6.2.0", + "fs-extra": "^9.1.0", + "github-slugger": "^1.3.0", + "loader-utils": "^2.0.0", + "mdast-util-to-string": "^2.0.0", + "remark-emoji": "^2.1.0", + "stringify-object": "^3.3.0", + "unist-util-visit": "^2.0.2", + "url-loader": "^4.1.1", + "webpack": "^4.44.1" + } + }, + "@docusaurus/plugin-content-blog": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.0.0-alpha.73.tgz", + "integrity": "sha512-1G5lV+hIhZJPS+Z1/QWEVBB26MtTpgA3V9nMXrivet88LBi97X/O4auat4gzCd1ZAAAIssBqvjJZux3iYYuTZg==", + "requires": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/mdx-loader": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "chalk": "^4.1.0", + "feed": "^4.2.2", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "reading-time": "^1.3.0", + "remark-admonitions": "^1.2.1", + "tslib": "^2.1.0", + "webpack": "^4.44.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "@docusaurus/plugin-content-docs": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.0.0-alpha.73.tgz", + "integrity": "sha512-exMBKvTgJ//AazsXNYx/rSlIOt/8nMebOYNd0YMOrY1HNH3SFiTMln2nf6DhZlqDnC+e3DHxBV1mJJnZCef8xQ==", + "requires": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/mdx-loader": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "chalk": "^4.1.0", + "combine-promises": "^1.1.0", + "execa": "^5.0.0", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", + "import-fresh": "^3.2.2", + "js-yaml": "^4.0.0", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "remark-admonitions": "^1.2.1", + "shelljs": "^0.8.4", + "tslib": "^2.1.0", + "utility-types": "^3.10.0", + "webpack": "^4.44.1" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "requires": { + "path-key": "^3.0.0" + } + } + } + }, + "@docusaurus/plugin-content-pages": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.0.0-alpha.73.tgz", + "integrity": "sha512-/q9B+N3ICWlnI5mm58lMXhzWit7IP3ntY1snfy8qD98wEfWKLZwefdxnB1HI+qJXBQq5uQTWIe9lULaN/gbDzw==", + "requires": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/mdx-loader": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "globby": "^11.0.2", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "minimatch": "^3.0.4", + "remark-admonitions": "^1.2.1", + "slash": "^3.0.0", + "tslib": "^2.1.0", + "webpack": "^4.44.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "@docusaurus/plugin-debug": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-2.0.0-alpha.73.tgz", + "integrity": "sha512-EdovLNi8oxLFZDi/7lfLwfmgbaWFR/wOZqOYuyrHJto/TlqCCIOziX4dHYqUPHItbnwV1PGGR49DUrqyNYuLBQ==", + "requires": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "react-json-view": "^1.21.1", + "tslib": "^2.1.0" + } + }, + "@docusaurus/plugin-google-analytics": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.0.0-alpha.73.tgz", + "integrity": "sha512-t3Noo80wT412IMI4vnapWVpfm5PBhYPQpXQxVIZap61K2CT1lAkelyi43vREWt80HwCjXh5HvoR2TxCdGwi6nA==", + "requires": { + "@docusaurus/core": "2.0.0-alpha.73" + } + }, + "@docusaurus/plugin-google-gtag": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.0.0-alpha.73.tgz", + "integrity": "sha512-DqrmV4eW81DzlAJrqMiki+m4tTUlpPkUL7sNemVjzqVl4616tng7wa93FcNw3sZbVm1Kp69Hep3uN2OgRmEqRQ==", + "requires": { + "@docusaurus/core": "2.0.0-alpha.73" + } + }, + "@docusaurus/plugin-sitemap": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.0.0-alpha.73.tgz", + "integrity": "sha512-APBI/l8T5lsfEYvRZ0ipzZlUlKX/4x47w3WfIvlqS78vk7WHAXa0tEp3S8FK36TqeTjmdmCP0F4DJCY7UJZCSw==", + "requires": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "fs-extra": "^9.1.0", + "sitemap": "^6.3.6", + "tslib": "^2.1.0" + } + }, + "@docusaurus/preset-classic": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-2.0.0-alpha.73.tgz", + "integrity": "sha512-eXgwPVMXA9K9FmGrXwOeec9Uqr0KXMdHvx3C5Ocm4E7b/mylMGwykOgR9iaSLYdVY12EKrO7T9Lm3Z37Gll7Zw==", + "requires": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/plugin-content-blog": "2.0.0-alpha.73", + "@docusaurus/plugin-content-docs": "2.0.0-alpha.73", + "@docusaurus/plugin-content-pages": "2.0.0-alpha.73", + "@docusaurus/plugin-debug": "2.0.0-alpha.73", + "@docusaurus/plugin-google-analytics": "2.0.0-alpha.73", + "@docusaurus/plugin-google-gtag": "2.0.0-alpha.73", + "@docusaurus/plugin-sitemap": "2.0.0-alpha.73", + "@docusaurus/theme-classic": "2.0.0-alpha.73", + "@docusaurus/theme-search-algolia": "2.0.0-alpha.73" + } + }, + "@docusaurus/react-loadable": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-5.5.0.tgz", + "integrity": "sha512-Ld/kwUE6yATIOTLq3JCsWiTa/drisajwKqBQ2Rw6IcT+sFsKfYek8F2jSH8f68AT73xX97UehduZeCSlnuCBIg==", + "requires": { + "prop-types": "^15.6.2" + } + }, + "@docusaurus/theme-classic": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-2.0.0-alpha.73.tgz", + "integrity": "sha512-SVjq3xPIFQ/Uzs6WJn+8Gm1b47jLV7YBbcUXpIGd3NBKj16yZml9t7YNpos6Vt7Y5mCVhIP4IqWYJshArw6Aog==", + "requires": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/plugin-content-blog": "2.0.0-alpha.73", + "@docusaurus/plugin-content-docs": "2.0.0-alpha.73", + "@docusaurus/plugin-content-pages": "2.0.0-alpha.73", + "@docusaurus/theme-common": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "@mdx-js/mdx": "^1.6.21", + "@mdx-js/react": "^1.6.21", + "chalk": "^4.1.0", + "clsx": "^1.1.1", + "copy-text-to-clipboard": "^3.0.0", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", + "infima": "0.2.0-alpha.22", + "lodash": "^4.17.20", + "parse-numeric-range": "^1.2.0", + "postcss": "^7.0.2", + "prism-react-renderer": "^1.1.1", + "prismjs": "^1.23.0", + "prop-types": "^15.7.2", + "react-router-dom": "^5.2.0", + "rtlcss": "^2.6.2" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "@docusaurus/theme-common": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-2.0.0-alpha.73.tgz", + "integrity": "sha512-ePteJFQkQRkK+J1FKDhmczq+yiEmORTW9YJgYceQVq+9L6unr0XxeOBBNC27BxSabUI+A9YXjQbtdmOHFM8LKA==", + "requires": { + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/plugin-content-blog": "2.0.0-alpha.73", + "@docusaurus/plugin-content-docs": "2.0.0-alpha.73", + "@docusaurus/plugin-content-pages": "2.0.0-alpha.73", + "@docusaurus/types": "2.0.0-alpha.73", + "tslib": "^2.1.0" + } + }, + "@docusaurus/theme-search-algolia": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.0.0-alpha.73.tgz", + "integrity": "sha512-SMfeGYZb85GIcuUjefMN+RunLDK+x6ETnlGuY9LU2S6bvoaZ4YTcqBPOt0iyZ1LH+XZmFuz78lFDW1gklaNmfg==", + "requires": { + "@docsearch/react": "^3.0.0-alpha.33", + "@docusaurus/core": "2.0.0-alpha.73", + "@docusaurus/theme-common": "2.0.0-alpha.73", + "@docusaurus/utils": "2.0.0-alpha.73", + "@docusaurus/utils-validation": "2.0.0-alpha.73", + "algoliasearch": "^4.8.4", + "algoliasearch-helper": "^3.3.4", + "clsx": "^1.1.1", + "eta": "^1.12.1", + "lodash": "^4.17.20" + } + }, + "@docusaurus/types": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-2.0.0-alpha.73.tgz", + "integrity": "sha512-+q7q178LS2mMTGD/U5KgloLGKtG8yzpqj+NOp2QprjFVqTfkwTFcMhN33PTZTUcDunMDuUt+LOo9hi9Vz9+r5Q==", + "requires": { + "@types/webpack": "^4.41.0", + "commander": "^5.1.0", + "joi": "^17.4.0", + "querystring": "0.2.0", + "webpack-merge": "^4.2.2" + } + }, + "@docusaurus/utils": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-2.0.0-alpha.73.tgz", + "integrity": "sha512-kUHnE1b/3yNWNAn0V8owLgCrxqyxfolkCbkPFfnRT+4m+agyn3riEcr+ZVObs7K9nxCla8oklX5RKSJGzyqWww==", + "requires": { + "@docusaurus/types": "2.0.0-alpha.73", + "@types/github-slugger": "^1.3.0", + "chalk": "^4.1.0", + "escape-string-regexp": "^4.0.0", + "fs-extra": "^9.1.0", + "gray-matter": "^4.0.2", + "lodash": "^4.17.20", + "resolve-pathname": "^3.0.0", + "tslib": "^2.1.0" + }, + "dependencies": { + "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==" + } + } + }, + "@docusaurus/utils-validation": { + "version": "2.0.0-alpha.73", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-2.0.0-alpha.73.tgz", + "integrity": "sha512-A36kKC+tCy/MGXdaK7emH2CHyHKru/+Td9zCm6fvNdNbu+dDNvEddTZ3ecjB0zNdDZM25Er4+KIo9GV3vnJ8Rg==", + "requires": { + "@docusaurus/utils": "2.0.0-alpha.73", + "chalk": "^4.1.0", + "joi": "^17.4.0", + "tslib": "^2.1.0" + } + }, + "@endiliey/static-site-generator-webpack-plugin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@endiliey/static-site-generator-webpack-plugin/-/static-site-generator-webpack-plugin-4.0.0.tgz", + "integrity": "sha512-3MBqYCs30qk1OBRC697NqhGouYbs71D1B8hrk/AFJC6GwF2QaJOQZtA1JYAaGSe650sZ8r5ppRTtCRXepDWlng==", + "requires": { + "bluebird": "^3.7.1", + "cheerio": "^0.22.0", + "eval": "^0.1.4", + "url": "^0.11.0", + "webpack-sources": "^1.4.3" + } + }, + "@gar/promisify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz", + "integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==" + }, + "@hapi/hoek": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.1.tgz", + "integrity": "sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw==" + }, + "@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@mdx-js/mdx": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-1.6.22.tgz", + "integrity": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==", + "requires": { + "@babel/core": "7.12.9", + "@babel/plugin-syntax-jsx": "7.12.1", + "@babel/plugin-syntax-object-rest-spread": "7.8.3", + "@mdx-js/util": "1.6.22", + "babel-plugin-apply-mdx-type-prop": "1.6.22", + "babel-plugin-extract-import-names": "1.6.22", + "camelcase-css": "2.0.1", + "detab": "2.0.4", + "hast-util-raw": "6.0.1", + "lodash.uniq": "4.5.0", + "mdast-util-to-hast": "10.0.1", + "remark-footnotes": "2.0.0", + "remark-mdx": "1.6.22", + "remark-parse": "8.0.3", + "remark-squeeze-paragraphs": "4.0.0", + "style-to-object": "0.3.0", + "unified": "9.2.0", + "unist-builder": "2.0.3", + "unist-util-visit": "2.0.3" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz", + "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.5", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.5", + "@babel/parser": "^7.12.7", + "@babel/template": "^7.12.7", + "@babel/traverse": "^7.12.9", + "@babel/types": "^7.12.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz", + "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "@mdx-js/react": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-1.6.22.tgz", + "integrity": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==", + "requires": {} + }, + "@mdx-js/util": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/@mdx-js/util/-/util-1.6.22.tgz", + "integrity": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==" + }, + "@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==", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@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==" + }, + "@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==", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@npmcli/fs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.0.0.tgz", + "integrity": "sha512-8ltnOpRR/oJbOp8vaGUnipOi3bqkcW+sLHFlyXIr08OGHmVJLB1Hn7QtGXbYcpVtH1gAYZTlmDXtE4YV0+AMMQ==", + "requires": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "@polka/url": { + "version": "1.0.0-next.21", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.21.tgz", + "integrity": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==" + }, + "@sideway/address": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.2.tgz", + "integrity": "sha512-idTz8ibqWFrPU8kMirL0CoPH/A29XOzzAzpyN3zQ4kAWnzmNfFmRaoMNN6VI8ske5M73HZyhIaW4OuSFIdM4oA==", + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@sideway/formula": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz", + "integrity": "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==" + }, + "@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" + }, + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + }, + "@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" + }, + "@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" + }, + "@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" + }, + "@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" + }, + "@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" + }, + "@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" + }, + "@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" + }, + "@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" + }, + "@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "requires": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + } + }, + "@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "requires": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + } + }, + "@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "requires": { + "@babel/types": "^7.12.6" + } + }, + "@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "requires": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + } + }, + "@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "requires": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + } + }, + "@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "requires": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + } + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "@types/github-slugger": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@types/github-slugger/-/github-slugger-1.3.0.tgz", + "integrity": "sha512-J/rMZa7RqiH/rT29TEVZO4nBoDP9XJOjnbbIofg7GQKs4JIduEO3WLpte+6WeUz/TcrXKlY+bM7FYrp8yFB+3g==" + }, + "@types/glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/hast": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", + "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", + "requires": { + "@types/unist": "*" + } + }, + "@types/html-minifier-terser": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", + "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==" + }, + "@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==" + }, + "@types/mdast": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", + "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", + "requires": { + "@types/unist": "*" + } + }, + "@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" + }, + "@types/node": { + "version": "16.11.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.0.tgz", + "integrity": "sha512-8MLkBIYQMuhRBQzGN9875bYsOhPnf/0rgXGo66S2FemHkhbn9qtsz9ywV1iCG+vbjigE4WUNVvw37Dx+L0qsPg==" + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "@types/parse5": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz", + "integrity": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" + }, + "@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + }, + "@types/sax": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.3.tgz", + "integrity": "sha512-+QSw6Tqvs/KQpZX8DvIl3hZSjNFLW/OqE5nlyHXtTwODaJvioN2rOWpBNEWZp2HZUFhOh+VohmJku/WxEXU2XA==", + "requires": { + "@types/node": "*" + } + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + }, + "@types/tapable": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz", + "integrity": "sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==" + }, + "@types/uglify-js": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.1.tgz", + "integrity": "sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==", + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "@types/unist": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" + }, + "@types/webpack": { + "version": "4.41.31", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.31.tgz", + "integrity": "sha512-/i0J7sepXFIp1ZT7FjUGi1eXMCg8HCCzLJEQkKsOtbJFontsJLolBcDC+3qxn5pPwiCt1G0ZdRmYRzNBtvpuGQ==", + "requires": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==", + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" + }, + "acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" + }, + "address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "requires": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "requires": {} + }, + "algoliasearch": { + "version": "4.10.5", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.10.5.tgz", + "integrity": "sha512-KmH2XkiN+8FxhND4nWFbQDkIoU6g2OjfeU9kIv4Lb+EiOOs3Gpp7jvd+JnatsCisAZsnWQdjd7zVlW7I/85QvQ==", + "requires": { + "@algolia/cache-browser-local-storage": "4.10.5", + "@algolia/cache-common": "4.10.5", + "@algolia/cache-in-memory": "4.10.5", + "@algolia/client-account": "4.10.5", + "@algolia/client-analytics": "4.10.5", + "@algolia/client-common": "4.10.5", + "@algolia/client-personalization": "4.10.5", + "@algolia/client-search": "4.10.5", + "@algolia/logger-common": "4.10.5", + "@algolia/logger-console": "4.10.5", + "@algolia/requester-browser-xhr": "4.10.5", + "@algolia/requester-common": "4.10.5", + "@algolia/requester-node-http": "4.10.5", + "@algolia/transporter": "4.10.5" + } + }, + "algoliasearch-helper": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.6.0.tgz", + "integrity": "sha512-F4Smiq+Vyv/JJytuKNFuzXndPSb4pjtiHZSkEztQCcB+SORu71A8grgt2NSJhbB5VhqHW19QDtlPKbdYdcNrLg==", + "requires": { + "events": "^1.1.1" + }, + "dependencies": { + "events": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", + "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=" + } + } + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + }, + "ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "requires": { + "string-width": "^4.1.0" + } + }, + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==" + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + } + } + }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "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==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "arg": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz", + "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + }, + "autoprefixer": { + "version": "10.3.7", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.7.tgz", + "integrity": "sha512-EmGpu0nnQVmMhX8ROoJ7Mx8mKYPlcUHuxkwrRYEYMz85lu7H09v8w6R1P0JPdn/hKU32GjpLBFEOuIlDWCRWvg==", + "requires": { + "browserslist": "^4.17.3", + "caniuse-lite": "^1.0.30001264", + "fraction.js": "^4.1.1", + "normalize-range": "^0.1.2", + "picocolors": "^0.2.1", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + } + } + }, + "axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "requires": { + "follow-redirects": "^1.14.0" + } + }, + "babel-loader": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz", + "integrity": "sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==", + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^1.4.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "babel-plugin-apply-mdx-type-prop": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz", + "integrity": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==", + "requires": { + "@babel/helper-plugin-utils": "7.10.4", + "@mdx-js/util": "1.6.22" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz", + "integrity": "sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==", + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-extract-import-names": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz", + "integrity": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==", + "requires": { + "@babel/helper-plugin-utils": "7.10.4" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + } + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz", + "integrity": "sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==", + "requires": { + "@babel/compat-data": "^7.13.11", + "@babel/helper-define-polyfill-provider": "^0.2.2", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.5.tgz", + "integrity": "sha512-ninF5MQNwAX9Z7c9ED+H2pGt1mXdP4TqzlHKyPIYmJIYz0N+++uwdM7RnJukklhzJ54Q84vA4ZJkgs7lu5vqcw==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2", + "core-js-compat": "^3.16.2" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz", + "integrity": "sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.2.2" + } + }, + "bail": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", + "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "base16": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz", + "integrity": "sha1-4pf2DX7BAUp6lxo568ipjAtoHnA=" + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", + "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + } + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.17.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz", + "integrity": "sha512-Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ==", + "requires": { + "caniuse-lite": "^1.0.30001265", + "electron-to-chromium": "^1.3.867", + "escalade": "^3.1.1", + "node-releases": "^2.0.0", + "picocolors": "^1.0.0" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + }, + "buffer-json": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/buffer-json/-/buffer-json-2.0.0.tgz", + "integrity": "sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw==" + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "requires": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "cache-loader": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cache-loader/-/cache-loader-4.1.0.tgz", + "integrity": "sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw==", + "requires": { + "buffer-json": "^2.0.0", + "find-cache-dir": "^3.0.0", + "loader-utils": "^1.2.3", + "mkdirp": "^0.5.1", + "neo-async": "^2.6.1", + "schema-utils": "^2.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + }, + "normalize-url": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz", + "integrity": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==" + } + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + } + } + }, + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001267", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001267.tgz", + "integrity": "sha512-r1mjTzAuJ9W8cPBGbbus8E0SKcUP7gn03R14Wk8FlAlqhH9hroy9nLqmpuXlfKEw/oILW+FGz47ipXV2O7x8lg==" + }, + "ccount": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz", + "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "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==", + "requires": { + "color-name": "~1.1.4" + } + }, + "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==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "character-entities": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz", + "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==" + }, + "character-entities-legacy": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz", + "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==" + }, + "character-reference-invalid": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz", + "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==" + }, + "cheerio": { + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", + "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=", + "requires": { + "css-select": "~1.2.0", + "dom-serializer": "~0.1.0", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash.assignin": "^4.0.9", + "lodash.bind": "^4.1.4", + "lodash.defaults": "^4.0.1", + "lodash.filter": "^4.4.0", + "lodash.flatten": "^4.2.0", + "lodash.foreach": "^4.3.0", + "lodash.map": "^4.4.0", + "lodash.merge": "^4.4.0", + "lodash.pick": "^4.2.1", + "lodash.reduce": "^4.4.0", + "lodash.reject": "^4.4.0", + "lodash.some": "^4.4.0" + }, + "dependencies": { + "css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "requires": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + } + }, + "css-what": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" + }, + "dom-serializer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", + "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "requires": { + "domelementtype": "^1.3.0", + "entities": "^1.1.1" + } + }, + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + } + } + }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + }, + "ci-info": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz", + "integrity": "sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==" + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "clean-css": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.2.1.tgz", + "integrity": "sha512-ooQCa1/70oRfVdUUGjKpbHuxgMgm8BsDT5EBqBGvPxMoRoGXf4PNx5mMnkjzJ9Ptx4vvmDdha0QVh86QtYIk1g==", + "requires": { + "source-map": "~0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + }, + "cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + } + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "clsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==" + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + } + } + }, + "collapse-white-space": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz", + "integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==" + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "requires": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "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==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "color-string": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz", + "integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "combine-promises": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/combine-promises/-/combine-promises-1.1.0.tgz", + "integrity": "sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==" + }, + "comma-separated-tokens": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", + "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==" + }, + "commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "requires": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + } + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + }, + "consola": { + "version": "2.15.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", + "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + }, + "copy-text-to-clipboard": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.0.1.tgz", + "integrity": "sha512-rvVsHrpFcL4F2P8ihsoLdFHmd404+CMg71S756oRSeQgqk51U3kicGdnvfkrxva0xXH92SjGS62B0XIJsbh+9Q==" + }, + "copy-webpack-plugin": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-6.4.1.tgz", + "integrity": "sha512-MXyPCjdPVx5iiWyl40Va3JGh27bKzOTNY3NjUTrosD2q7dR/cLD0013uqJ3BpFbUjyONINjb6qI7nDIJujrMbA==", + "requires": { + "cacache": "^15.0.5", + "fast-glob": "^3.2.4", + "find-cache-dir": "^3.3.1", + "glob-parent": "^5.1.1", + "globby": "^11.0.1", + "loader-utils": "^2.0.0", + "normalize-path": "^3.0.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "core-js": { + "version": "3.18.3", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.18.3.tgz", + "integrity": "sha512-tReEhtMReZaPFVw7dajMx0vlsz3oOb8ajgPoHVYGxr8ErnZ6PcYEvvmjGmXlfpnxpkYSdOQttjB+MvVbCGfvLw==" + }, + "core-js-compat": { + "version": "3.18.3", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.18.3.tgz", + "integrity": "sha512-4zP6/y0a2RTHN5bRGT7PTq9lVt3WzvffTNjqnTKsXhkAYNDTkdCLOIfAdOLcQ/7TDdyRj3c+NeHe1NmF1eDScw==", + "requires": { + "browserslist": "^4.17.3", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + } + } + }, + "core-js-pure": { + "version": "3.18.3", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.18.3.tgz", + "integrity": "sha512-qfskyO/KjtbYn09bn1IPkuhHl5PlJ6IzJ9s9sraJ1EqcuGyLGKzhSM1cY0zgyL9hx42eulQLZ6WaeK5ycJCkqw==" + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "cross-fetch": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.4.tgz", + "integrity": "sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==", + "requires": { + "node-fetch": "2.6.1" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" + }, + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "requires": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "cssnano": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", + "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.8", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cssnano-preset-advanced": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-4.0.8.tgz", + "integrity": "sha512-DlZ5+XNKwB3ZnrtJ7jdj8WxT5Zgt1WIr4gdP9v1Sdn3SObqcLwbBobQaM7BqLIVHS74TE5iWn2TSYmOVSsmozQ==", + "requires": { + "autoprefixer": "^9.4.7", + "cssnano-preset-default": "^4.0.8", + "postcss-discard-unused": "^4.0.1", + "postcss-merge-idents": "^4.0.1", + "postcss-reduce-idents": "^4.0.2", + "postcss-zindex": "^4.0.1" + }, + "dependencies": { + "autoprefixer": { + "version": "9.8.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", + "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "picocolors": "^0.2.1", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + } + }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=" + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=" + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + }, + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + } + }, + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "del": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", + "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", + "requires": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "detab": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.4.tgz", + "integrity": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==", + "requires": { + "repeat-string": "^1.5.4" + } + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "detect-port": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz", + "integrity": "sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==", + "requires": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" + } + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "requires": { + "is-obj": "^2.0.0" + } + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "electron-to-chromium": { + "version": "1.3.870", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.870.tgz", + "integrity": "sha512-PiJMshfq6PL+i1V+nKLwhHbCKeD8eAz8rvO9Cwk/7cChOHJBtufmjajLyYLsSRHguRFiOCVx3XzJLeZsIAYfSA==" + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "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==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "emoticon": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/emoticon/-/emoticon-3.2.0.tgz", + "integrity": "sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "requires": { + "prr": "~1.0.1" + } + }, + "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==", + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + } + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-goat": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "eta": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/eta/-/eta-1.12.3.tgz", + "integrity": "sha512-qHixwbDLtekO/d51Yr4glcaUJCIjGVJyTzuqV4GPlgZo1YpgOKG+avQynErZIYrfM6JIJdtiG2Kox8tbb+DoGg==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "eval": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.6.tgz", + "integrity": "sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ==", + "requires": { + "require-like": ">= 0.1.1" + } + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + }, + "eventsource": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "requires": { + "original": "^1.0.0" + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "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==" + }, + "fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "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==" + }, + "fast-url-parser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", + "integrity": "sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=", + "requires": { + "punycode": "^1.3.2" + } + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", + "requires": { + "fbjs": "^3.0.0" + } + }, + "fbjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz", + "integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==", + "requires": { + "cross-fetch": "^3.0.4", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" + } + }, + "fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + }, + "feed": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz", + "integrity": "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==", + "requires": { + "xml-js": "^1.6.11" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "filesize": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "flux": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.2.tgz", + "integrity": "sha512-u/ucO5ezm3nBvdaSGkWpDlzCePoV+a9x3KHmy13TV/5MzOaCZDN8Mfd94jmf0nOi8ZZay+nOKbBUkOe2VNaupQ==", + "requires": { + "fbemitter": "^3.0.0", + "fbjs": "^3.0.0" + } + }, + "follow-redirects": { + "version": "1.14.4", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.4.tgz", + "integrity": "sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + }, + "fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "requires": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fraction.js": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz", + "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==" + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "requires": { + "minipass": "^3.0.0" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + }, + "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==" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^3.0.0" + } + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + }, + "github-slugger": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.4.0.tgz", + "integrity": "sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==" + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-dirs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.0.tgz", + "integrity": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==", + "requires": { + "ini": "2.0.0" + }, + "dependencies": { + "ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + } + } + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + }, + "globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + }, + "gray-matter": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", + "requires": { + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" + } + }, + "gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "has-yarn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", + "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==" + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "hast-to-hyperscript": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz", + "integrity": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==", + "requires": { + "@types/unist": "^2.0.3", + "comma-separated-tokens": "^1.0.0", + "property-information": "^5.3.0", + "space-separated-tokens": "^1.0.0", + "style-to-object": "^0.3.0", + "unist-util-is": "^4.0.0", + "web-namespaces": "^1.0.0" + } + }, + "hast-util-from-parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz", + "integrity": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==", + "requires": { + "@types/parse5": "^5.0.0", + "hastscript": "^6.0.0", + "property-information": "^5.0.0", + "vfile": "^4.0.0", + "vfile-location": "^3.2.0", + "web-namespaces": "^1.0.0" + } + }, + "hast-util-parse-selector": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz", + "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" + }, + "hast-util-raw": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-6.0.1.tgz", + "integrity": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==", + "requires": { + "@types/hast": "^2.0.0", + "hast-util-from-parse5": "^6.0.0", + "hast-util-to-parse5": "^6.0.0", + "html-void-elements": "^1.0.0", + "parse5": "^6.0.0", + "unist-util-position": "^3.0.0", + "vfile": "^4.0.0", + "web-namespaces": "^1.0.0", + "xtend": "^4.0.0", + "zwitch": "^1.0.0" + } + }, + "hast-util-to-parse5": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz", + "integrity": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==", + "requires": { + "hast-to-hyperscript": "^9.0.0", + "property-information": "^5.0.0", + "web-namespaces": "^1.0.0", + "xtend": "^4.0.0", + "zwitch": "^1.0.0" + } + }, + "hastscript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz", + "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==", + "requires": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^1.0.0", + "hast-util-parse-selector": "^2.0.0", + "property-information": "^5.0.0", + "space-separated-tokens": "^1.0.0" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" + }, + "history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "requires": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + } + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" + }, + "html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "requires": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "dependencies": { + "clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "requires": { + "source-map": "~0.6.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "html-tags": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", + "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==" + }, + "html-void-elements": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz", + "integrity": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==" + }, + "html-webpack-plugin": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz", + "integrity": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==", + "requires": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + } + } + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + } + } + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "requires": {} + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + }, + "immer": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-lazy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", + "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "requires": { + "find-up": "^3.0.0" + } + } + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + }, + "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==" + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + }, + "infima": { + "version": "0.2.0-alpha.22", + "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.22.tgz", + "integrity": "sha512-wKOWp4C1lTFG/h54UWD3Uf6VEsj5qYehM3ZVio3GBzIQuY8B3cTiwG7ZRNoobg+LvdQA21p5BJTugpTLQJLIrA==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-alphabetical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz", + "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" + }, + "is-alphanumerical": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz", + "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==", + "requires": { + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0" + } + }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "requires": { + "ci-info": "^2.0.0" + }, + "dependencies": { + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + } + } + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-decimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", + "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==" + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "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==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-hexadecimal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz", + "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==" + }, + "is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "requires": { + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" + } + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + }, + "is-npm": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", + "integrity": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "requires": { + "is-path-inside": "^2.1.0" + }, + "dependencies": { + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "requires": { + "path-is-inside": "^1.0.2" + } + } + } + }, + "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==" + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "requires": { + "isobject": "^3.0.1" + } + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + }, + "is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + }, + "is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-weakref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz", + "integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==", + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-whitespace-character": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz", + "integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==" + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + }, + "is-word-character": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz", + "integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==" + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "requires": { + "is-docker": "^2.0.0" + } + }, + "is-yarn-global": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", + "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "joi": { + "version": "17.4.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.4.2.tgz", + "integrity": "sha512-Lm56PP+n0+Z2A2rfRvsfWVDXGEWjXxatPopkQ8qQ5mxCEhwHG+Ettgg5o98FFaxilOxozoa14cFhrE/hOzh/Nw==", + "requires": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.0", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, + "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==" + }, + "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==" + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "requires": { + "json-buffer": "3.0.0" + } + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + }, + "klona": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz", + "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==" + }, + "last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "requires": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "latest-version": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", + "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", + "requires": { + "package-json": "^6.3.0" + } + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash.assignin": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", + "integrity": "sha1-uo31+4QesKPoBEIysOJjqNxqKKI=" + }, + "lodash.bind": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", + "integrity": "sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU=" + }, + "lodash.curry": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz", + "integrity": "sha1-JI42By7ekGUB11lmIAqG2riyMXA=" + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + }, + "lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=" + }, + "lodash.filter": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", + "integrity": "sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4=" + }, + "lodash.flatten": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", + "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" + }, + "lodash.flow": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz", + "integrity": "sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o=" + }, + "lodash.foreach": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", + "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=" + }, + "lodash.map": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", + "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=" + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "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==" + }, + "lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" + }, + "lodash.reduce": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", + "integrity": "sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=" + }, + "lodash.reject": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", + "integrity": "sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU=" + }, + "lodash.some": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", + "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "loglevel": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + }, + "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==", + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "requires": { + "object-visit": "^1.0.0" + } + }, + "markdown-escapes": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz", + "integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "mdast-squeeze-paragraphs": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz", + "integrity": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==", + "requires": { + "unist-util-remove": "^2.0.0" + } + }, + "mdast-util-definitions": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", + "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", + "requires": { + "unist-util-visit": "^2.0.0" + } + }, + "mdast-util-to-hast": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz", + "integrity": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==", + "requires": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "mdast-util-definitions": "^4.0.0", + "mdurl": "^1.0.0", + "unist-builder": "^2.0.0", + "unist-util-generated": "^1.0.0", + "unist-util-position": "^3.0.0", + "unist-util-visit": "^2.0.0" + } + }, + "mdast-util-to-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz", + "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==" + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "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==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "microevent.ts": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.50.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz", + "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==" + }, + "mime-types": { + "version": "2.1.33", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz", + "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==", + "requires": { + "mime-db": "1.50.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + }, + "mini-create-react-context": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz", + "integrity": "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==", + "requires": { + "@babel/runtime": "^7.12.1", + "tiny-warning": "^1.0.3" + } + }, + "mini-css-extract-plugin": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.2.tgz", + "integrity": "sha512-a3Y4of27Wz+mqK3qrcd3VhYz6cU0iW5x3Sgvqzbj+XmlrSizmvu8QQMl5oMYJjgHOC4iyt+w7l4umP+dQeW3bw==", + "requires": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "requires": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "minipass": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.5.tgz", + "integrity": "sha512-+8NzxD82XQoNKNrl1d/FSi+X8wAEWR+sbYAfIvub4Nz0d22plFG72CEVVaufV8PNf4qSslFTD8VMOxNVhHCjTw==", + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "requires": { + "minimist": "^1.2.5" + } + }, + "module-alias": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/module-alias/-/module-alias-2.2.2.tgz", + "integrity": "sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==" + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + }, + "nanoid": { + "version": "3.1.30", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz", + "integrity": "sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-emoji": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", + "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", + "requires": { + "lodash": "^4.17.21" + } + }, + "node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + } + } + }, + "node-releases": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.0.tgz", + "integrity": "sha512-aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + }, + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + } + } + }, + "nprogress": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz", + "integrity": "sha1-y480xTIT2JVyP8urkH6UIq28r7E=" + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "requires": { + "boolbase": "~1.0.0" + } + }, + "null-loader": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/null-loader/-/null-loader-4.0.1.tgz", + "integrity": "sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg==", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz", + "integrity": "sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "requires": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + } + }, + "opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + } + } + }, + "optimize-css-assets-webpack-plugin": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.8.tgz", + "integrity": "sha512-mgFS1JdOtEGzD8l+EuISqL57cKO+We9GcoiQEmdCWRqqck+FGNmYJtx9qfAPzEz+lRrlThWMuGDaRkI/yWNx/Q==", + "requires": { + "cssnano": "^4.1.10", + "last-call-webpack-plugin": "^3.0.0" + } + }, + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "requires": { + "url-parse": "^1.4.3" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "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==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "requires": { + "retry": "^0.12.0" + } + }, + "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==" + }, + "package-json": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", + "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", + "requires": { + "got": "^9.6.0", + "registry-auth-token": "^4.0.0", + "registry-url": "^5.0.0", + "semver": "^6.2.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "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==", + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz", + "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==", + "requires": { + "character-entities": "^1.0.0", + "character-entities-legacy": "^1.0.0", + "character-reference-invalid": "^1.0.0", + "is-alphanumerical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-hexadecimal": "^1.0.0" + } + }, + "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==", + "requires": { + "@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" + } + }, + "parse-numeric-range": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz", + "integrity": "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==" + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + }, + "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==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "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==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "requires": { + "find-up": "^4.0.0" + } + }, + "pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, + "pnp-webpack-plugin": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz", + "integrity": "sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==", + "requires": { + "ts-pnp": "^1.1.6" + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + }, + "postcss": { + "version": "8.3.9", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.9.tgz", + "integrity": "sha512-f/ZFyAKh9Dnqytx5X62jgjhhzttjZS7hMsohcI7HEI5tjELX/HxCy3EFhsRxyzGvrzFF+82XPvCS8T9TFleVJw==", + "requires": { + "nanoid": "^3.1.28", + "picocolors": "^0.2.1", + "source-map-js": "^0.6.2" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + } + } + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-discard-unused": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-4.0.1.tgz", + "integrity": "sha512-/3vq4LU0bLH2Lj4NYN7BTf2caly0flUB7Xtrk9a5K3yLuXMkHMqMO/x3sDq8W2b1eQFSCyY0IVz2L+0HP8kUUA==", + "requires": { + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz", + "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==", + "requires": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.4" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "postcss-merge-idents": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-4.0.1.tgz", + "integrity": "sha512-43S/VNdF6II0NZ31YxcvNYq4gfURlPAAsJW/z84avBXQCaP4I4qRHUH18slW/SOlJbcxxCobflPNUApYDddS7A==", + "requires": { + "cssnano-util-same-parent": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "requires": {} + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-reduce-idents": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-4.0.2.tgz", + "integrity": "sha512-Tz70Ri10TclPoCtFfftjFVddx3fZGUkr0dEDbIEfbYhFUOFQZZ77TEqRrU0e6TvAvF+Wa5VVzYTpFpq0uwFFzw==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-selector-parser": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", + "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-sort-media-queries": { + "version": "1.31.21", + "resolved": "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-1.31.21.tgz", + "integrity": "sha512-h+HbXXfOVFeLvCJOzl/Z9SqQ25MNpG/73k71756ftisaaJy75h06/Dn6KOwC4OCMN10ewT2PXMzHV03JNKwBbg==", + "requires": { + "postcss": "^7.0.27", + "sort-css-media-queries": "1.5.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + }, + "postcss-zindex": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-4.0.1.tgz", + "integrity": "sha512-d/8BlQcUdEugZNRM9AdCA2V4fqREUtn/wcixLN3L6ITgc2P/FMcVVYz8QZkhItWT9NB5qr8wuN2dJCE4/+dlrA==", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "pretty-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", + "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==" + }, + "prism-react-renderer": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-1.2.1.tgz", + "integrity": "sha512-w23ch4f75V1Tnz8DajsYKvY5lF7H1+WvzvLUcF0paFxkTHSp42RS0H5CttdN2Q8RR3DRGZ9v5xD/h3n8C8kGmg==", + "requires": {} + }, + "prismjs": { + "version": "1.25.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.25.0.tgz", + "integrity": "sha512-WCjJHl1KEWbnkQom1+SzftbtXMKQoezOCYs5rECqMN+jP+apI7ftoflyqigqzopSO3hMhTEb0mFClA8lkolgEg==" + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "requires": { + "asap": "~2.0.3" + } + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + }, + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "property-information": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz", + "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==", + "requires": { + "xtend": "^4.0.0" + } + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "pupa": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", + "requires": { + "escape-goat": "^2.0.0" + } + }, + "pure-color": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz", + "integrity": "sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4=" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + } + }, + "react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "react-base16-styling": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/react-base16-styling/-/react-base16-styling-0.6.0.tgz", + "integrity": "sha1-7yFW1mz0E5aVyKFniGy2nqZgeSw=", + "requires": { + "base16": "^1.0.0", + "lodash.curry": "^4.0.1", + "lodash.flow": "^3.3.0", + "pure-color": "^1.2.0" + } + }, + "react-dev-utils": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz", + "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==", + "requires": { + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "8.0.1", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "browserslist": { + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "requires": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + } + } + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "requires": { + "address": "^1.0.1", + "debug": "^2.6.0" + } + }, + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + }, + "globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node-releases": { + "version": "1.1.77", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz", + "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==" + }, + "prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "requires": { + "ansi-regex": "^5.0.0" + } + } + } + }, + "react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + } + }, + "react-error-overlay": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz", + "integrity": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" + }, + "react-fast-compare": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz", + "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" + }, + "react-helmet": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/react-helmet/-/react-helmet-6.1.0.tgz", + "integrity": "sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw==", + "requires": { + "object-assign": "^4.1.1", + "prop-types": "^15.7.2", + "react-fast-compare": "^3.1.1", + "react-side-effect": "^2.1.0" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "react-json-view": { + "version": "1.21.3", + "resolved": "https://registry.npmjs.org/react-json-view/-/react-json-view-1.21.3.tgz", + "integrity": "sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==", + "requires": { + "flux": "^4.0.1", + "react-base16-styling": "^0.6.0", + "react-lifecycles-compat": "^3.0.4", + "react-textarea-autosize": "^8.3.2" + } + }, + "react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "react-loadable": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/react-loadable/-/react-loadable-5.5.0.tgz", + "integrity": "sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg==", + "requires": { + "prop-types": "^15.5.0" + } + }, + "react-loadable-ssr-addon": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/react-loadable-ssr-addon/-/react-loadable-ssr-addon-0.3.0.tgz", + "integrity": "sha512-E+lnmDakV0k6ut6R2J77vurwCOwTKEwKlHs9S62G8ez+ujecLPcqjt3YAU8M58kIGjp2QjFlZ7F9QWkq/mr6Iw==", + "requires": { + "@babel/runtime": "^7.10.3" + } + }, + "react-router": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.1.tgz", + "integrity": "sha512-lIboRiOtDLFdg1VTemMwud9vRVuOCZmUIT/7lUoZiSpPODiiH1UQlfXy+vPLC/7IWdFYnhRwAyNqA/+I7wnvKQ==", + "requires": { + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "mini-create-react-context": "^0.4.0", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "requires": { + "isarray": "0.0.1" + } + } + } + }, + "react-router-config": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz", + "integrity": "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==", + "requires": { + "@babel/runtime": "^7.1.2" + } + }, + "react-router-dom": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.0.tgz", + "integrity": "sha512-ObVBLjUZsphUUMVycibxgMdh5jJ1e3o+KpAZBVeHcNQZ4W+uUGGWsokurzlF4YOldQYRQL4y6yFRWM4m3svmuQ==", + "requires": { + "@babel/runtime": "^7.12.13", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.2.1", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + } + }, + "react-side-effect": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/react-side-effect/-/react-side-effect-2.1.1.tgz", + "integrity": "sha512-2FoTQzRNTncBVtnzxFOk2mCpcfxQpenBMbk5kSVBg5UcPqV9fRbgY2zhb7GTWWOlpFmAxhClBDlIq8Rsubz1yQ==", + "requires": {} + }, + "react-textarea-autosize": { + "version": "8.3.3", + "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.3.3.tgz", + "integrity": "sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==", + "requires": { + "@babel/runtime": "^7.10.2", + "use-composed-ref": "^1.0.0", + "use-latest": "^1.0.0" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "requires": { + "picomatch": "^2.2.1" + } + }, + "reading-time": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz", + "integrity": "sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==" + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "requires": { + "resolve": "^1.1.6" + } + }, + "recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "requires": { + "minimatch": "3.0.4" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "regenerate-unicode-properties": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz", + "integrity": "sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==", + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpu-core": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz", + "integrity": "sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==", + "requires": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^9.0.0", + "regjsgen": "^0.5.2", + "regjsparser": "^0.7.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + } + }, + "registry-auth-token": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", + "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", + "requires": { + "rc": "^1.2.8" + } + }, + "registry-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", + "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", + "requires": { + "rc": "^1.2.8" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + }, + "regjsparser": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz", + "integrity": "sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + } + } + }, + "rehype-parse": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/rehype-parse/-/rehype-parse-6.0.2.tgz", + "integrity": "sha512-0S3CpvpTAgGmnz8kiCyFLGuW5yA4OQhyNTm/nwPopZ7+PI11WnGl1TTWTGv/2hPEe/g2jRLlhVVSsoDH8waRug==", + "requires": { + "hast-util-from-parse5": "^5.0.0", + "parse5": "^5.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "hast-util-from-parse5": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-5.0.3.tgz", + "integrity": "sha512-gOc8UB99F6eWVWFtM9jUikjN7QkWxB3nY0df5Z0Zq1/Nkwl5V4hAAsl0tmwlgWl/1shlTF8DnNYLO8X6wRV9pA==", + "requires": { + "ccount": "^1.0.3", + "hastscript": "^5.0.0", + "property-information": "^5.0.0", + "web-namespaces": "^1.1.2", + "xtend": "^4.0.1" + } + }, + "hastscript": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-5.1.2.tgz", + "integrity": "sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ==", + "requires": { + "comma-separated-tokens": "^1.0.0", + "hast-util-parse-selector": "^2.0.0", + "property-information": "^5.0.0", + "space-separated-tokens": "^1.0.0" + } + }, + "parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==" + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + }, + "remark-admonitions": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/remark-admonitions/-/remark-admonitions-1.2.1.tgz", + "integrity": "sha512-Ji6p68VDvD+H1oS95Fdx9Ar5WA2wcDA4kwrrhVU7fGctC6+d3uiMICu7w7/2Xld+lnU7/gi+432+rRbup5S8ow==", + "requires": { + "rehype-parse": "^6.0.2", + "unified": "^8.4.2", + "unist-util-visit": "^2.0.1" + }, + "dependencies": { + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" + }, + "unified": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/unified/-/unified-8.4.2.tgz", + "integrity": "sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==", + "requires": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + } + } + } + }, + "remark-emoji": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/remark-emoji/-/remark-emoji-2.2.0.tgz", + "integrity": "sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==", + "requires": { + "emoticon": "^3.2.0", + "node-emoji": "^1.10.0", + "unist-util-visit": "^2.0.3" + } + }, + "remark-footnotes": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-2.0.0.tgz", + "integrity": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==" + }, + "remark-mdx": { + "version": "1.6.22", + "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-1.6.22.tgz", + "integrity": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==", + "requires": { + "@babel/core": "7.12.9", + "@babel/helper-plugin-utils": "7.10.4", + "@babel/plugin-proposal-object-rest-spread": "7.12.1", + "@babel/plugin-syntax-jsx": "7.12.1", + "@mdx-js/util": "1.6.22", + "is-alphabetical": "1.0.4", + "remark-parse": "8.0.3", + "unified": "9.2.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz", + "integrity": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.5", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.5", + "@babel/parser": "^7.12.7", + "@babel/template": "^7.12.7", + "@babel/traverse": "^7.12.9", + "@babel/types": "^7.12.7", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", + "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz", + "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-transform-parameters": "^7.12.1" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz", + "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "remark-parse": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-8.0.3.tgz", + "integrity": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==", + "requires": { + "ccount": "^1.0.0", + "collapse-white-space": "^1.0.2", + "is-alphabetical": "^1.0.0", + "is-decimal": "^1.0.0", + "is-whitespace-character": "^1.0.0", + "is-word-character": "^1.0.0", + "markdown-escapes": "^1.0.0", + "parse-entities": "^2.0.0", + "repeat-string": "^1.5.4", + "state-toggle": "^1.0.0", + "trim": "0.0.1", + "trim-trailing-lines": "^1.0.0", + "unherit": "^1.0.4", + "unist-util-remove-position": "^2.0.0", + "vfile-location": "^3.0.0", + "xtend": "^4.0.1" + } + }, + "remark-squeeze-paragraphs": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz", + "integrity": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==", + "requires": { + "mdast-squeeze-paragraphs": "^4.0.0" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "renderkid": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "css-select": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz", + "integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" + } + }, + "css-what": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz", + "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==" + }, + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" + }, + "domhandler": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "nth-check": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", + "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", + "requires": { + "boolbase": "^1.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-like": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/require-like/-/require-like-0.1.2.tgz", + "integrity": "sha1-rW8wwTvs15cBDEaK+ndcDAprR/o=" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + } + } + }, + "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==" + }, + "resolve-pathname": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rtl-detect": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/rtl-detect/-/rtl-detect-1.0.4.tgz", + "integrity": "sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==" + }, + "rtlcss": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-2.6.2.tgz", + "integrity": "sha512-06LFAr+GAPo+BvaynsXRfoYTJvSaWRyOhURCQ7aeI1MKph9meM222F+Zkt3bDamyHHJuGi3VPtiRkpyswmQbGA==", + "requires": { + "@choojs/findup": "^0.2.1", + "chalk": "^2.4.2", + "mkdirp": "^0.5.1", + "postcss": "^6.0.23", + "strip-json-comments": "^2.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "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==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "requires": { + "aproba": "^1.1.1" + } + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", + "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "section-matter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", + "requires": { + "extend-shallow": "^2.0.1", + "kind-of": "^6.0.0" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", + "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-diff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", + "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", + "requires": { + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-handler": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.3.tgz", + "integrity": "sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==", + "requires": { + "bytes": "3.0.0", + "content-disposition": "0.5.2", + "fast-url-parser": "1.1.3", + "mime-types": "2.1.18", + "minimatch": "3.0.4", + "path-is-inside": "1.0.2", + "path-to-regexp": "2.2.1", + "range-parser": "1.2.0" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" + }, + "mime-db": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" + }, + "mime-types": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "requires": { + "mime-db": "~1.33.0" + } + }, + "path-to-regexp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz", + "integrity": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==" + }, + "range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" + } + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "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==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + }, + "shelljs": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz", + "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==", + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz", + "integrity": "sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==" + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "requires": { + "is-arrayish": "^0.3.1" + } + }, + "sirv": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.17.tgz", + "integrity": "sha512-qx9go5yraB7ekT7bCMqUHJ5jEaOC/GXBxUWv+jeWnb7WzHUFdcQPGWk7YmAwFBaQBrogpuSqd/azbC2lZRqqmw==", + "requires": { + "@polka/url": "^1.0.0-next.20", + "mime": "^2.3.1", + "totalist": "^1.0.0" + }, + "dependencies": { + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" + } + } + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "sitemap": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-6.4.0.tgz", + "integrity": "sha512-DoPKNc2/apQZTUnfiOONWctwq7s6dZVspxAZe2VPMNtoqNq7HgXRvlRnbIpKjf+8+piQdWncwcy+YhhTGY5USQ==", + "requires": { + "@types/node": "^14.14.28", + "@types/sax": "^1.2.1", + "arg": "^5.0.0", + "sax": "^1.2.4" + }, + "dependencies": { + "@types/node": { + "version": "14.17.27", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.17.27.tgz", + "integrity": "sha512-94+Ahf9IcaDuJTle/2b+wzvjmutxXAEXU6O81JHblYXUg2BDG+dnBy7VxIPHKAyEEDHzCMQydTJuWvrE+Aanzw==" + } + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "sockjs-client": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.2.tgz", + "integrity": "sha512-ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==", + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.5.3" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "sort-css-media-queries": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sort-css-media-queries/-/sort-css-media-queries-1.5.0.tgz", + "integrity": "sha512-QofNE7CEVH1AKdhS7L9IPbV9UtyQYNXyw++8lC+xG6iOLlpzsmncZRiKbihTAESvZ8wOhwnPoesHbMrehrQyyw==" + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, + "source-map-js": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz", + "integrity": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.20", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz", + "integrity": "sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + }, + "space-separated-tokens": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz", + "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==" + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "requires": { + "minipass": "^3.1.1" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "state-toggle": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.3.tgz", + "integrity": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "std-env": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-2.3.1.tgz", + "integrity": "sha512-eOsoKTWnr6C8aWrqJJ2KAReXoa7Vn5Ywyw6uCXgA/xDhxPoaIsBa5aNJmISY04dLwXPBnDHW4diGM7Sn5K4R/g==", + "requires": { + "ci-info": "^3.1.1" + } + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + } + }, + "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==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "dependencies": { + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + } + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=" + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + }, + "style-to-object": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", + "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", + "requires": { + "inline-style-parser": "0.1.1" + } + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "requires": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + } + }, + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + }, + "tar": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "terser-webpack-plugin": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", + "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "requires": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "terser": { + "version": "5.9.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.9.0.tgz", + "integrity": "sha512-h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ==", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.20" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "requires": { + "setimmediate": "^1.0.4" + } + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + }, + "tiny-invariant": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz", + "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + }, + "tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "totalist": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz", + "integrity": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==" + }, + "trim": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", + "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" + }, + "trim-trailing-lines": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz", + "integrity": "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==" + }, + "trough": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", + "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" + }, + "ts-essentials": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-2.0.12.tgz", + "integrity": "sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==" + }, + "ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" + }, + "tslib": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + }, + "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==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "ua-parser-js": { + "version": "0.7.28", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz", + "integrity": "sha512-6Gurc1n//gjp9eQNXjD9O3M/sMwVtN5S8Lv9bvOYBfKfDNiIIhqiyi01vMBO45u4zkDE420w/e0se7Vs+sIg+g==" + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "unherit": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.3.tgz", + "integrity": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==", + "requires": { + "inherits": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==" + }, + "unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==" + }, + "unified": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz", + "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==", + "requires": { + "bail": "^1.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^2.0.0", + "trough": "^1.0.0", + "vfile": "^4.0.0" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" + }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" + } + } + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "requires": { + "crypto-random-string": "^2.0.0" + } + }, + "unist-builder": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz", + "integrity": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==" + }, + "unist-util-generated": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz", + "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==" + }, + "unist-util-is": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", + "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==" + }, + "unist-util-position": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz", + "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==" + }, + "unist-util-remove": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-2.1.0.tgz", + "integrity": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==", + "requires": { + "unist-util-is": "^4.0.0" + } + }, + "unist-util-remove-position": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz", + "integrity": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==", + "requires": { + "unist-util-visit": "^2.0.0" + } + }, + "unist-util-stringify-position": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", + "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==", + "requires": { + "@types/unist": "^2.0.2" + } + }, + "unist-util-visit": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", + "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0", + "unist-util-visit-parents": "^3.0.0" + } + }, + "unist-util-visit-parents": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", + "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^4.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + }, + "update-notifier": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", + "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", + "requires": { + "boxen": "^5.0.0", + "chalk": "^4.1.0", + "configstore": "^5.0.1", + "has-yarn": "^2.1.0", + "import-lazy": "^2.1.0", + "is-ci": "^2.0.0", + "is-installed-globally": "^0.4.0", + "is-npm": "^5.0.0", + "is-yarn-global": "^0.3.0", + "latest-version": "^5.1.0", + "pupa": "^2.1.1", + "semver": "^7.3.4", + "semver-diff": "^3.1.1", + "xdg-basedir": "^4.0.0" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + } + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "requires": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "url-parse": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz", + "integrity": "sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "requires": { + "prepend-http": "^2.0.0" + }, + "dependencies": { + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" + } + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + }, + "use-composed-ref": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.1.0.tgz", + "integrity": "sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==", + "requires": { + "ts-essentials": "^2.0.3" + } + }, + "use-isomorphic-layout-effect": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.1.tgz", + "integrity": "sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==", + "requires": {} + }, + "use-latest": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.2.0.tgz", + "integrity": "sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==", + "requires": { + "use-isomorphic-layout-effect": "^1.0.0" + } + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + }, + "utility-types": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz", + "integrity": "sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "value-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==" + }, + "vfile": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", + "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "requires": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^2.0.0", + "vfile-message": "^2.0.0" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" + } + } + }, + "vfile-location": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz", + "integrity": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==" + }, + "vfile-message": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz", + "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^2.0.0" + } + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "wait-on": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-5.3.0.tgz", + "integrity": "sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==", + "requires": { + "axios": "^0.21.1", + "joi": "^17.3.0", + "lodash": "^4.17.21", + "minimist": "^1.2.5", + "rxjs": "^6.6.3" + } + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + } + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "optional": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "optional": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "optional": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "optional": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "optional": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "optional": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "optional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "optional": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "optional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "optional": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "optional": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "optional": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "optional": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "optional": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "optional": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "web-namespaces": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-1.1.4.tgz", + "integrity": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==" + }, + "webpack": { + "version": "4.46.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz", + "integrity": "sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "requires": { + "find-up": "^3.0.0" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + } + }, + "webpack-bundle-analyzer": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.5.0.tgz", + "integrity": "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==", + "requires": { + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "chalk": "^4.1.0", + "commander": "^7.2.0", + "gzip-size": "^6.0.0", + "lodash": "^4.17.20", + "opener": "^1.5.2", + "sirv": "^1.0.7", + "ws": "^7.3.1" + }, + "dependencies": { + "acorn": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz", + "integrity": "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==" + }, + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + }, + "gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "requires": { + "duplexer": "^0.1.2" + } + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" + } + } + }, + "webpack-dev-server": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz", + "integrity": "sha512-A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ==", + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "requires": { + "async-limiter": "~1.0.0" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + } + }, + "webpack-merge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", + "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==", + "requires": { + "lodash": "^4.17.15" + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, + "webpackbar": { + "version": "5.0.0-3", + "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.0-3.tgz", + "integrity": "sha512-viW6KCYjMb0NPoDrw2jAmLXU2dEOhRrtku28KmOfeE1vxbfwCYuTbTaMhnkrCZLFAFyY9Q49Z/jzYO80Dw5b8g==", + "requires": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.1.0", + "consola": "^2.15.0", + "figures": "^3.2.0", + "pretty-time": "^1.1.0", + "std-env": "^2.2.1", + "text-table": "^0.2.0", + "wrap-ansi": "^7.0.0" + } + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "requires": { + "string-width": "^4.0.0" + } + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "requires": { + "errno": "~0.1.7" + } + }, + "worker-rpc": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", + "requires": { + "microevent.ts": "~0.1.1" + } + }, + "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==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "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==", + "requires": { + "color-name": "~1.1.4" + } + }, + "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==" + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.5.tgz", + "integrity": "sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==", + "requires": {} + }, + "xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" + }, + "xml-js": { + "version": "1.6.11", + "resolved": "https://registry.npmjs.org/xml-js/-/xml-js-1.6.11.tgz", + "integrity": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==", + "requires": { + "sax": "^1.2.4" + } + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + } + }, + "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==" + }, + "zwitch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", + "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==" + } + } +} diff --git a/docs/versioned_docs/version-2.23.0/widgets/pagination.md b/docs/versioned_docs/version-2.23.0/widgets/pagination.md new file mode 100644 index 0000000000..182e4211f2 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/pagination.md @@ -0,0 +1,79 @@ +--- +id: pagination +title: Pagination +--- +# Pagination + +Pagination enables the user to select a specific page from a range of pages. It is used to separate the content into discrete pages. + +:::tip +You can club pagination widget with the List View widget. +::: + +
+ +ToolJet - Widget Reference - Pagination + +
+ +## Properties + +### Number of pages + +You can use this to predefined the total number of pages. It is calculated by dividing the length of the data array that will be passed, by the data limit which is the number of posts we will show on each page. + +### Default page index +It is used to set and display the default page index when the app initially loads. You can also put a conditional logic to set its value as per your use case. + +## Event + +### On Page Change + +This event is triggered whenever the user switches to another page index. You can explore various actions associated with this event as per app logic. + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Pagination + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| totalPages | This variable holds the value of the `Number of Pages` set from the pagination component properties. You can access the value dynamically using JS: `{{components.pagination1.totalPages}}`| +| currentPageIndex | This variable will hold the index of the currently selected option on the pagination component. You can access the value dynamically using JS: `{{components.pagination1.currentPageIndex}}`| + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/password-input.md b/docs/versioned_docs/version-2.23.0/widgets/password-input.md new file mode 100644 index 0000000000..8437102d43 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/password-input.md @@ -0,0 +1,72 @@ +--- +id: password-input +title: Password Input +--- +# Password Input + +The Password Input component allows users to enter passwords securely. In this component, passwords are concealed, displaying each character as an asterisk to ensure privacy. In this document, we'll go through all the configuration options for the **Password Input** component. + + +## How To Use Password Input Component + + + +## Properties + +| Property | Description | Expected Value | +|:------------------|:------------------|:----------------------------------------------------| +| Placeholder | Provides a hint for the expected value. It disappears once the user interacts with the component.| Enter some instructional text as the value (example: "Type name here") | +| Regex | Use this field to enter a Regular Expression that will validate the password constraints.| Regular Expression | +| Min length | Enter the number for a minimum length of password allowed.| Numeric value | +| Max length | Enter the number for the maximum length of password allowed.| Numeric value | +| Custom validation | If the condition is true, the validation passes, otherwise return a string that should be displayed as the error message. | A validation condition (example: `{{components.passwordInput1.value === 'something' ? true : 'value should be something'}}` )| + +## General +### Tooltip + +A **Tooltip** is commonly used to provide additional information about an element. This information becomes visible when the user hovers the mouse pointer over the respective component. + +In the input field under **Tooltip**, you can enter some text and the component will show the specified text as a tooltip when it is hovered over. + +
+ +ToolJet - Component Reference - Password input + +
+ +## Layout + +Show on desktop + +Use this toggle to show or hide the component in the desktop view. You can dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to `{{true}}` or `{{false}}`. + +Show on mobile + +Use this toggle to show or hide the component in the mobile view. You can dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to `{{true}}` or `{{false}}`. + +--- + +## Styles + +| Style| Description | Expected Value | +|:-------------------|:-------------------------------|:-------------------------------| +| Visibility | Controls the visibility of the component. If set to `{{false}}`, the component will not be visible after the app is deployed.| Use the toggle button or dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either `{{true}}` or `{{false}}`.| +| Disable | Makes the component non-functional when set to true. | Use the toggle button or dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either `{{true}}` or `{{false}}`.| +| Border radius | Adjusts the roundness of the component's corners. | Numeric value| +| Background color | Changes the background color of the component. | Hex color code/choose a color using the color picker | + +## General + +Box Shadow + +The **Box Shadow** property is used to add shadow effects around a component's frame. You can specify the horizontal and vertical offsets(through X and Y sliders), blur and spread radius, and color of the shadow. + +## Exposed Variables + +| Variables | Description | +| :----------- |:----------- | +| value | This variable holds the value entered by the user onto the password input component. You can access the value dynamically using JS: `{{components.passwordinput1.value}}`| + +## Component Specific Actions (CSA) + +There are currently no Component-Specific Actions (CSA) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/pdf.md b/docs/versioned_docs/version-2.23.0/widgets/pdf.md new file mode 100644 index 0000000000..8dbc206c17 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/pdf.md @@ -0,0 +1,69 @@ +--- +id: pdf +title: PDF +--- + +# PDF + +PDF widget can be used to embed the PDF file either by URL or as a Base64 encoded. + +:::info +Checkout **[this](/docs/how-to/loading-image-pdf-from-db)** guide to learn how to display images/PDFs using base64 string +::: + +## Properties + +### File URL + +The URL of the PDF file on the web. `data:application/pdf;base64,` format is supported and the input needs to be prefixed with `data:application/pdf;base64,` + +### Scale page to width + +It can be toggled to adjust the PDF content to fit the width or height of the component + +### Show page controls + +By default, page number, previous & next button is displayed while hovering the PDF file. It can be toggled on or off. + +### Show the download + +The `Download` button on the PDF component allows you to download the pdf file. By default, Show the download button is enabled. Toggle it off to remove the `Download` button from PDF component, you can also click on the `Fx` button to set the values `{{true}}` or `{{false}}` dynamically. + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - PDF + +
+ +## Layout + +| Layout | description | Expected value | +| --------------- | ----------------------------------------- | ------------------------------------------------------------------------------------------------------------- | +| Show on desktop | Toggle on or off to display desktop view. | You can programmatically determining the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | +| Show on mobile | Toggle on or off to display mobile view. | You can programmatically determining the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | + +## Styles + +| Style | Description | +| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Visibility | Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not visible after the app is deployed. By default, it's set to `{{true}}`. | + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/qr-scanner.md b/docs/versioned_docs/version-2.23.0/widgets/qr-scanner.md new file mode 100644 index 0000000000..f031728575 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/qr-scanner.md @@ -0,0 +1,75 @@ +--- +id: qr-scanner +title: QR Scanner +--- +# QR Scanner +Scan QR codes using device camera and hold the data they carry. + +
+ +ToolJet - Widget Reference - QR Scanner + +
+ +:::note Known Issue +You might have to stick to the Safari browser in IOS as camera access is restricted for third-party browsers. +::: + +## Exposed variables +### lastDetectedValue + +This variable holds the data contained in the last QR code scanned by the widget. To fetch the data use `{{components.qrscanner1.lastDetectedValue}}`. + +## Events +### onDetect + +This event is fired whenever the widget successfully scans a QR code. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +:::caution Debugging tip + +Browser camera APIs restrict this widget to only work in either `localhost` or `https`. + +So if you're testing it out, be sure to either use `localhost` or `https`. +::: + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the +mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. +Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - QR Scanner + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/radio-button.md b/docs/versioned_docs/version-2.23.0/widgets/radio-button.md new file mode 100644 index 0000000000..26c3c5c725 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/radio-button.md @@ -0,0 +1,107 @@ +--- +id: radio-button +title: Radio Button +--- +# Radio Button + +Radio button widget can be used to select one option from a group of options. + +## How To Use Radio button Widget + + + +:::tip +Radio buttons are preferred when the list of options is less than six, and all the options can be displayed at once. +::: + +:::info +For more than six options, consider using **[Dropdown](/docs/widgets/dropdown)** widget. +::: + +## Event + +### On select + +This event is triggered when an option is clicked. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## Properties + +### Label + +The text is to be used as the label for the radio button. This field expects a `String` value. + +### Default value + +The value of the default option. + +### Option values + +List of values for different items/options. Refer your query data with dynamic variables `{{queries.datasource.data.map(item => item.value)}}` or populate it with sample values `{{[true, false]}}` + +### Option labels + +List of labels for different items/options. Refer your query data with dynamic variables `{{queries.datasource.data.map(item => item.label)}}` or populate it with sample values `{{["yes", "no"]}}` + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Radio button + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Text color + +Change the color of the text in the widget by providing the `Hex color code` or by choosing the color of your choice from the color picker. + +### Active color + +Change the color of active radio button by providing the `Hex color code` or by choosing the color of your choice from the color picker. + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +## Example + +
+ +ToolJet - Widget Reference - Radio button + +
+ +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +Following actions of color picker component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| ----------- | ----------- | +| selectOption | Select an option from the radio buttons via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as: `await components.radiobutton1.selectOption('one')` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/range-slider.md b/docs/versioned_docs/version-2.23.0/widgets/range-slider.md new file mode 100644 index 0000000000..604d9ee204 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/range-slider.md @@ -0,0 +1,86 @@ +--- +id: range-slider +title: Range Slider +--- +# Range Slider + +Range sliders are widely used across different UIs. One of the main purposes is to filter, explore all the related content and available in the control and settings options. + +:::tip +Range Sliders have "Two handles" option which allows user to select within a range. +::: + +
+ +ToolJet - Widget Reference - Range Slider + +
+ +## Properties + +### Minimum value + +Set the minimum value for the slider. This field accepts any numerical value. + +### Maximum value + +Set the maximum value for the slider. This field accepts any numerical value. + +### Value + +Set the default value when the widget loads. This can be used to pre-fill the value based on your data and requirements. + +### Two handles + +The slider will now have 2 dragging handles. It is used to define a range of values versus a single given value. + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Range Slider + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Line color + +Enter the hexcode to set the default color for slider's track. +### Handle color + +Enter the hexcode to set the color for slider's handler. +### Track color + +Enter the hexcode to set the color for slider's active portion on the track. +### Visibility + +Set the visivlity of the slider programmatically. The default value is `{{true}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| value | This variable holds an object when `two handles` option is disabled or an array when `two handles` is enabled from the component properties. The value can be accessed dynamically using JS: `{{components.rangeslider1.value}}` or `{{components.rangeslider1.value[1]}}` | + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/rich-text-editor.md b/docs/versioned_docs/version-2.23.0/widgets/rich-text-editor.md new file mode 100644 index 0000000000..9d99fb99e3 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/rich-text-editor.md @@ -0,0 +1,66 @@ +--- +id: rich-text-editor +title: Text Editor +--- +# Text Editor + +Rich Text Editor can be used to enter and edit the text in HTML format. +It should be preferred for blog posts, forum posts or notes sections. The text is to be used as the label for the radio button. + +
+ +ToolJet - Widget Reference - Rich Text Editor + +
+ +## Properties + +### Placeholder + +It specifies a hint that describes the expected value. + +### Default Value + +The default value that the widget will hold when the app is loaded. + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference -Rich Text Editor + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| value | This variable holds the value whenever a user enters a value in the rich text editor component. You can access the value dynamically using JS: `{{components.richtexteditor1.value}}`| + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/spinner.md b/docs/versioned_docs/version-2.23.0/widgets/spinner.md new file mode 100644 index 0000000000..7869b13be0 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/spinner.md @@ -0,0 +1,57 @@ +--- +id: spinner +title: Spinner +--- +# Spinner + +Spinner widget can be used to provide a visual indication that an action is in progress by awaiting a change. + +
+ +ToolJet - Widget Reference - Spinner + +
+ +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Spinner + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Color + +Change the color of the Spinner by entering the `Hex color code` or choosing a color of your choice from the color-picker. + +### Size + +Change the size of the Spinner by selecting options from the dropdown. It has small and large sizes available. + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/star-rating.md b/docs/versioned_docs/version-2.23.0/widgets/star-rating.md new file mode 100644 index 0000000000..3b5d2cfe9e --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/star-rating.md @@ -0,0 +1,95 @@ +--- +id: star-rating +title: Star rating +--- +# Star rating + +Star rating widget can be used to display as well as input ratings. The widget supports half stars, and the number of stars can be set too. + +
+ +ToolJet - Widget Reference - Star rating + +
+ +## Events + +### On Change + +This event is triggered when a star is clicked. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## Properties + +### Label + +The text to be used as the label for the star rating. This field expects a `String` value. + +### Number of stars + +Initial number of stars in the list on initial load. `default: 5`. This field expects an integer value. + +### Default no of selected stars + +This property specifies the default count of stars that are selected on the initial load. `default: 5` (integer). This field expects an integer value. + +### Enable half star + +Toggle `on` to allow selection of half stars. `default: false` (bool). Click on `Fx` to programmatically define the value `{{true}}` or `{{false}}`. + +### Tooltips + +This is used for displaying informative tooltips on each star, and it is mapped to the index of the star. `default: []` (array of strings ). Ex: `{{["bad", "okay", "good", "best"]}}` + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Star rating + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Star Color + +Display color of the star. `default: #ffb400` (color hex). Change color by providing `Hex color code` or choosing one from the picker. + +### Label color + +Change the color of label in widget by providing `Hex color code` or choosing one from the picker. + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| value | This variable holds the value whenever a rating is added on the component. The variable holds a numerical value. You can access the value dynamically using JS: `{{components.colorpicker1.selectedColorHex}}`| + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/statistics.md b/docs/versioned_docs/version-2.23.0/widgets/statistics.md new file mode 100644 index 0000000000..62cd3f8e2b --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/statistics.md @@ -0,0 +1,101 @@ +--- +id: statistics +title: Statistics +--- + +# Statistics + +Statistics can be used to display different statistical information. + +
+ +ToolJet - Widget Reference - Statistics + +
+ +## Properties + +### Primary value label + +This property lets you add and remove primary value label. + +### Primary value + +This property lets you add and remove primary value,the actual amount can be represented here. + +### Hide secondary value + +This property lets you show/hide the secondary value from the statistics component. By default, this property is disabled. Toggle it on to hide the secondary value, you can also click on the `Fx` button next to it to dynamically set the value to `{{true}}` or `{{false}}`. + +### Secondary value label + +This property lets you add and remove secondary value label. + +### Secondary value + +This property lets you add and remove secondary value,the change in value can be represented here. + +### Secondary sign display + +This property lets you add and secondary sign either positive or negative,can be used to represent positive(increase) or negative(decrease) movement.Default value is positive. + +### Loading state + +Loading state can be used to show a spinner on the statistics. Loading state is commonly used with `isLoading` property of the queries to show a loading status while a query is being run. Switch the toggle **On** or click on `fx` to programmatically set the value `{{true}}` or `{{false}}`. + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Statistics + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Primary Label Colour + +You can change the primary label color by entering the Hex color code or choosing a color of your choice from the color picker. + +### Primary Text Colour + +You can change the primary text color of the primary label by entering the Hex color code or choosing a color of your choice from the color picker. + +### Secondary Label Colour + +You can change the secondary label color of the primary label by entering the Hex color code or choosing a color of your choice from the color picker. + +### Secondary Text Colour + +You can change the secondary text color of the primary label by entering the Hex color code or choosing a color of your choice from the color picker. + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/steps.md b/docs/versioned_docs/version-2.23.0/widgets/steps.md new file mode 100644 index 0000000000..bdd757dce9 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/steps.md @@ -0,0 +1,103 @@ +--- +id: steps +title: Steps +--- +# Steps + +Steps are used to guide users through complex processes, making them easier and more intuitive. + +
+ +ToolJet - Widget Reference - Steps + +
+ +## Properties + +
+ +ToolJet - Widget Reference - Steps + +
+ +### Steps + +This property lets you add and the steps. Every object represents a step. + +```json +{{ + [ + { name: 'step 1', tooltip: 'some tooltip', id: 1}, + { name: 'step 2', tooltip: 'some tooltip', id: 2}, + { name: 'step 3', tooltip: 'some tooltip', id: 3}, + { name: 'step 4', tooltip: 'some tooltip', id: 4}, + { name: 'step 5', tooltip: 'some tooltip', id: 5} + ] +}} +``` + +### Current step + +This property lets you select the current step you want to be highlighted. + +### Steps selectable + +This property when disabled will disable selection of steps. + +## Events +### On select +This event is fired whenever the user selects any step. + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Steps + +
+ +## Layout +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Theme + +You can change the theme of widget by selecting available themes from dropdown. + +### Colour + +You can change the color of the widget by entering the Hex color code or choosing a color of your choice from the color picker. + +### Text Colour + +You can change the text color of the widget by entering the Hex color code or choosing a color of your choice from the color picker. + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| currentStepId | This variable holds the id of the currently selected step on the step component. You can access the value dynamically using JS: `{{components.steps1.currentStepId}}`| + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/svg-image.md b/docs/versioned_docs/version-2.23.0/widgets/svg-image.md new file mode 100644 index 0000000000..b3a7a5ac7f --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/svg-image.md @@ -0,0 +1,67 @@ +--- +id: svg-image +title: Svg Image +--- +# SVG Image + +It is used to render vector images. We can display images, icons, texts using this widget. SVGs are vector images and therefore are usually much smaller in file-size than bitmap-based images. + +Developers prefer having SVG **(Scalable Vector Graphics)** files as they are scalable and will render pixel-perfect at any resolution whereas JPEGs, PNGs and GIFs will not. + +
+ +ToolJet - Widget Reference - SVG + +
+ +## Properties + +### SVG Data + +Enter the SVG data of the image to display it on the widget. + +:::tip +Refer to the resources where SVG files are downloaded for free. You copy-paste the below data in this field to see a new icon being rendered. +::: + +``` + +``` + + +## General + +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - SVG + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/table.md b/docs/versioned_docs/version-2.23.0/widgets/table.md new file mode 100644 index 0000000000..b421970811 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/table.md @@ -0,0 +1,771 @@ +--- +id: table +title: Table +--- +# Table + +Tables can be used for both displaying and editing data. You can use the table widget to display data from a database or API. You can also use the table widget to edit data and save it back to the database or API. + +## Table UI + +
+ +ToolJet - Widget Reference - Table + +
+ +### Filter data + +The table data can be filtered using this option. You have the option to choose from various filters, such as: + +- **contains** +- **does not contain** +- **matches** +- **does not match** +- **equals** +- **does not equal** +- **is empty** +- **is not empty** +- **greater than** +- **greater than or equal to** +- **less than** +- **less than or equal to** + +You have the option to **[hide the filter button](/docs/widgets/table#show-filter-button)** in the table properties. + +### Search + +At the top-right corner of the table component, there is a search box that allows users to input keywords and search for rows within the table data. You can also **[show/hide the search box](/docs/widgets/table#show-search-box)** from the table from the table properties. + +:::tip +You can use the `Tab` key to navigate through cells on the table. +::: + +### Pagination + +The table component supports both **[client-side pagination](/docs/widgets/table#client-side-pagination)** and **[server-side pagination](/docs/widgets/table#server-side-pagination)**. The `<<` and `>>` button skips to the first and last page respectively. The `<` and `>` button skips to the previous and next page respectively. You can also **[hide the pagination buttons](/docs/widgets/table#show-pagination-buttons)** in the table properties. + +### Add new rows + +Upon clicking this button, a popup modal will show, providing users with the ability to insert new rows. Initially, the modal will contain a single row, with columns mirroring those found in the table. If users input data into this row, it will be stored within the **[`newRows` variable](/docs/widgets/table#exposed-variables)** associated with the table. Clicking on the **Discard** button will clear the data within this variable. However, if the users close the popup without any action (neither saving nor discarding), the data will persist, accompanied by a green indicator on the **Add new row** button. The table incorporates an **[Add new rows event handler](/docs//widgets/table#add-new-rows)**, which can be employed to execute queries that store the data into the datasource upon clicking the **Save** button. + +:::info +At present, it is not possible to include columns of type Image when adding a new row to the table. +::: + + +### Download + +The table data can be downloaded in various file formats, including: + +- **CSV** +- **Excel** +- **PDF** + +You have the option to **[hide the download button](/docs/widgets/table#show-download-button)** in the table properties. + +:::tip +You can utilize **[Component Specific Actions](#component-specific-actions-csa)** to retrieve the table data in the mentioned formats from the event handlers across the application. +::: + +### Hide columns + +You can choose which columns to show or hide in the table using this option. You also have the option to **[hide the column selector button](/docs/widgets/table#show-column-selector-button)** in the table properties. + +### Sorting + +You can sort the table data in ascending or descending order by clicking on the column header. You can also **[disable the sorting](/docs/widgets/table#disable-sorting)** from the table properties. + +## Table data + +
+ +ToolJet - Widget Reference - Table + +
+
+ +To populate the table with the data, it is required to provide the data in the form of an array of objects. You can utilize data from queries, using `{{queries.restapi1.data}}`, to populate table. + +Example: +```js +{{[{ id: 1, name: 'Sarah', email: 'sarah@example.com'}]}} +``` + +The table also supports the loading of one level of **nested data**. Here is an example of the data structure: + +```js +[ + { + "id":1, + "student":{ + "name":"Anakin Skywalker", + "saber":"blue" + }, + "teacher":{ + "name":"Obi wan Kenobi", + "saber":"blue" + } + }, + { + "id":2, + "student":{ + "name":"Kevin", + "saber":"blue" + }, + "teacher":{ + "name":"Joe", + "saber":"blue" + } + }, + { + "id":3, + "student":{ + "name":"Alex", + "saber":"blue" + }, + "teacher":{ + "name":"Noah", + "saber":"blue" + } + } +] +``` +
+ +The table component will **automatically generate all the required columns** when the data is provided in the form of an array of objects. + +## Columns + +Whenever data is loaded into a table, the columns are automatically generated. You can add, remove, or modify columns by accessing the table properties under the column section. You can also rearrange the columns by dragging and dropping them. + +
+ +ToolJet - Widget Reference - Table + +
+ +### Use dynamic column + +Enabling the **Use dynamic column** toggle will allow users to set the **Column data** using which the user can link the column data dynamically from a query. + +The **column data** field expects a JSON value: +```json +{ + "name":"Name", + "columnType":"string", + "key":"first_name", + "cellBackgroundColor":"#000", + "textColor":"#fff", + "isEditable":true, + "regex":"", + "maxLength":10, + "minLength":5, + "customRule":"" +} +``` + +
+ +ToolJet - Widget Reference - Table + +
+ +### Types of Columns + +The table component supports the following column types: + +- [String | Default](#string--default) +- [Number](#number) +- [Badge](#badge) +- [Multiple Badges](#multiple-badges) +- [Tags](#tags) +- [Dropdown](#dropdown) +- [Radio](#radio) +- [Multiselect](#multiselect) +- [Toggle switch](#toggle-switch) +- [Date Picker](#date-picker) +- [Image](#image) +- [Link](#link) + +#### String | Default + +This column type is automatically selected by default when a column is added or when data is populated in the table. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Overflow | Manage the handling of content that exceeds the cell dimensions. `Wrap` wraps the content onto the next line within the cell, `Scroll` enables scrolling for content that exceeds the cell, and `Hide` conceals content that goes beyond the cell boundary. | +| Key | Specify the key name associated with the loaded data in the table. If no key is provided, the `Column name` is used as the key for that column. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Text color | Modify the color of the text in the column. You can use a hex color code or color name. The value can be dynamically assigned using JS. Refer to the [how-to guide](/docs/how-to/access-cellvalue-rowdata). | +| Cell background color | Adjust the background color of the cell in the column. You can utilize a hex color code or color name. The value can be dynamically assigned using JS. | +| Make editable | This option is disabled by default. Enabling it allows the column to be edited by app users. Its value can also be dynamically set to `{{true}}` or `{{false}}` to toggle it on or off. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +#### Number + +Selecting the column type as **Number** will only load numerical data in the column cells. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Key | Specify the key name associated with the loaded data in the table. If no key is provided, the `Column name` is used as the key for that column. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Make editable | This option is disabled by default. Enabling it allows the column to be edited by app users. Its value can also be dynamically set to `{{true}}` or `{{false}}` to toggle it on or off. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +
+ +ToolJet - Widget Reference - Table + +
+ +#### Badge + +The **Badge** column type is utilized to exhibit labels on the columns using the column data. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Key | Specify the key name associated with the loaded data in the table. If no key is provided, the `Column name` is used as the key for that column. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Values | Provide the values for the badge as an array | +| Labels | Provide the labels for the values in the badge as an array | +| Make editable | This option is disabled by default. Enabling it allows the column to be edited by app users. Its value can also be dynamically set to `{{true}}` or `{{false}}` to toggle it on or off. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +
+ +ToolJet - Widget Reference - Table + +
+ +#### Multiple Badges + +Similar to the **Badge** column type, the **Multiple Badges** type is used to display multiple badges within a column cell. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Key | Specify the key name associated with the loaded data in the table. If no key is provided, the `Column name` is used as the key for that column. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Values | Provide the values for the multiple badges as an array | +| Labels | Provide the labels for the values in the multiple badges as an array | +| Make editable | This option is disabled by default. Enabling it allows the column to be edited by app users. Its value can also be dynamically set to `{{true}}` or `{{false}}` to toggle it on or off. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +
+ +ToolJet - Widget Reference - Table + +
+ +#### Tags + +The **Tags** column type is utilized to display tags within the column cells using the column data. The provided **key** should have values in an array format. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Key | Specify the key name associated with the loaded data in the table. If no key is provided, the `Column name` is used as the key for that column. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Make editable | This option is disabled by default. Enabling it allows the column to be edited by app users. Its value can also be dynamically set to `{{true}}` or `{{false}}` to toggle it on or off. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +
+ +ToolJet - Widget Reference - Table + +
+ +#### Dropdown + +The **Dropdown** column type is used to display a dropdown in the column cells using the column data. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Key | Specify the key name associated with the loaded data in the table. If no key is provided, the `Column name` is used as the key for that column. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Values | Provide the values for the dropdown as an array | +| Labels | Provide the labels for the values in the dropdown as an array | +| Make editable | This option is disabled by default. Enabling it allows the column to be edited by app users. Its value can also be dynamically set to `{{true}}` or `{{false}}` to toggle it on or off. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +
+ +ToolJet - Widget Reference - Table + +
+ +#### Radio + +The **Radio** column type is used to show radio buttons in the column cells using the column data. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Key | Specify the key name associated with the loaded data in the table. If no key is provided, the `Column name` is used as the key for that column. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Values | Provide the values for the radio as an array | +| Labels | Provide the labels for the values in the radio as an array | +| Make editable | This option is disabled by default. Enabling it allows the column to be edited by app users. Its value can also be dynamically set to `{{true}}` or `{{false}}` to toggle it on or off. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +
+ +ToolJet - Widget Reference - Table + +
+ +#### Multiselect + +The **Multiselect** column type is used to show a multiselect dropdown in the column cells using the column data. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Key | Specify the key name associated with the loaded data in the table. If no key is provided, the `Column name` is used as the key for that column. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Values | Provide the values for the multiselect as an array | +| Labels | Provide the labels for the values in the multiselect as an array | +| Make editable | This option is disabled by default. Enabling it allows the column to be edited by app users. Its value can also be dynamically set to `{{true}}` or `{{false}}` to toggle it on or off. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +
+ +ToolJet - Widget Reference - Table + +
+ +#### Toggle Switch + +The **Toggle Switch** column type is used to display a toggle switch in the column cells using the column data. The provided **key** should be a boolean value, either true or false. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Key | Specify the key name associated with the loaded data in the table. If no key is provided, the `Column name` is used as the key for that column. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Active color | Set the color of the toggle switch when it is active using this property. | +| + Add Event Handler | Add an event handler to perform actions whenever the toggle switch is turned on or off. | +| Make editable | This option is disabled by default. Enabling it allows the column to be edited by app users. Its value can also be dynamically set to `{{true}}` or `{{false}}` to toggle it on or off. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +
+ +ToolJet - Widget Reference - Table + +
+ +#### Date Picker + +The **Date Picker** column type is used to display a date picker in the column cells using the column data. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Key | Specify the key name associated with the loaded data in the table. The provided **key** should hold a date value. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Date Display Format | Determines how the date should be displayed in the table | +| Date Parse Format | Specifies the format in which the date is stored in the database. | +| Parse in timezone | The timezone of the time stored in the database. Only required if the **Show time** option is enabled. | +| Display in timezone | The timezone in which the date should be displayed. Only required if the **Show time** option is enabled. | +| Show time | Displays the time along with the date. | +| Make editable | This option is disabled by default. Enabling it allows the column to be edited by app users. Its value can also be dynamically set to `{{true}}` or `{{false}}` to toggle it on or off. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +
+ +ToolJet - Widget Reference - Table + +
+ +#### Image + +The **Image** column type is used to display images in the column cells using the column data. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specify the name to be displayed on the table column header | +| Key | Specify the key name associated with the loaded data in the table. The provided **key** should hold a URL for the image to be loaded in the column cells. | +| Horizontal alignment | Positions content left, center, or right within table column cells for improved readability and visual presentation. | +| Border radius | Set a border radius for the image loaded in the column cell. The field accepts a numerical value from `0` to `100`. | +| Width | Set a width for the image loaded in the column cell. The field accepts a numerical value from `0` to `100`. | +| Height | Set a height for the image loaded in the column cell. The field accepts a numerical value from `0` to `100`. | +| Object fit | This option allows you to choose how the image should be fitted within its container. The available options are: **Cover**, **Contain**, and **Fill**. **Cover** maintains the aspect ratio of the image but may crop or clip parts of it to cover the container's width, **Contain** maintains the aspect ratio and resizes the image to fit within the given dimensions while displaying the entire image, and **Fill** stretches the image to cover 100% of the width. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +
+ +ToolJet - Widget Reference - Table + +
+ +#### Link + +The **Link** column type enables cells to become clickable links that can be loaded on either the same page or a new page. + +| Column property | Description | +| ----------- | ----------- | +| Column name | Specifies the name displayed on the table column header. | +| Key | Specify the key that holds the URL. By default. The provided key should hold either a `string` or a `URL`. | +| Link Target | Specifies whether the link should be loaded on the same window or a new window. The values can also be set dynamically to `_set` for same window and `_blank` for new window. | +| Column Visibility | This option is enabled by default. Disabling it hides the column from the table. Its value can also be dynamically set to `{{true}}` or `{{false}}` to show or hide the column. | + +:::info +For more information on using cellValue and rowData, refer to the **[how-to guide](/docs/how-to/access-cellvalue-rowdata)**. +::: + +
+ +ToolJet - Widget Reference - Table + +
+ +### Add Column + +You can add a new column to the table by clicking on the **+ Add Column** button. On clicking this button a new column will be added to the table and you can edit it's properties from the column section. Check [Displaying Data](#displaying-data) section to learn more. + +
+ +ToolJet - Widget Reference - Table + +
+ +### Delete Column + +Hover on the column under the columns section and click on the three dots icon, a dropdown will appear with the option to delete the column. Click on the **delete** option to remove the column from the table. + +
+ +ToolJet - Widget Reference - Table + +
+ +### Displaying Data + +The data object should be an array of objects. Table columns can be added, removed, rearranged from the inspector. `key` property is the accessor key used to get data from a single element of a table data object. For example: + +If the table data is: + +```js +[ + { + "review": { + "title": "An app review" + }, + "user": { + "name": "sam", + "email": "sam@example.com" + }, + } +] +``` + +To display email column, the key for the column should be `user.email`. + + +### Saving data +Enable `editable` property of a column to make the cells editable. If a data type is not selected, `string` is selected as the data type. + +:::tip +You can programatically **enable**/**disable** the make **editable** field in the columns property by clicking on the **Fx** button. +::: + +If the data in a cell is changed, `changeSet` property of the table object will have the index of the row and the field that changed. +For example, if the name field of second row of example in the 'Displaying Data' section is changed, `changeSet` will look like this: + +```js +{ + 2: { + "name": "new name" + } +} +``` + +Along with `changeSet`, `dataUpdates` property will also be changed when the value of a cell changes. `dataUpdates` will have the whole data of the changed index from the table data. `dataUpdates` will look like this for our example: + +```js +[{ + "review": { + "title": "An app review" + }, + "user": { + "name": "new name", + "email": "sam@example.com" + }, +}] +``` + +If the data of a cell is changed, "save changes" button will be shown at the bottom of the table. This button when clicked will trigger the `Bulk update query` event. This event can be used to run a query to update the data on your data source. + +## Validation + +Under column properties, expand the detailed view of a column type to access a toggle button called `make editable`. You can toggle it `ON` to apply the validations for each column respectively using the following. + +### Regex + +Use this field to enter a Regular Expression that will validate the password constraints. +### Min length + +Enter the number for a minimum length of password allowed. + +### Max length + +Enter the number for the maximum length of password allowed. + +### Custom validation + +If the condition is true, the validation passes, otherwise return a string that should be displayed as the error message. For example: `{{components.passwordInput1.value === 'something' ? true: 'value should be something'}}` + +## Action buttons + +
+ +ToolJet - Widget Reference - Table + +
+ +Action buttons will be displayed as the last column of the table. The styles of these buttons can be customised and `on click` actions can be configured. when clicked, `selectedRow` property of the table will have the table data of the row. + +| Property | Description | +| -------- | ------------ | +| Button text | Set the text that you want to be displayed on the action button. | +| Button position | Set the button position to the left or right | +| Background color (Action Button) | Background color of the action button. | +| Text color (Action Button) | Color of button-text of the action button. | +| Disable Action Button | Toggle on to disable the action button. You can programmatically set its value by clicking on the `Fx` button next to it, if set to `{{true}}`, the action button will be disabled and becomes non-functional. By default, its value is set to `{{false}}`. | + +## Events + +- **[Row hovered](#row-hovered)** +- **[Row clicked](#row-clicked)** +- **[Save changes](#save-changes)** +- **[Cancel changes](#cancel-changes)** +- **[Page changed](#page-changed)** +- **[Search](#search)** +- **[Sort applied](#sort-applied)** +- **[Cell value changed](#cell-value-changed)** +- **[Filter changed](#filter-changed)** +- **[Add new rows](#add-new-rows)** + +
+ +ToolJet - Widget Reference - Table + +
+ +### Row hovered + +This event is triggered when the mouse pointer is moved over a row in the table. The `hoveredRowId` exposed variable of the table will include the id of the latest hovered row and `hoveredRow` property of the table will have the data of the hovered row in the object format. + +### Row clicked + +This event is triggered when a table row is clicked. The `selectedRowId` exposed variable of the table will include the id of the selected row and the `selectedRow` property of the table object will have the table data of the selected row. + +### Save changes + +If any cell of the table is edited, the `save changes` button appears at the footer of the table. Save changes event is triggered when this button is clicked. + +### Cancel changes + +If any cell of the table is edited, the `Discard changes` button appears at the footer of the table. Cancel changes event is triggered when this button is clicked. + +### Page changed + +If server-side pagination is enabled, this event is fired when the current page is changed. This event is triggered after updating the `pageIndex` variable. + +### Search + +This event is triggered when a text is entered to the search input box of the table. `searchText` variable is updated before triggering this event. + +### Sort applied + +This event is triggered when the column name header is clicked to apply sorting in `asc` or `desc`. The `sortApplied` variable is updated with an object having `column` and `direction` values. + +### Cell value changed + +If any cell of the table is edited, the `cell value changed` event is triggered. + +### Filter changed + +This event is triggered when filter is added, removed, or updated from the filter section of the table. `filters` property of the table is updated to reflect the status of filters applied. The objects will have properties: `condition`, `value`, and `column`. + +### Add new rows + +This event is triggered when the **Save** button is clicked from the **Add new row** modal on the table. + +## Row Selection + +
+ +ToolJet - Widget Reference - Table + +
+ + +### Allow selection + +This option is active by default. **Enabling** this functionality allows users to choose a row in the table by utilizing `checkboxes` placed next to each row. If this option is **disabled**, the ability to highlight selected rows and perform bulk selection will not be accessible. + +If the option for allowing selection is enabled, a new option called **[Default selected row](#default-selected-row)** will become visible. However, if the option for allowing selection is disabled, the **[Default selected row](#default-selected-row)** option will not be displayed. + +### Highlight selected row + +Activate this option to visually emphasize the last clicked row. **Enabling** this feature will alter the row selection appearance of the table from a `checkbox`-based theme to a `highlighting`-based theme. + +### Bulk selection + +To enable the selection of one or more rows from the current page of a table, you can activate the 'Bulk selection' setting in the inspector. The values of the selected rows will be exposed as '**selectedRows**'. + +### Default Selected Row + +By enabling this option, you can designate a default row to be pre-selected when the app loads. This means that whenever the app is opened for the first time, a specific row will already be highlighted in the table by default. Additionally, there is an accessible variable that stores the value for this setting. You can find a list of all accessible variables **[here](#exposed-variables)**. + +To set a default selected row, you need to provide an object with a single key-value pair. For instance, you can use the `id` key and dynamically obtain the value from a variable, let's say `x`, to specify the default selected row in the table. We assume that the variable `x` holds a valid numerical id. + +Example: +```js +{{{"id": variables.x}}} //assuming variables.x is already set +``` + +Please ensure that the value provided in the object corresponds to a valid id in the table to ensure proper functionality. + +## Search Sort and Filter + +
+ +ToolJet - Widget Reference - Table + +
+ +### Show search + +It can be used to show or hide Table Search box. Client-side search is enabled by default and server-side search can be enabled from the events section of the inspector. Whenever the search text is changed, the `searchText` property of the table component is updated. If server-side search is enabled, `on search` event is fired after the content of `searchText` property is changed. `searchText` can be used to run a specific query to search for the records in your data source. + +If you don't wish to use the search feature altogether, you can disable it from the inspector. + +#### Server-side search + +If server-side search is enabled, `on search` event is fired after the content of `searchText` property is changed. `searchText` can be used to run a specific query to search for the records in your data source. + +### Enable column sorting + +Disable this option to lock the sorting of columns when clicked on column header. + +#### Server-side sort +When Server-side sort is enabled, clicking on the column headers will not automatically sort the table, instead, the `Sort applied` event will be fired and the applied sorting will be exposed as `sortApplied`. You can use this data to run any query that feeds data to the table in a manner that reflects the sorting applied. + +### Enable filtering + +The filter button in the table header is visible by default. You can choose to hide it by disabling this option. You can dynamically set the value to {{true}} or {{false}} to show or hide the filter button by clicking on the **Fx** button. + +#### Server-side filter +When Server-side filter is enabled, applying filters will not automatically filter the table, instead, the `Filter changed` event will be fired and the applied filters will be exposed as `filters`. You can use this data to run any query that feeds data to the table in a manner that reflects the filters applied. + + +## Pagination + +
+ +ToolJet - Widget Reference - Table + +
+ +### Client-side pagination + +Client-side pagination is enabled by default. When the client-side pagination is enabled(`{{true}}`), another property **Number of rows per page** will be shown that can be used to set the number of records per page. By default, the value is set to 10 and if it is disabled(`{{false}}`) then it will show all the records in the single page. + +### Server-side pagination + +Server-side pagination can be used to run a query whenever the page is changed. Go to events section of the inspector and change the action for `on page changed` event. Number of records per page needs to be handled in your query. If server-side pagination is enabled, `pageIndex` property will be exposed on the table object, this property will have the current page index. `pageIndex` can be used to query the next set of results when page is changed. + +When Server-side pagination is enabled, you'll be able to set three other table properties: +- **Enable previous page button**: When server-side pagination is enabled, this button is enabled by default. Toggle this off to disable the previous page button from the table. +- **Enable next page button**: When server-side pagination is enabled, this button is enabled by default. Toggle this off to disable the next page button from the table. +- **Total records server side**: Set a numerical value to display particular number of records. + +:::tip +Check this how-to guide to learn more about [server-side pagination](/docs/how-to/use-server-side-pagination). +::: + +## Addional actions + +
+ +ToolJet - Widget Reference - Table + +
+ +### Show add new row button + +The Add new row button in the table header is visible by default. You can choose to hide it by disabling this option. You can dynamically set the value to {{true}} or {{false}} to show or hide the Add new row button by clicking on the **Fx** button. + +### Show download button + +The download button in the table header is visible by default. You can choose to hide it by disabling this option. You can dynamically set the value to {{true}} or {{false}} to show or hide the download button by clicking on the **Fx** button. + +### Hide column selector button + +The column selector button on the table header is visible by default. You can choose to hide it by disabling this option. You can dynamically set the value to {{true}} or {{false}} to show or hide the column selector button by clicking on the **Fx** button. + +### Loading state (Boolean) + +Loading state shows a loading skeleton for the table. This property can be used to show a loading status on the table while data is being loaded. `isLoading` property of a query can be used to get the status of a query. + +### Show update buttons + +It's enabled by default. Table footer will show two update buttons **Save changes** & **Discard changes** whenever a cell is edited. Toggle `off` to hide update buttons. + +## Devices + +| Option | Description | Expected value | +|:----------- |:----------- |:----------- | +| **Show on desktop** | Toggle on or off to show or hide the component on desktop devices | `{{true}}` or `{{false}}` | +| **Show on mobile** | Toggle on or off to show or hide the component on mobile devices | `{{true}}` or `{{false}}` | + +## Styles + +| Style | Description | +| :---------- | :---------- | +| **Text color** | Change the color of the text in table by providing `hex color code` or choosing one from the picker | +| **Action button radius** | This field can be used to give a radius to all action buttons. The default value is `0` | +| **Table type** | Select a type of table from the dropdown: Bordered, Regular, or Striped. | +| **Cell size** | This decides the size of table cells. You can choose between a `Condensed` size for table cells or a `Regular` size | +| **Visibility** | Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not visible after the app is deployed. By default, it's set to `{{true}}`. | +| **Disable** | Toggle on to lock the widget. You can programmatically change its value by clicking on the `Fx` button next to it, if set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. | +| **Border radius** | Use this property to modify the border radius of the button. | + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +| variable | description | +| :---------- | :---------- | +| **currentData** | Data that is currently being displayed by the table ( including edits if any ) | +| **currentPageData** | Data that is displayed on the current page if pagination is enabled ( including edits if any ) | +| **pageIndex** | Index of the current page, starting from 1 +| **changeSet** | Object with row number as the key and object of edited fields and their values as the value | +| **dataUpdates** | Just like changeSet but includes the data of the entire row | +| **selectedRow** | Contains the data of the row that was most recently clicked. When an action button is clicked, `selectedRow` is also updated. Its initial value is set to the data of the first row when the app is loaded. | +| **selectedRowId** | Stores the ID of the row that was last clicked. Similar to `selectedRow`, it gets updated when an action button is clicked. You can access its value using `{{components.table1.selectedRowId}}`. By default, it is set to `0`, representing the ID of the first row when the app is loaded. | +| **selectedCell** | The data of the cell that was last clicked on the table. | +| **searchText** | The value of the search field if server-side pagination is enabled | +| **newRows**| The newRows variable stores an array of objects, each containing data for a row that was added to the table using the "Add new row" button. When the user clicks either the "Save" or "Discard" button in the modal, this data is cleared.| + +## Component specific actions (CSA) + +Following actions of color picker component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| :----------- | :----------- | +| **setPage** | Set the page on the table via component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.table1.setPage(2)` | +| **selectRow** | Select the row on the table using via component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.table1.selectRow('id','11')` | +| **deselectRow** | Deselect the row on the table via component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.table1.deselectRow()` | +| **discardChanges** | Discard the changes from the table when a cell is edited via component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.table1.discardChanges()` | +| **discardNewlyAddedRows** | Discard the newly added rows from the add new row popup on the table via component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.table1.discardNewlyAddedRows()` | +| **downloadTableData** | Retrieve the data from the table in the PDF, CSV, or Excel sheet by using a component-specific action within an event handler. Furthermore, you have the choice to utilize a RunJS query to execute component-specific actions. For downloading the table data as a PDF, you can use the following code: `await components.table1.downloadTableData('pdf')`. Similarly, for downloading as a CSV: `await components.table1.downloadTableData('csv')`, and for downloading as an Excel sheet: `await components.table1.downloadTableData('xlsx')`. | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/tabs.md b/docs/versioned_docs/version-2.23.0/widgets/tabs.md new file mode 100644 index 0000000000..463224fefc --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/tabs.md @@ -0,0 +1,138 @@ +--- +id: tabs +title: Tabs +--- + +# Tabs + +A Tabs widget contains a number of defined containers that can be navigated through the tabs. Each tab acts as a [container](/docs/widgets/container/) that can have different widgets placed inside it. + +
+ +ToolJet - Widget Reference - Tabs + +
+ +:::caution Restricted components +In order to avoid excessively complex situations, certain components, namely **Calendar** and **Kanban**, are restricted from being placed within the Tabs component using drag-and-drop functionality. + +If the builder attempts to add any of the aforementioned components inside the Tabs, an error message will be displayed: + +` cannot be used as a child component within the Tabs.` +::: + +## How To Use Tabs Widget + + + +## Properties + +### Tabs + +This property lets you add and remove containers from the tabs widget. Each container in the tab has its unique `id` , `title` and `disabled` for disabling individual tabs . This field expects an array of objects. + +```js +{{[ + { title: 'Home', id: '0' }, + { title: 'Profile', id: '1',disabled:'true' }, + { title: 'Settings', id: '2' } +]}} +``` + +#### Adding background color to Tabs + +You can specify the different color for each tab using the `backgroundColor` property and use hex color code or color name as the value. + +```js +{{[ + { title: 'Home', id: '0', backgroundColor: '#81D4FA' }, + { title: 'Profile', id: '1', backgroundColor: 'blue' }, + { title: 'Settings', id: '2', backgroundColor: '#ecf0f1'} + ]}} +``` + +
+ +Tabs properties + +
+ +### Default tab + +This property selects the container in the tab which matches the corresponding `id`. By default, the value is set to `0`. + +### Hide tab + +It allows you to hide all the tab titles defined in the Tabs property above. It accepts boolean values which can also be set using the toggle option or programmatically by clicking on the FX button. + +### Render only active tab + +This property is enabled by default. When enabled, only the active tab will be rendered and when disabled, all the tabs in the component will be rendered. + +## Events + +
+ +irtable record + +
+ +### On tab switch + +This event is triggered when the tab is switched. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## Actions + +| Action | Description | Properties | +| ----------- | ----------- | ------------------ | +| setTab | Set current tab. | `id` | + +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Highlight Color + +You can change the highlight color of the selected tab by entering the Hex color code or choosing a color of your choice from the color picker. + +### Tab width + +Tab width can be set as **auto** or **equally split**. + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| currentTab | This variable holds the id of the current tab selected on the tabs component. You can access the value dynamically using JS: `{{components.tabs1.currentTab}}`| + +## Component specific actions (CSA) + +Following actions of Tabs component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| ----------- | ----------- | +| setTab | Set the current tab of the tabs component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.tabs1.setTab(1)` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/tags.md b/docs/versioned_docs/version-2.23.0/widgets/tags.md new file mode 100644 index 0000000000..8d86319d07 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/tags.md @@ -0,0 +1,69 @@ +--- +id: tags +title: Tags +--- +# Tags + +Tags widget can be used to show array of data as tags. + +
+ +ToolJet - Widget Reference - Tags + +
+ +## Properties + +### Tags + +It can be used to set array of tags. It must be an array of objects like this: + +```js +{{ + [ + { title: 'success', color: '#2fb344', textColor: '#fff' }, + { title: 'info', color: '#206bc4', textColor: '#fff' }, + { title: 'warning', color: '#f59f00', textColor: '#fff' }, + { title: 'danger', color: '#d63939', textColor: '#fff' } + ] +}} +``` + +Each object should contain a title, color code of a particular tag, and also a text color. + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Tags + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/text-input.md b/docs/versioned_docs/version-2.23.0/widgets/text-input.md new file mode 100644 index 0000000000..751d5575f2 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/text-input.md @@ -0,0 +1,131 @@ +--- +id: text-input +title: Text Input +--- +# Text Input + +Text Input widget lets users enter and edit text. + +:::tip +The Text Input should be preferred when user input is a single line of text. +::: + +## How To Use Text Input Widget + + + +## Properties + +### Default value + +The default value that the widget will hold when the app is loaded. + +### Placeholder + +It specifies a hint that describes the expected value. + +## Events + +
+ +ToolJet - Widget Reference - Text input + +
+ +### On change +This event fires whenever the user types something on the text input. + +### On Enter Pressed +This event fires whenever the user presses the enter button on keyboard after entering some text on text input component. + +### On focus +This event fires whenever the user clicks inside the text input component. + +### On blur +This event fires whenever the user clicks outside the text input component. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get detailed information about all the **Actions**. +::: + +## Validation + +### Regex + +Use this field to enter a Regular Expression that will validate the password constraints. + +### Min length + +Enter the number for a minimum length of password allowed. + +### Max length + +Enter the number for the maximum length of password allowed. + +### Custom validation + +If the condition is true, the validation passes, otherwise returns a string that should be displayed as the error message. For example: `{{components.passwordInput1.value === 'something' ? true: 'value should be something'}}`. + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Text input + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Text Color +Use this property to set the color of the text inside the text input component. You can select the color from the color picker or set the value using Hex color code. + +### Border color + +Add a color to the border of the text-input component using this property. You can select the color from the color picker or set the value using Hex color code. + +### Border Radius +Use this property to modify the border radius of the widget. The field expects only numerical values from `1` to `100`, and default is `0`. + +### Visibility +It is to control the visibility of the widget. If `{{false}}` the widget will not be visible after the app gets deployed. It can only have boolean values i.e. either `{{true}}` or `{{false}}`. By default, it's set to `{{true}}`. + +### Disable +This property only accepts boolean values. If set to `{{true}}`, the widget will lock and become non-functional. By default, its value is set to `{{false}}`. + +:::info +Check the **component specific actions** available for this component **[here](/docs/actions/control-component)**. +::: + + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| value | This variable holds the value whenever user a user inputs a value in the component. You can access the value dynamically using JS: `{{components.textinput1.value}}`| + +## Component specific actions (CSA) + +Following actions of text input component can be controlled using the component specific actions(CSA): + +| Actions | Description | +| ----------- | ----------- | +| setFocus | Set the focus of the cursor on the text input via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.textinput1.setFocus()` | +| setBlur | Removes the focus of the cursor on the text input via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.textinput1.setBlur()` | +| disable | disable the component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.textinput1.disable(true)` | +| visibility | Set a visibility of the text input via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.textinput1.visibility(false)` | +| setText | Set a text value on the text input component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.textinput1.setText('this is input text')` | +| clear | Clear the entered text from the text input via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.textinput1.clear()` | \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/widgets/text.md b/docs/versioned_docs/version-2.23.0/widgets/text.md new file mode 100644 index 0000000000..1d32def6bf --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/text.md @@ -0,0 +1,82 @@ +--- +id: text +title: Text +--- +# Text + +The **Text** component can be used to create headers/sub-headers, add labels next to various input fields and more. In this document, we'll go through all the configuration options for the **Text** component. + +## How To Use Text Component + + + +## Properties + +| Properties | Description | Expected Value | +|:--------------------|:--------------------------------------|:---------------| +| Text | This property sets the content/text inside the Text component. | Text input OR Refer query data with dynamic variables - `{{queries.datasource.data.text}}`| +| Show loading state | This property lets you set the condition for loading state of the text. | Use the toggle button or dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either `{{true}}` or `{{false}}` | + + +## General +Tooltip + +A **Tooltip** is commonly used to provide additional information about an element. This information becomes visible when the user hovers the mouse pointer over the respective component. + +In the input field under **Tooltip**, you can enter some text and the component will show the specified text as a tooltip when it is hovered over. + + +
+ Tooltip Example +
+ +## Layout +Show on desktop + +Use this toggle to show or hide the component in the desktop view. You can dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to `{{true}}` or `{{false}}`. + +Show on mobile + +Use this toggle to show or hide the component in the mobile view. You can dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to `{{true}}` or `{{false}}`. + +--- + +## Styles + +| Style | Description | Expected Value +|:----------- |:----------- | :------- +| Font Weight | Determines how bold or light your text will appear. | normal (default), bold, lighter, bolder | +| Text Decoration | Adds an underline, overline, line-through, or a combination of lines to selected text. | none(default), overline, line-through, underline, overline underline | +| Text Transformation | Dictates the capitalization of an element's text. It allows for all-uppercase or all-lowercase rendering. | none (default), uppercase, lowercase, capitalize | +| Font Style | Allows you to apply styles like italic or normal, altering the overall look of the text content. | normal(default), italic, oblique | +| Line Height | Determines the vertical space between lines of text within an element. It controls the amount of space above and below each line of text. | Enter a number as the value (example: **1.5**) | +| Text Indent | Commonly used to create an indentation effect, like when starting a paragraph with some space before the first word. | Enter a number as the value (example: **10**) | +| Letter Spacing | Refers to the adjustment of the space between individual characters within a block of text. | Enter a number as the value (example: **2**) | +| Word Spacing | Controls the amount of space between words within a block of text. | Enter a number as the value (example: **2**) | +| Font Variant | Allows you to customize the visual appearance of text and helps achieve specific typographic styles or formatting requirements. | normal (default), small-caps, initial, inherit | +| Text Size | Dimensions of the characters in a font, typically measured in units like pixels, points, ems, or percentages. It determines how large or small the text appears on a screen or in print. | Any number between **1-100** | +| Background Color | Sets the background color of the component. | Hex color code/choose a color using the color picker | +| Text Color | Sets the color of the text. |Hex color code/choose a color using the color picker | +| Align Text | Sets the alignment of the text. | left, right, center, justified | +| Visibility | Controls the visibility of the component. If set to {{false}}, the component will not be visible after the app is deployed. | Use the toggle button OR click on `Fx` to pass a boolean value or a logical expression that returns a boolean value i.e. either `{{true}}` or `{{false}}`| +| Disable | Makes the component non-functional when set to true. | Use the toggle button OR click on `Fx` to pass a boolean value or a logical expression that returns a boolean value i.e. either `{{true}}` or `{{false}}`| + +## General + +Box Shadow + +The **Box Shadow** property is used to add shadow effects around a component's frame. You can specify the horizontal and vertical offsets(through X and Y sliders), blur and spread radius, and color of the shadow. + +
+ Box-Shadow Example +
+ + +## Component Specific Actions (CSA) + +Following actions of the **Text** component can be controlled using Component-Specific Actions(CSA): + +| Actions | Description | +| :----------- | :----------- | +| visibility | Sets the visibility of the text via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.text1.visibility(false)`. | +| setText | Sets a text value on the text component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.text1.setText('this is a text')`. | diff --git a/docs/versioned_docs/version-2.23.0/widgets/textarea.md b/docs/versioned_docs/version-2.23.0/widgets/textarea.md new file mode 100644 index 0000000000..236c54ec38 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/textarea.md @@ -0,0 +1,74 @@ +--- +id: textarea +title: Textarea +--- +# Textarea + +The **Textarea** component allows users to enter text in an input field similar to the [Text Input](/docs/widgets/text-input) component. Textarea is generally preferred when we are expecting an input of multiple sentences. In this document, we'll go through all the configuration options for the **Textarea** component. +## How To Use Textarea Widget + + + +## Properties + +| Property | Description | Expected Value | +|:-------------|:------------------------------------------------------------|:------------| +| Default value| Used to set initial value in textarea on load. It is a pre-established value that can be retrieved from the Text area component if no modifications are made to it. | Enter some text as the value (example: "John Doe")| +| Placeholder | Provides a hint for the expected value. It disappears once the user interacts with the component. | Enter some instructional text as the value (example: "Type name here") | + +## General + +Tooltip + +A **Tooltip** is commonly used to provide additional information about an element. This information becomes visible when the user hovers the mouse pointer over the respective component. + +In the input field under **Tooltip**, you can enter some text and the component will show the specified text as a tooltip when it is hovered over. + +
+ Tooltip Example +
+ +## Layout + +Show on desktop + +Use this toggle to show or hide the component in the desktop view. You can dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to `{{true}}` or `{{false}}`. + +Show on mobile + +Use this toggle to show or hide the component in the mobile view. You can dynamically configure the value by clicking on `Fx` and entering a logical expression that results in either true or false. Alternatively, you can directly set the values to `{{true}}` or `{{false}}`. + +--- + +## Styles + +| Property | Description | Expected Value | +|:---------------|:-----------|:---------------| +| Visibility | Controls the visibility of the component. If set to `{{false}}`, the component will not be visible after the app is deployed.| Use the toggle button OR click on `Fx` to pass a boolean value or a logical expression that returns a boolean value i.e. either `{{true}}` or `{{false}}`| +| Disable | Makes the component non-functional when set to true. | Use the toggle button OR click on `Fx` to pass a boolean value or a logical expression that returns a boolean value i.e. either `{{true}}` or `{{false}}`| +| Border Radius | Adjusts the roundness of the component's corners. | Numeric value| + +## General + +Box Shadow + +The **Box Shadow** property is used to add shadow effects around a component's frame. You can specify the horizontal and vertical offsets(through X and Y sliders), blur and spread radius, and color of the shadow. + +
+ Box-Shadow Example +
+ +## Exposed Variables + +| Variables | Description | Expected Value | +|: ----------- |: ----------- | :-------------| +| value | This variable holds the value entered in the text area component. | You can access the value dynamically using JS. For example, `{{components.textarea1.value}}`| + +## Component Specific Actions (CSA) + +Following actions of the **Textarea** component can be controlled using Component-Specific Actions(CSA): + +| Actions | Description | +| :----------- | :----------- | +| setText | Sets the text on the text area component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.textarea1.setText('this is a textarea')`. | +| clear | Clears the value from the text area component via a component-specific action within any event handler. Additionally, you have the option to employ a RunJS query to execute component-specific actions such as `await components.textarea1.clear()`. | diff --git a/docs/versioned_docs/version-2.23.0/widgets/timeline.md b/docs/versioned_docs/version-2.23.0/widgets/timeline.md new file mode 100644 index 0000000000..ee6cc8b819 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/timeline.md @@ -0,0 +1,72 @@ +--- +id: timeline +title: Timeline +--- +# Timeline + +Timeline widget can be used to do a visual representation of a sequence of events + +
+ +ToolJet - Widget Reference - Timeline + +
+ +## Properties + +### Timeline data + +**Data requirements:** The data needs to be an array of objects and each object should have `title`, `subTitle`, `iconBackgroundColor` and `date` keys. + +**Example:** +```json +[ + { "title": "Product Launched", "subTitle": "First version of our product released to public", "date": "20/10/2021", "iconBackgroundColor": "#4d72fa"}, + { "title": "First Signup", "subTitle": "Congratulations! We got our first signup", "date": "22/10/2021", "iconBackgroundColor": "#4d72fa"}, + { "title": "First Payment", "subTitle": "Hurray! We got our first payment", "date": "01/11/2021", "iconBackgroundColor": "#4d72fa"} +] +``` + + +### Hide date + +Hide date can be used to hide the date time or Left Hand Side of the timeline widget + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Timeline + +
+ +## Layout + +| Layout| description| Expected value| +| ----- | --------- | ------------- | +| Show on desktop | Toggle on or off to display desktop view. | You can programmatically determining the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | +| Show on mobile | Toggle on or off to display mobile view. | You can programmatically determining the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}` | + +## Styles + +| Style | Description | +| ----------- | ----------- | +| Visibility | Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not visible after the app is deployed. By default, it's set to `{{true}}`. | + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/timer.md b/docs/versioned_docs/version-2.23.0/widgets/timer.md new file mode 100644 index 0000000000..ec7c14a23d --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/timer.md @@ -0,0 +1,89 @@ +--- +id: timer +title: Timer +--- +# Timer + +Timer widget lets users to count timer both upward and downward + +
+ +ToolJet - Widget Reference - Timer + +
+ +## Properties + +### Default value + +It specifies the initial value of timer. Format is: `HH.mm.ss.SS`. + +### Timer type + +It specifies If its a upward or downward counter. Select `Count Up` or `Count Down` from the dropdown or you can click on `Fx` to programmatically define the values `countUp` or `countDown`. + +## Events + +### On start +This event is fired when user clicks on start button. + +### On resume +This event is fired when user clicks on resume button. + +### On pause +This event is fired when user clicks on pause button. + +### On count down finish +This event is fired when the count down timer reaches zero. + +### On reset +This event is fired when user clicks on reset button. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Timer + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Visibility + +This is to control the visibility of the widget. If `{{false}}` the widget will not visible after the app is deployed. It can only have boolean values i.e. either `{{true}}` or `{{false}}`. By default, it's set to `{{true}}`. + +### Disable + +This property only accepts boolean values. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| value | This variable holds the value of the timer in the following keys: **hour**, **minute**, **second**, and **mSecond**. You can access the value dynamically using JS: `{{components.timer1.value.second}}`| +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/toggle-switch.md b/docs/versioned_docs/version-2.23.0/widgets/toggle-switch.md new file mode 100644 index 0000000000..4d11ed9ecf --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/toggle-switch.md @@ -0,0 +1,86 @@ +--- +id: toggle-switch +title: Toggle Switch +--- +# Toggle Switch + +The toggle switch widget allows the user to change a setting between two states. + +The Toggle switch widget should be used if we want to make a binary choice, such as turning something **on or off** or **enable or disable**. + +## How To Use Toggle Switch Widget + + + +## Properties + +### Label + +This property can be used to set a label for the switch. Default Label: **Toggle label** + +### Default status + +The property is used to set the default status (enabled or disabled) of the toggle switch component when the app is loaded. By default, the checkbox component is set to `{{false}}`/disabled. + +## Event + +### On change +This event is triggered whenever the toggle switch is clicked. + +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Toggle switch + +
+ +## Layout + +### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. +### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +### Text color + +Change the color of the text in the widget by providig the `Hex color code` or choosing a color from the picker. + +### Toggle switch color + +Change the color of the toggle switch in the widget by providig the `Hex color code` or choosing a color from the picker. + +### Visibility + +This is to control the visibility of the widget. If `{{false}}` the widget will not visible after the app is deployed. It can only have boolean values i.e. either `{{true}}` or `{{false}}`. By default, it's set to `{{true}}`. + +### Disable + +This property only accepts boolean values. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| value | This variable holds the boolean value i.e `true` or `false` when the toggle is on or off respectively. You can access the value dynamically using JS: `{{components.toggleswitch1.value}}`| + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/tree-select.md b/docs/versioned_docs/version-2.23.0/widgets/tree-select.md new file mode 100644 index 0000000000..5bccb5c366 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/tree-select.md @@ -0,0 +1,170 @@ +--- +id: tree-select +title: Tree Select +--- + +# Tree Select + +Tree Select widget is a group checkboxes in a TreeView which can be expanded or collapsed. + +
+ +ToolJet - Widget Reference - Tree Select + +
+ +## Properties + +### Title + +The text is to be used as the title for the tree select. This field expects a `String` input. + +### Structure + +**Data requirements:** The structure needs to be an array of objects and each object should have `label` and `value` keys. If you wish to have `children` under any of the checkbox, then `children` array needs to be passed with `label` and `value` keys. + +**Example:** + +```json +[ + { + "label": "Asia", + "value": "asia", + "children": [ + { + "label": "China", + "value": "china", + "children": [ + { "label": "Beijing", "value": "beijing" }, + { "label": "Shanghai", "value": "shanghai" } + ] + }, + { "label": "Japan", "value": "japan" }, + { + "label": "India", + "value": "india", + "children": [ + { "label": "Delhi", "value": "delhi" }, + { "label": "Mumbai", "value": "mumbai" }, + { "label": "Bengaluru", "value": "bengaluru" } + ] + } + ] + }, + { + "label": "Europe", + "value": "europe", + "children": [ + { "label": "France", "value": "france" }, + { "label": "Spain", "value": "spain" }, + { "label": "England", "value": "england" } + ] + }, + { "label": "Africa", "value": "africa" } +] +``` + +:::info +Note: The `value` should be unique throughout the structure array. +::: + +### Checked Values + +Checked values is an array of values passed to select the checkboxes by default. + +**Example:** + +```json +["asia", "spain"] +``` + +### Expanded Values + +Similar to checked values, expanded values is an array of values passed to expand the node by default. + +**Example:** + +```json +["asia"] +``` + +### Events + +
+ +ToolJet - Widget Reference - Tree Select + +
+ +:::info +Check [Action Reference](/docs/category/actions-reference) docs to get the detailed information about all the **Actions**. +::: + +#### On change + +On check event is triggered whenever the checkbox value is changed (checked or unchecked). + +#### On check + +On check event is triggered whenever the checkbox value is checked. + +#### On uncheck + +On uncheck event is triggered whenever the checkbox value is unchecked. + +### Layout + +
+ +ToolJet - Widget Reference - Tree Select + +
+ +#### Show on desktop + +Toggle on or off to display the widget in desktop view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +#### Show on mobile + +Toggle on or off to display the widget in mobile view. You can programmatically determine the value by clicking on `Fx` to set the value `{{true}}` or `{{false}}`. + +## Styles + +
+ +ToolJet - Widget Reference - Tree Select + +
+ +### Text color + +Change the color of the Label by entering the `Hex color code` or choosing a color of your choice from the color-picker. + +### Checkbox color + +You can change the color of the checkbox by entering the `Hex color code` or choosing a color of your choice from the color-picker. + +### Visibility + +Toggle on or off to control the visibility of the widget. You can programmatically change its value by clicking on the `Fx` button next to it. If `{{false}}` the widget will not be visible after the app is deployed. By default, it's set to `{{true}}`. + +### Disable + +This is `off` by default, toggle `on` the switch to lock the widget and make it non-functional. You can also programmatically set the value by clicking on the `Fx` button next to it. If set to `{{true}}`, the widget will be locked and becomes non-functional. By default, its value is set to `{{false}}`. + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed Variables + +| Variables | Description | +| ----------- | ----------- | +| checked | This variable holds the value of all the checked items on the tree select component. You can access the value dynamically using JS: `{{components.treeselect1.checked[1]}}`| +| expanded | This variable holds the value of expanded items on the tree select component. You can access the value dynamically using JS: `{{components.treeselect1.expanded[0]}}`| +| checkedPathArray | This variable holds the path of the checked items in differet arrays. You can access the value dynamically using JS: `{{components.treeselect1.checkedPathArray[1][1]}}`| +| checkedPathStrings | This variable holds the path of the checked items in strings separated by a dash(-). You can access the value dynamically using JS: `{{components.treeselect1.checkedPathStrings[2]}}`| + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/widgets/vertical-divider.md b/docs/versioned_docs/version-2.23.0/widgets/vertical-divider.md new file mode 100644 index 0000000000..769920cd73 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/widgets/vertical-divider.md @@ -0,0 +1,65 @@ +--- +id: vertical-divider +title: Vertical Divider +--- +# Vertical Divider + +Vertical Divider widget is used to add vertical separator between components. + +
+ +ToolJet - Widget Reference - Vertical divider + +
+ +## General +### Tooltip + +A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget. + +Under the General accordion, you can set the value in the string format. Now hovering over the widget will display the string as the tooltip. + +
+ +ToolJet - Widget Reference - Vertical divider + +
+ +## Layout + +
+ +ToolJet - Widget Reference - Vertical divider + +
+ +| properties | description | +| ----------- | ----------- | +| Show on Desktop | This property have toggle switch. If enabled, the divider will display in the desktop view else it will not appear. | +| Show on Mobile | This property have toggle switch. If enabled, the divider will display in the mobile view else it will not appear. | + +## Styles + +
+ +ToolJet - Widget Reference - Vertical divider + +
+ +| properties | description | +| ----------- | ----------- | +| Divider Color | It is used to set the color of the divider. Use hex code to set the background color. | +| Visibility | This property is used to set the visibility of the divider. The property accepts Boolean value. | + + +:::info +Any property having `Fx` button next to its field can be **programmatically configured**. +::: + +## Exposed variables + +There are currently no exposed variables for the component. + +## Component specific actions (CSA) + +There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component. diff --git a/docs/versioned_docs/version-2.23.0/workflows/logs.md b/docs/versioned_docs/version-2.23.0/workflows/logs.md new file mode 100644 index 0000000000..9e8aa33c34 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/workflows/logs.md @@ -0,0 +1,12 @@ +--- +id: logs +title: Logs +--- + +Once you execute the workflow by clicking on the **Run** button, the logs panel will reflect the execution details of each node. Logs let you easily track the order of execution and check whether the execution of individual nodes is successful. You can click on the top bar of the logs panel to expand or minimize it. + +
+ Logs Preview +
+ +In the above screenshot, we can see the start time and end time for all the nodes along with their names and a message that highlights whether the node was successfully executed or failed. Additionally, logs can also highlight detailed messages to expand on any errors that may occur during execution. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/workflows/nodes.md b/docs/versioned_docs/version-2.23.0/workflows/nodes.md new file mode 100644 index 0000000000..ec97cafeca --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/workflows/nodes.md @@ -0,0 +1,64 @@ +--- +id: nodes +title: Types of Nodes +--- + +Nodes are a graphical representation of each process in a workflow. Each node in the workflow passes over the result to the next node. Every new workflow will have two nodes - **Start Trigger** and **Result**. The **Start Trigger** node triggers the workflow to run. Once the workflow execution is completed, the resulting data is stored in the **Result** node type. + +Apart from the default **Start Trigger** and **Result** nodes, there are an array of nodes that you can add to the canvas. They can be broadly divided into four types - **JavaScript**, **If condition**, **Data sources** and **REST API**. Let's take a closer look at each node. + +## JavaScript + +The **JavaScript** node lets you write custom JavaScript code than runs on the server side. Server-side execution of code protects sensitive logic and data from exposure to the client and improves performance by offloading complex computations from the client. You can use the JavaScript code to transform data, create alert messages and more. The code you enter in each JavaScript node needs a **return** statement to ensure that the result is sent to the next node. + +
+ JavaScript Node +
+ +## If condition +The **If condition** node can have one or two incoming flows and two outgoing flows. If it has two incoming flows, it'll only trigger after the execution of both the incoming flows is completed. + +The **If condition** node triggers one of the outgoing flows depending on the given logical expression. If the expression evaluates to true, it activates the flow connected to the green circle. Conversely, if it's false, the flow linked to the red circle will be activated. + +
+ If Condition Node +
+
+
+
+

+ - If you click on the If condition node, a dialog box will appear on the right that accepts a logical expression. +
+
+ - The If condition node can be handy when you want to run flows based on the data received or create alert messages based on success or failure of certain nodes. +

+
+
+ If condition configuration +
+
+
+ +## Data Sources +In the flow builder of ToolJet, all the data sources you've set up will appear as nodes. These nodes can be utilised to perform intricate queries on your data sources, establish connections with APIs, send emails and messages, and more. + +
+ Datasources and Other Services +
+ +Each node type will have a different configuration based on the function it performs. For example, a **Twilio** node might come with the relevant fields needed to send an SMS, while a **PostgreSQL** node will have a query field to retrieve the data. + +
+ Twilio and Postgres Configuration +
+ +## REST API + +The **REST API** node acts as a bridge to connect with RESTful web services. By leveraging standard HTTP methods like GET, POST, PUT, and DELETE, the REST API node ensures smooth communication with web services, making data integration and manipulation more efficient and straightforward. + +
+ Rest API Configuration +
+ + + diff --git a/docs/versioned_docs/version-2.23.0/workflows/overview.md b/docs/versioned_docs/version-2.23.0/workflows/overview.md new file mode 100644 index 0000000000..5344f79f62 --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/workflows/overview.md @@ -0,0 +1,231 @@ +--- +id: overview +title: Overview +--- +
Available on: Paid plans
+
+ +ToolJet Workflows is a visual, node-based platform tailored for data-centric automation tasks. With its intuitive design, users can create detailed queries across diverse data sources, manage conditional flows, and execute custom JavaScript code while making the processes presentable and easy to manage. + +
+ Workflows Preview +
+ +Whether you're delving into data integration, generating detailed reports, or ensuring rigorous validation, ToolJet Workflows is your go-to solution. + +:::danger +You're currently exploring the beta version of ToolJet Workflows. Please be aware that this version is experimental, and is not recommended for production use at the moment. +::: + +## Quickstart Guide + +This introductory guide will help you understand the basics of ToolJet Workflows. We'll create a workflow that fetches the sales data from the database, transforms the data using JavaScript and sends an SMS notification to the Sales Manager using Twilio. The workflow will also conditionally return a success/failure message that can be used in a ToolJet Application to show a pop-up alert. + +:::info +All data sources that are configured in **Global Datasources** will be available in Workflows. +::: + +To create a new workflow, click on the workflow icon in the left sidebar and click on the **Create New Workflow** button. You'll be taken to the flow builder with a new workflow. Let's start by renaming the workflow to *Quickstart Guide*. + +
+ Create New Workflow +
+ +The new workflow will have two nodes on the canvas - **Start Trigger** and **Result**. Nodes are a graphical representation of each process in a workflow. + +Click on the blue circle on the **Start trigger** node and drag it to create a new node. Then select **PostgreSQL** node. + +
+ Create New PostgreSQL Node +
+ +For this guide, we've created a MonthlySales table in PostgreSQL with 5 columns - *SalesID, ProductID, Month, UnitsSold* and *Total Revenue*. We've also configured Twilio to send an SMS notification. + +We can now see a node named *postgresql1* connected to the outgoing flow of the **Start trigger** node on the canvas. Click on the *postgresql1* node, a dialog box will show up on the right. + +
+
+

+ - Click on the input field next to the PostgreSQL logo and rename the node to fetchSalesData. +
+
+ - There are two dropdowns right below the name field. The first dropdown lets you pick from a list of available nodes. The second dropdown lets you pick between SQL mode and GUI mode to frame your query. +
+
+ - We will stick to SQL mode for our example. +
+
+ - Below the two dropdowns we have an input field to write our SQL query, we'll enter the below query in the input field to fetch the required data: +
+ SELECT ProductID, Month, UnitsSold, TotalRevenue FROM MonthlySales; +
+
+ - If you click on the Run button in the top bar, the results field at the bottom will be populated with the result of the query. +

+
+
+ New Table +
+
+
+ +Create an outgoing flow from the *fetchSalesData* node that we just created by clicking on the blue circle on its right. Select the **JavaScript** node and rename it to *createNotification*. + +
+ Create New JavaScript Node +
+ +The **JavaScript** node lets you run JavaScript code to transform data and perform other tasks. The JavaScript code executes on the server side to protect sensitive logic and data from exposure to the client. In our example, we are using it to convert the result from the previous node into a string. + +
+
+

+ - In the JavaScript node, the data retrieved from the fetchSalesData node can be accessed using the property - fetchSalesData.data. +
+
+ - Additionally, to determine the execution status (success or failure) of the node, refer to the fetchSalesData.status property. +
+
+ - It is important to use a return statement in the JavaScript node to ensure that the node returns some data after the code executes. +

+
+
+ JavaScript Node Configuration +
+
+
+ +We'll use the following code in the *createNotification* node to format our notification. Note that we are using a **return** statement to make sure that we are returning the data for the next node. +```js +const notification = fetchSalesData.data.map(sale => { + return`Product ID ${sale.productid} sold + ${sale.unitssold} units this month. + Total Revenue: ${sale.totalrevenue}.`; + }).join(' '); + +return notification; +``` + +Now that we are ready with our notification text, let's create a way to send it using Twilio. + +Create an outgoing flow from the *createNotification* node and select the **Twilio** node. Rename the node to *sendSMS*. Click on the **Operation** dropdown and select **Send SMS** and then enter a number in the **To Number** field. + +In the **Body** field of the *sendSMS* node, we will retreive the data returned from the *createNotification* node. Since *createNotification* only returns a string, simply enter the name of the node as shown below to access it: +```js +{{createNotification}} +``` + +Click on the **Run** button on the top right to test our workflow. The **Logs** panel at the bottom will expand with details of each node execution. Logs give a quick overview of errors, execution start time, execution end time and success/failure of each node. Click on top bar of the Logs panel to expand or minimize it. + +
+ Send SMS trigger +
+ +In the above screenshot, Logs indicate that all three nodes have successfully executed. The *sendSMS* node has sent an SMS notification to the entered number. + +
+ Send SMS trigger +
+
+ +Click on the *sendSMS* node and look at the **Results**. Under the **data** property, we can see an **errorMessage** identifier. The **errorMessage** will be null for the messages that are successfully sent to the intended number. + +
+ Send SMS result +
+
+ +Referring to the **errorMessage** identifier of the *sendSMS* node, we'll use the **If condition** node to end the workflow with a success or failure message. Create an outgoing flow from the *sendSMS* node and select **If condition**. The If condition node can have one or two incoming flows and two outgoing flows. For our use-case we need just one incoming flow. + +The **If condition** node accepts a logical expression and evaluates it. The outgoing flow connected to the green circle will execute if the logical expression is evaluated to `true`, and the one with the red circle will execute if the logical expression is evaluated to `false`. + +
+ If condition flow +
+
+ +Click on the **If condition** node, a dialog box will appear on the right. + +
+
+

+ - Enter the below logical expression in the input area:
+ sendSMS.data.errorMessage == null +
+
+ - The If condition node will return true if errorMessage is null. In case an error message is present, it'll return false. +
+
+ - We can now configure two outgoing flows, one of which will be executed based on the provided logical expression. +

+
+
+ If Condition Configuration +
+
+
+ +Click on the green circle on the **If condition** node and drag it, select a new **JavaScript node** and rename it to *successMessage*. Similarly, create one outgoing flow from the red circle and select a JavaScript node. Rename it to *failureMessage*. + +
+ Success and Failure Nodes +
+ +Click on the *successMessage* node, and enter the below code. + +```js +return "Success: Message delivered" +``` + +Similarly, click on the *failureMessage* node and enter the below code + +```js +return "Error: Message Not Sent" +``` + +Note that we are using the return statement in both the newly created JavaScript nodes. Without a return statement, the nodes will not return any data. Click on the **Run** button to execute the workflow. + +
+ Create New Workflow +
+ +Check the logs. All the nodes should get executed sequentially. The *successMessage* or *failureMessage* node will get executed based on the evaluation of the **If condition** node. + +With this basic workflow, we've essentially isolated a complex data-centric task and made it presentable and reusable. First we used a **PostgreSQL** node to fetch the sales data from our table. Using the **JavaScript** node, we transformed that data and returned a string that can be used for our SMS notification. Then we used **Twilio** to send the notification via SMS, followed by the **If else** node to return a success or failure message. + +You can now use this workflow in your ToolJet Application from the query panel. In your application, simply click on the **+ Add** button in the query panel and select **Run Workflow**. Then select **Quickstart Guide** in the **Workflow** dropdown. Rename the query to *sendNotification*. + +
+ Add workflow to application +
+
+ +We'll now run the workflow whenever a **Button** is clicked. + +Select a **Button** component, click on **Add handler** under **Events**. Leave the **Event** as **On click** and select **Run Query** as **Action**. For the **Query** dropdown under **Action Options**, select the *sendNotification* query that we have created in the previous step using our *Quickstart Guide* workflow. + +
+ Configure send notification button +
+
+ +Let's add another **Event** to the button. We'll keep the action as **Show Alert** for this event and add the below code to the **Message** property. +```js +{{queries.sendNotification.data.successMessage || +queries.sendNotification.data.failureMessage}} +``` +The above code will return success or failure message based on the output we receive from the *Quickstart Guide* workflow. Now, every time we press the button, an SMS containing the sales data will be sent, and an alert message will appear. + +
+ Configure send notification button +
+
+ +We've now successfully used a workflow in our ToolJet Application. + +Continue learning about the different elements of ToolJet Workflows using the below links: + +**[Types Of Nodes](/docs/workflows/nodes)**
+**[Overview of Logs](/docs/workflows/logs)**
+**[Permissions in Workflows](/docs/workflows/permissions)** + diff --git a/docs/versioned_docs/version-2.23.0/workflows/permissions.md b/docs/versioned_docs/version-2.23.0/workflows/permissions.md new file mode 100644 index 0000000000..db6f6485df --- /dev/null +++ b/docs/versioned_docs/version-2.23.0/workflows/permissions.md @@ -0,0 +1,45 @@ +--- +id: permissions +title: Permissions +--- + +Permissions in **ToolJet Workflows** provide a structured approach to access control, ensuring precise management of who can view, edit, or execute workflows. The below table gives a detailed summary of permissions in context of ToolJet Workflows. + +| User Group | Workflows Dashboard Access | Create/Edit Workflows | Execute Workflows | Using Workflows in Tooljet App Builder | Enable/Disable Workflows | +|:------------------------------------:|:-----------------:|:--------:|:----------:|:------------:|:-------------:| +| **Admins** | ✅ | ✅ | ✅ | ✅ | ✅ | +| **Groups with App Editing Permissions** | ❌ | ❌ | ✅ | ✅ | ❌ | +| **End Users** | ❌ | ❌ | ✅ | ❌ | ❌ | + + +## Admins +**Admins** can create, edit, and manage workflows, access the workflow dashboard and flow builder, and use them in ToolJet's **App Builder**. They also have the option to use the **Enable** toggle on the top-right to enable or disable the execution of workflows in ToolJet applications. + +
+ Workflows Disable +
+ +## Groups with App Editing Permissions +**Groups with App Editing Permissions** can use the existing workflows in ToolJet's **App Builder**. + +Example: +Imagine a company using ToolJet to build internal applications. The HR department wants to integrate a new workflow that triggers an automated email when an employee's leave request is approved. A member of the **Groups with App Editing Permissions** can: + +- Add a button named *Approve Leave* in the app builder interface. +- Link this button to an existing workflow which sends an automated email. +- Design a chart that displays the number of leaves approved monthly using another workflow that provides the relevant data. + +While they can harness existing workflows and integrate them into app functionalities, Groups with App Editing Permissions can't create or modify the workflows themselves like **Admins**. + +## End Users + +**End Users** can only execute workflows in the application. + +Example: +Taking the same company scenario, an employee(end user) from the Sales department logs into the ToolJet-based internal application to request annual leave. Here's their interaction: + +- The employee fills in a *Leave Request* form. +- Upon submission, they click the *Request Leave* button (which is linked to a workflow that sends this request to the HR department). +- Once HR approves the leave using the *Approve Leave* button (created by the "Groups with App Editing Permissions"), the employee receives an automated email notification, which is triggered by another workflow. + + diff --git a/docs/versioned_sidebars/version-2.23.0-sidebars.json b/docs/versioned_sidebars/version-2.23.0-sidebars.json new file mode 100644 index 0000000000..270805f7c5 --- /dev/null +++ b/docs/versioned_sidebars/version-2.23.0-sidebars.json @@ -0,0 +1,425 @@ +{ + "docs": [ + "getting-started", + { + "type": "category", + "label": "Setup", + "link": { + "type": "doc", + "id": "setup/index" + }, + "items": [ + "setup/try-tooljet", + "setup/digitalocean", + "setup/docker", + "setup/ec2", + "setup/ecs", + "setup/openshift", + "setup/helm", + "setup/kubernetes", + "setup/kubernetes-gke", + "setup/kubernetes-aks", + "setup/azure-container", + "setup/google-cloud-run", + "setup/client", + "setup/env-vars", + "setup/http-proxy", + "setup/tooljet-subpath", + "setup/v2-migration-guide" + ] + }, + "tooljet-database", + "tooljet-copilot", + { + "type": "category", + "label": "Datasource Catalog", + "items": [ + "data-sources/overview", + { + "type": "category", + "label": "Datasources library", + "items": [ + "data-sources/airtable", + "data-sources/s3", + "data-sources/amazonses", + "data-sources/appwrite", + "data-sources/athena", + "data-sources/azureblob", + "data-sources/baserow", + "data-sources/bigquery", + "data-sources/firestore", + "data-sources/clickhouse", + "data-sources/cosmosdb", + "data-sources/couchdb", + "data-sources/dynamodb", + "data-sources/elasticsearch", + "data-sources/gcs", + "data-sources/google.sheets", + "data-sources/graphql", + "data-sources/grpc", + "data-sources/influxdb", + "data-sources/mailgun", + "data-sources/mariadb", + "data-sources/minio", + "data-sources/mongodb", + "data-sources/mssql", + "data-sources/mysql", + "data-sources/n8n", + "data-sources/notion", + "data-sources/openapi", + "data-sources/oracledb", + "data-sources/postgresql", + "data-sources/redis", + "data-sources/restapi", + "data-sources/rethinkdb", + "data-sources/run-js", + "data-sources/run-py", + "data-sources/saphana", + "data-sources/sendgrid", + "data-sources/slack", + "data-sources/smtp", + "data-sources/snowflake", + "data-sources/stripe", + "data-sources/twilio", + "data-sources/typesense", + "data-sources/woocommerce", + "data-sources/zendesk" + ] + }, + "tutorial/transformations" + ] + }, + { + "type": "category", + "label": "Components Catalog", + "items": [ + "widgets/overview", + { + "type": "category", + "label": "Components library", + "items": [ + "widgets/bounded-box", + "widgets/button", + "widgets/button-group", + "widgets/calendar", + "widgets/chart", + "widgets/checkbox", + "widgets/circular-progress-bar", + "widgets/code-editor", + "widgets/color-picker", + "widgets/container", + "widgets/custom-component", + "widgets/date-range-picker", + "widgets/datepicker", + "widgets/divider", + "widgets/dropdown", + "widgets/file-picker", + "widgets/form", + "widgets/html", + "widgets/icon", + "widgets/iframe", + "widgets/image", + "widgets/kanban", + "widgets/link", + "widgets/listview", + "widgets/map", + "widgets/modal", + "widgets/multiselect", + "widgets/number-input", + "widgets/password-input", + "widgets/pdf", + "widgets/pagination", + "widgets/qr-scanner", + "widgets/radio-button", + "widgets/range-slider", + "widgets/rich-text-editor", + "widgets/spinner", + "widgets/star-rating", + "widgets/statistics", + "widgets/steps", + "widgets/svg-image", + "widgets/table", + "widgets/tabs", + "widgets/tags", + "widgets/text-input", + "widgets/text", + "widgets/textarea", + "widgets/timeline", + "widgets/timer", + "widgets/toggle-switch", + "widgets/tree-select", + "widgets/vertical-divider" + ] + }, + { + "type": "category", + "label": "Actions Reference", + "link": { + "type": "generated-index", + "title": "Actions Reference", + "description": "All the actions that can be performed through event handlers", + "keywords": [ + "actions", + "events" + ] + }, + "items": [ + "actions/show-alert", + "actions/logout", + "actions/run-query", + "actions/open-webpage", + "actions/go-to-app", + "actions/show-modal", + "actions/close-modal", + "actions/copy-to-clipboard", + "actions/set-localstorage", + "actions/generate-file", + "actions/set-table-page", + "actions/set-variable", + "actions/unset-variable", + "actions/switch-page", + "actions/set-page-variable", + "actions/unset-page-variable", + "actions/control-component" + ] + } + ] + }, + "dashboard", + { + "type": "category", + "label": "App Builder", + "items": [ + "app-builder/overview", + "app-builder/topbar", + "app-builder/share", + "app-builder/canvas", + "app-builder/left-sidebar", + "app-builder/components-library", + "app-builder/query-panel", + "tutorial/pages", + "app-builder/customstyles", + "tutorial/keyboard-shortcuts" + ] + }, + { + "type": "category", + "label": "Workflows", + "items": [ + "workflows/overview", + "workflows/nodes", + "workflows/permissions", + "workflows/logs" + ] + }, + { + "type": "category", + "label": "Org Management", + "items": [ + { + "type": "category", + "label": "User Authentication", + "link": { + "type": "generated-index", + "title": "User Authentication", + "description": "Guides for setting up User Authentication and managing Single Sign-On", + "keywords": [ + "SSO", + "authentication" + ] + }, + "collapsed": true, + "items": [ + "user-authentication/user-lifecycle", + "user-authentication/general-settings", + "user-authentication/password-login", + { + "type": "category", + "label": "SSO", + "items": [ + "user-authentication/sso/github", + "user-authentication/sso/google", + { + "type": "category", + "label": "OpenId Connect", + "link": { + "type": "generated-index", + "title": "OpenId Connect", + "description": " ", + "keywords": [ + "okta", + "openid", + "azureAD" + ] + }, + "collapsed": false, + "items": [ + "user-authentication/sso/openid/setup", + "user-authentication/sso/openid/azuread", + "user-authentication/sso/openid/okta", + "user-authentication/sso/openid/google-openid" + ] + }, + "user-authentication/sso/ldap", + "user-authentication/sso/saml" + ] + } + ] + }, + { + "type": "category", + "label": "Workspaces", + "items": [ + "org-management/workspaces/workspace_overview", + "org-management/workspaces/workspace-variables", + "org-management/workspaces/workspace_constants" + ] + }, + "org-management/permissions", + "tutorial/manage-users-groups", + "Enterprise/audit_logs", + "Enterprise/white-label", + "Enterprise/superadmin", + "org-management/licensing" + ] + }, + { + "type": "category", + "label": "Release Management", + "items": [ + "release-management/multi-environment", + "tutorial/versioning-and-release" + ] + }, + { + "type": "category", + "label": "Marketplace", + "link": { + "type": "generated-index", + "title": "Marketplace", + "keywords": [ + "Marketplace", + "Marketplace for plugins", + "Using Marketplace", + "Build plugins for marketplace" + ] + }, + "collapsed": true, + "items": [ + "marketplace/marketplace-overview", + { + "type": "category", + "label": "Marketplace Plugins", + "items": [ + "marketplace/plugins/marketplace-plugin-textract", + "marketplace/plugins/marketplace-plugin-github", + "marketplace/plugins/marketplace-plugin-harperdb", + "marketplace/plugins/marketplace-plugin-openai", + "marketplace/plugins/marketplace-plugin-plivo" + ] + } + ] + }, + { + "type": "category", + "label": "How To", + "link": { + "type": "generated-index", + "title": "How To Guides", + "description": "How To Guides for all the things ToolJet", + "keywords": [ + "how to" + ] + }, + "items": [ + "how-to/use-inspector", + "how-to/use-form-component", + "how-to/access-cellvalue-rowdata", + "how-to/bulk-update-multiple-rows", + "how-to/delete-multiple-rows", + "how-to/use-server-side-pagination", + "how-to/access-currentuser", + "how-to/use-axios-in-runjs", + "how-to/import-external-libraries-using-runpy", + "how-to/import-external-libraries-using-runjs", + "how-to/run-actions-from-runjs", + "how-to/intentionally-fail-js-query", + "how-to/run-query-at-specified-intervals", + "how-to/use-to-py-function-in-runpy", + "how-to/access-users-location", + "how-to/use-s3-signed-url-to-upload-docs", + "how-to/s3-custom-endpoints", + "how-to/upload-files-aws", + "how-to/upload-files-gcs", + "how-to/loading-image-pdf-from-db" + ] + }, + { + "type": "category", + "label": "Contributing Guide", + "link": { + "type": "generated-index", + "title": "Contributing Guide", + "description": "Guides for contributing to ToolJet", + "keywords": [ + "contribute", + "contributing" + ] + }, + "collapsed": false, + "items": [ + "contributing-guide/setup/architecture", + { + "type": "category", + "label": "Setup", + "items": [ + "contributing-guide/setup/macos", + "contributing-guide/setup/docker", + "contributing-guide/setup/ubuntu", + "contributing-guide/setup/windows" + ] + }, + { + "type": "category", + "label": "Marketplace", + "items": [ + "contributing-guide/marketplace/marketplace-setup", + "contributing-guide/marketplace/creating-a-plugin" + ] + }, + "tooljet-cli", + "contributing-guide/testing", + "contributing-guide/l10n", + { + "type": "category", + "label": "Troubleshooting", + "items": [ + "contributing-guide/troubleshooting/eslint", + "contributing-guide/troubleshooting/runpy-limitations" + ] + }, + "contributing-guide/code-of-conduct", + "contributing-guide/slackcoc" + ] + }, + "security", + "tracking", + { + "type": "category", + "label": "Project Overview", + "collapsed": false, + "items": [ + { + "type": "link", + "label": "Releases", + "href": "https://github.com/ToolJet/ToolJet/releases" + }, + { + "type": "link", + "label": "Roadmap", + "href": "https://github.com/tooljet/tooljet/milestones" + } + ] + } + ] +} diff --git a/docs/versions.json b/docs/versions.json index f1d9a63c13..9a3cd6a7dc 100644 --- a/docs/versions.json +++ b/docs/versions.json @@ -1,4 +1,5 @@ [ + "2.23.0", "2.22.0", "2.19.0", "2.18.0", From 74e06878b5a98cd7942dfc5806992d36b8b0e4aa Mon Sep 17 00:00:00 2001 From: Karan Rathod Date: Fri, 10 Nov 2023 09:56:49 +0530 Subject: [PATCH 28/63] [refactor]:update labels for components configuration panel (#8130) * update labels for components * fix a spelling --- frontend/assets/translations/en.json | 100 +++++++++++++-------------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/frontend/assets/translations/en.json b/frontend/assets/translations/en.json index ff9826036e..d5a8591367 100644 --- a/frontend/assets/translations/en.json +++ b/frontend/assets/translations/en.json @@ -502,8 +502,8 @@ "commonProperties": { "visibility": "Visibility", "disable": "Disable", - "borderRadius": "Border Radius", - "boxShadow": "Box Shadow", + "borderRadius": "Border radius", + "boxShadow": "Box shadow", "tooltip": "Tooltip", "showOnDesktop": "Show on desktop", "showOnMobile": "Show on mobile", @@ -511,7 +511,7 @@ "backgroundColor": "Background Color", "textColor": "Text color", "loaderColor": "Loader color", - "defaultValue": "Default Value", + "defaultValue": "Default value", "placeholder": "Placeholder", "label": "Label", "title": "Title", @@ -519,7 +519,7 @@ "data": "Data", "tableData": "Table data", "tableColumns": "Table columns", - "loadingState": "Loading State", + "loadingState": "Loading state", "serverSidePagination": "Server-side pagination", "clientSidePagination": "Client-side pagination", "serverSideSearch": "Server-side search", @@ -529,20 +529,20 @@ "showBulkUpdateActions": "Show update buttons", "bulkSelection": "Bulk selection", "highlightSelectedRow": "Highlight selected row", - "actionButtonRadius": "Action Button Radius", + "actionButtonRadius": "Action button radius", "tableType": "Table type", "cellSize": "Cell size", "setPage": "Set page", "page": "Page", - "buttonText": "Button Text", + "buttonText": "Button text", "click": "Click", "setText": "Set text", "text": "Text", "markerColor": "Marker color", - "showAxes": "Show axes", + "showAxes": "Show axis", "showGridLines": "Show grid lines", "chartType": "Chart type", - "jsonDescription": "Json Description", + "jsonDescription": "JSON description", "usePlotlyJsonSchema": "Use Plotly JSON schema", "padding": "Padding", "hideTitleBar": "Hide title bar", @@ -564,47 +564,47 @@ "disabledDates": "Disabled dates", "setChecked": "Set checked", "status": "status", - "defaultStatus": "Default Status", - "checkboxColor": "Checkbox Color", + "defaultStatus": "Default status", + "checkboxColor": "Checkbox color", "optionValues": "Option values", "optionLabels": "Option labels", - "activeColor": "Active Color", + "activeColor": "Active color", "selectOption": "Select option", "option": "Option", - "toggleSwitchColor": "Toggle Switch Color", + "toggleSwitchColor": "Toggle switch color", "defaultStartDate": "Default start date", "defaultEndDate": "Default end date", - "textSize": "Text Size", - "alignText": "Align Text", + "textSize": "Text size", + "alignText": "Align text", "url": "URL", "alternativeText": "Alternative text", "zoomButton": "Zoom button", "borderType": "Border type", "imageFit": "Image fit", "optionsLoadingState": "Options loading state", - "selectedTextColor": "Selected Text Color", + "selectedTextColor": "Selected text color", "select": "Select", - "deselectOption": "Deselect Option", + "deselectOption": "Deselect option", "clearSelections": "Clear selections", - "enableSelectAllOption": "Enable select All option", + "enableSelectAllOption": "Enable select all option", "initialLocation": "Initial location", "defaultMarkers": "Default markers", "addNewMarkers": "Add new markers", "searchForPlaces": "Search for places", - "setLocation": "Set Location", + "setLocation": "Set location", "latitude": "Latitude", "longitude": "Longitude", "numberOfStars": "Number of stars", "defaultNoOfSelectedStars": "Default no of selected stars", "enableHalfStar": "Enable half star", "tooltips": "Tooltips", - "starColor": "Star Color", - "labelColor": "Label Color", - "dividerColor": "Divider Color", - "clearFiles": "Clear Files", - "instructionText": "Instruction Text", - "useDropZone": "Use Drop zone", - "useFilePicker": "Use File Picker", + "starColor": "Star color", + "labelColor": "Label color", + "dividerColor": "Divider color", + "clearFiles": "Clear files", + "instructionText": "Instruction text", + "useDropZone": "Use drop zone", + "useFilePicker": "Use file picker", "pickMultipleFiles": "Pick multiple files", "maxFileCount": "Max file count", "acceptFileTypes": "Accept file types", @@ -625,12 +625,12 @@ "showPopoverWhenEventIsClicked": "Show popover when event is clicked", "cellSizeInViewsClassifiedByResource": "Cell size in views classified by resource", "headerDateFormatOnWeekView": "Header date format on week view", - "showLineNumber": "Show Line Number", + "showLineNumber": "Show line number", "mode": "Mode", "tabs": "Tabs", "defaultTab": "Default tab", - "hideTabs": "Hide Tabs", - "highlightColor": "Highlight Color", + "hideTabs": "Hide tabs", + "highlightColor": "Highlight color", "tabWidth": "Tab width", "setCurrentTab": "Set current tab", "id": "Id", @@ -643,10 +643,10 @@ "defaultPageIndex": "Default page index", "progress": "Progress", "color": "Color", - "strokeWidth": "Stroke Width", - "counterClockwise": "Counter Clockwise", - "circleRatio": "Circle Ratio", - "colour": "Colour", + "strokeWidth": "Stroke width", + "counterClockwise": "Counter clockwise", + "circleRatio": "Circle ratio", + "colour": "Color", "size": "Size", "primaryValueLabel": "Primary value label", "primaryValue": "Primary value", @@ -654,10 +654,10 @@ "secondaryValueLabel": "Secondary value label", "secondaryValue": "Secondary value", "secondarySignDisplay": "Secondary sign display", - "primaryLabelColour": "Primary Label Colour", - "primaryTextColour": "Primary Text Colour", - "secondaryLabelColour": "Secondary Label Colour", - "secondaryTextColour": "Secondary Text Colour", + "primaryLabelColour": "Primary label color", + "primaryTextColour": "Primary text color", + "secondaryLabelColour": "Secondary label color", + "secondaryTextColour": "Secondary text color", "min": "Min", "max": "Max", "value": "Value", @@ -666,7 +666,7 @@ "handleColor": "Handle color", "trackColor": "Track color", "timelineData": "Timeline data", - "hideDate": "Hide Date", + "hideDate": "Hide date", "svgData": "Svg data", "rawHtml": "Raw HTML", "values": "values", @@ -683,16 +683,16 @@ "stepsSelectable": "Steps selectable", "theme": "Theme", "columns": "Columns", - "cardData": "Card Data", - "enableAddCard": "Enable Add Card", + "cardData": "Card data", + "enableAddCard": "Enable add card", "width": "Width", - "minWidth": "Min Width", + "minWidth": "Min width", "accentColor": "Accent color", - "defaultColor": "Default Color", - "setColor": "Set Color", + "defaultColor": "Default color", + "setColor": "Set color", "structure": "Structure", - "checkedValues": "Checked Values", - "expandedValues": "Expanded Values" + "checkedValues": "Checked values", + "expandedValues": "Expanded values" }, "Table": { "displayName": "Table", @@ -709,13 +709,13 @@ "customRule": "Custom rule", "values": "Values", "labels": "Labels", - "cellBgColor": "Cell Background Color", - "dateDisplayformat": "Date Display Format", - "dateParseformat": "Date Parse Format", + "cellBgColor": "Cell background color", + "dateDisplayformat": "Date display format", + "dateParseformat": "Date parse format", "showTime": "show time", "makeEditable": "make editable", - "buttonText": "Button Text", - "buttonPosition": "Button Position", + "buttonText": "Button text", + "buttonPosition": "Button position", "remove": "Remove", "addButton": "+ Add button", "addColumn": "Add column", @@ -948,4 +948,4 @@ "tip": "Back to Home" } } -} +} \ No newline at end of file From 0291ac0882429793da58a12d26330c8f3479ee07 Mon Sep 17 00:00:00 2001 From: Ajith KV Date: Tue, 14 Nov 2023 15:57:30 +0530 Subject: [PATCH 29/63] Add data-cy for error page component (#8152) --- frontend/src/_components/ErrorComponents/ErrorPage.jsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/src/_components/ErrorComponents/ErrorPage.jsx b/frontend/src/_components/ErrorComponents/ErrorPage.jsx index d14c2e852c..3dd5493bfd 100644 --- a/frontend/src/_components/ErrorComponents/ErrorPage.jsx +++ b/frontend/src/_components/ErrorComponents/ErrorPage.jsx @@ -45,8 +45,12 @@ export const ErrorModal = ({ errorMsg, ...props }) => { fill="#E54D2E" /> - {t('globals.static-error-modal.title', errorMsg?.title)} -

{t('globals.static-error-modal.description', errorMsg?.message)}

+ + {t('globals.static-error-modal.title', errorMsg?.title)} + +

+ {t('globals.static-error-modal.description', errorMsg?.message)} +

{errorMsg?.retry && ( @@ -62,6 +66,7 @@ export const ErrorModal = ({ errorMsg, ...props }) => { alignItems: 'center', }} onClick={() => window.history.back()} + data-cy="retry-button" > { From be643515ed768732906654ce9bef54174b2e8f4b Mon Sep 17 00:00:00 2001 From: Ajith KV Date: Tue, 14 Nov 2023 17:40:06 +0530 Subject: [PATCH 30/63] Added cypress test cases for redirection error page (#8150) --- cypress-tests/cypress/commands/apiCommands.js | 25 ++- .../cypress/constants/selectors/common.js | 5 +- .../e2e/authentication/forgotPassword.cy.js | 2 +- .../cypress/e2e/workspace/errorPage.cy.js | 175 ++++++++++++++++++ .../cypress/e2e/workspace/manageUsers.cy.js | 12 +- .../e2e/workspace/userPermissions.cy.js | 8 +- .../cypress/support/utils/manageUsers.js | 20 +- .../cypress/support/utils/userPermissions.js | 2 - 8 files changed, 227 insertions(+), 22 deletions(-) create mode 100644 cypress-tests/cypress/e2e/workspace/errorPage.cy.js diff --git a/cypress-tests/cypress/commands/apiCommands.js b/cypress-tests/cypress/commands/apiCommands.js index 193422ad0f..417618d788 100644 --- a/cypress-tests/cypress/commands/apiCommands.js +++ b/cypress-tests/cypress/commands/apiCommands.js @@ -180,4 +180,27 @@ Cypress.Commands.add("logoutApi", () => { expect(response.status).to.equal(200); }); }); -}); \ No newline at end of file +}); + +Cypress.Commands.add("userInviteApi", (userName, userEmail) => { + cy.getCookie("tj_auth_token").then((cookie) => { + cy.request( + { + method: "POST", + url: "http://localhost:3000/api/organization_users", + headers: { + "Tj-Workspace-Id": Cypress.env("workspaceId"), + Cookie: `tj_auth_token=${cookie.value}`, + }, + body: { + first_name: userName, + email: userEmail, + groups: [], + }, + }, + { log: false } + ).then((response) => { + expect(response.status).to.equal(201); + }); + }); +}); diff --git a/cypress-tests/cypress/constants/selectors/common.js b/cypress-tests/cypress/constants/selectors/common.js index a2bbd53cca..03e3d0c510 100644 --- a/cypress-tests/cypress/constants/selectors/common.js +++ b/cypress-tests/cypress/constants/selectors/common.js @@ -226,7 +226,10 @@ export const commonSelectors = { nameErrorText: '[data-cy="name-error-text"]', valueErrorText: '[data-cy="value-error-text"]', releaseButton: '[data-cy="button-release"]', - leftSideBarSettingsButton: '[data-cy="left-sidebar-settings-button"]' + leftSideBarSettingsButton: '[data-cy="left-sidebar-settings-button"]', + modalHeader: '[data-cy="modal-header"]', + modalDescription: '[data-cy="modal-description"]', + backToHomeButton: '[data-cy="back-to-home-button"]', }; export const commonWidgetSelector = { diff --git a/cypress-tests/cypress/e2e/authentication/forgotPassword.cy.js b/cypress-tests/cypress/e2e/authentication/forgotPassword.cy.js index a4638c58bd..0d022db8a0 100644 --- a/cypress-tests/cypress/e2e/authentication/forgotPassword.cy.js +++ b/cypress-tests/cypress/e2e/authentication/forgotPassword.cy.js @@ -12,7 +12,7 @@ describe("Password reset functionality", () => { let passwordResetLink = ""; before(() => { - cy.appUILogin(); + cy.defaultWorkspaceLogin(); addNewUserMW(data.firstName, data.email); logout(); }); diff --git a/cypress-tests/cypress/e2e/workspace/errorPage.cy.js b/cypress-tests/cypress/e2e/workspace/errorPage.cy.js new file mode 100644 index 0000000000..a5df0c3d1d --- /dev/null +++ b/cypress-tests/cypress/e2e/workspace/errorPage.cy.js @@ -0,0 +1,175 @@ +import { commonSelectors, commonWidgetSelector } from "Selectors/common"; +import { groupsSelector } from "Selectors/manageGroups"; + +import { fake } from "Fixtures/fake"; +import { + logout, + navigateToAppEditor, + navigateToManageGroups, + releaseApp, +} from "Support/utils/common"; +import { commonText } from "Texts/common"; +import { inviteUser } from "Support/utils/manageUsers"; +import { userSignUp } from "Support/utils/onboarding"; + +describe("App share functionality", () => { + const data = {}; + data.appName = `${fake.companyName} App`; + data.firstName = fake.firstName; + data.email = fake.email.toLowerCase(); + data.slug = data.appName.toLowerCase().replace(/\s+/g, "-"); + + beforeEach(() => { + cy.apiLogin(); + }); + before(() => { + cy.apiLogin(); + inviteUser(data.firstName, data.email); + + logout(); + }); + + it("Verify error modal in case of invalid app URL", () => { + cy.visit(`/applications/${data.lastName}`); + cy.get(commonSelectors.modalHeader).verifyVisibleElement( + "have.text", + "Invalid link" + ); + cy.get(commonSelectors.modalDescription).verifyVisibleElement( + "have.text", + "The link you provided is invalid. Please check the link and try again." + ); + cy.get(commonSelectors.backToHomeButton).verifyVisibleElement( + "have.text", + "Back to home page" + ); + cy.get(commonSelectors.backToHomeButton).click(); + cy.get(commonSelectors.pageSectionHeader).should("be.visible"); + cy.logoutApi(); + + cy.visit(`/applications/${data.lastName}`); + cy.get(commonSelectors.backToHomeButton).click(); + cy.get(commonSelectors.workEmailLabel).should("be.visible"); + + cy.apiLogin(data.email, "password"); + cy.visit(`/applications/${data.lastName}`); + }); + + it("Verify error message in case of restricted access", () => { + data.appName = `${fake.companyName} App`; + cy.apiCreateApp(data.appName); + cy.openApp(); + releaseApp(); + + cy.get(commonWidgetSelector.shareAppButton).click(); + cy.clearAndType(commonWidgetSelector.appNameSlugInput, data.slug); + cy.wait(1000); + cy.logoutApi(); + + cy.apiLogin(data.email, "password"); + cy.visit(`/applications/${data.slug}`); + + cy.get(commonSelectors.modalHeader).verifyVisibleElement( + "have.text", + "Restricted access" + ); + cy.get(commonSelectors.modalDescription).verifyVisibleElement( + "have.text", + "You don’t have access to this app. Kindly contact admin to know more." + ); + cy.get(commonSelectors.backToHomeButton).verifyVisibleElement( + "have.text", + "Back to home page" + ); + cy.url().should("eq", "http://localhost:8082/error/restricted"); + + cy.get(commonSelectors.backToHomeButton).click(); + cy.get(commonSelectors.pageSectionHeader).should("be.visible"); + }); + + it("Verify error modal for app url of unreleased apps", () => { + data.appName = `${fake.companyName} App`; + data.slug = data.appName.toLowerCase().replace(/\s+/g, "-"); + + cy.apiCreateApp(data.appName); + cy.openApp(); + cy.get(commonSelectors.leftSideBarSettingsButton).click(); + cy.get(commonWidgetSelector.appSlugInput).clear(); + cy.clearAndType(commonWidgetSelector.appSlugInput, data.slug); + cy.wait(1000); + + cy.visit(`http://localhost:8082/applications/${data.slug}`); + cy.get(commonSelectors.modalHeader).verifyVisibleElement( + "have.text", + "URL unavailable" + ); + cy.get(commonSelectors.modalDescription).verifyVisibleElement( + "have.text", + "This URL is not accessible because it has not been released yet. Please either release it or contact admin for access." + ); + cy.get(commonSelectors.backToHomeButton).verifyVisibleElement( + "have.text", + "Back to home page" + ); + cy.url().should("eq", "http://localhost:8082/error/url-unavailable"); + cy.get(commonSelectors.backToHomeButton).click(); + cy.get(commonSelectors.pageSectionHeader).should("be.visible"); + + cy.logoutApi(); + cy.apiLogin(data.email, "password"); + cy.wait(500); + + cy.visit(`http://localhost:8082/applications/${data.slug}`); + cy.get(commonSelectors.modalHeader).verifyVisibleElement( + "have.text", + "Restricted access" + ); + cy.get(commonSelectors.modalDescription).verifyVisibleElement( + "have.text", + "You don’t have access to this app. Kindly contact admin to know more." + ); + cy.get(commonSelectors.backToHomeButton).verifyVisibleElement( + "have.text", + "Back to home page" + ); + cy.url().should("eq", "http://localhost:8082/error/restricted"); + cy.get(commonSelectors.backToHomeButton).click(); + cy.get(commonSelectors.pageSectionHeader).should("be.visible"); + logout(); + + cy.defaultWorkspaceLogin(); + navigateToManageGroups(); + cy.wait(1000); + cy.get(groupsSelector.appSearchBox).click(); + cy.wait(500); + cy.get(groupsSelector.searchBoxOptions).contains(data.appName).click(); + cy.get(groupsSelector.selectAddButton).click(); + cy.get("table").contains("td", data.appName); + cy.contains("td", data.appName) + .parent() + .within(() => { + cy.get("td input").eq(1).check(); + }); + + cy.logoutApi(); + cy.apiLogin(data.email, "password"); + cy.wait(500); + + cy.visit(`http://localhost:8082/applications/${data.slug}`); + cy.get(commonSelectors.modalHeader).verifyVisibleElement( + "have.text", + "URL unavailable" + ); + cy.get(commonSelectors.modalDescription).verifyVisibleElement( + "have.text", + "This URL is not accessible because it has not been released yet. Please either release it or contact admin for access." + ); + cy.get(commonSelectors.backToHomeButton).verifyVisibleElement( + "have.text", + "Back to home page" + ); + cy.url().should("eq", "http://localhost:8082/error/url-unavailable"); + cy.get(commonSelectors.backToHomeButton).click(); + cy.get(commonSelectors.pageSectionHeader).should("be.visible"); + }); +}); diff --git a/cypress-tests/cypress/e2e/workspace/manageUsers.cy.js b/cypress-tests/cypress/e2e/workspace/manageUsers.cy.js index ae24e1c9e6..329b95260b 100644 --- a/cypress-tests/cypress/e2e/workspace/manageUsers.cy.js +++ b/cypress-tests/cypress/e2e/workspace/manageUsers.cy.js @@ -74,7 +74,9 @@ describe("Manage Users", () => { it("Should verify the confirm invite page and new user account", () => { common.navigateToManageUsers(); - users.inviteUser(data.firstName, data.email); + users.fillUserInviteForm(data.firstName, data.email); + cy.get(usersSelector.buttonInviteUsers).click(); + users.fetchAndVisitInviteLink(data.email) users.confirmInviteElements(); cy.clearAndType(commonSelectors.passwordInputField, "pass"); @@ -202,7 +204,13 @@ describe("Manage Users", () => { common.navigateToManageUsers(); users.fillUserInviteForm(data.firstName, data.email); - cy.get(".dropdown-heading-value > .gray").click(); + cy.wait(1500); + cy.get(".dropdown-heading-value > .gray").dblclick(); + cy.get("body").then(($body) => { + if (!$body.find(".search > input").length > 0) { + cy.get(".dropdown-heading-value > .gray").click(); + } + }); cy.clearAndType(".search > input", "Test"); cy.get(".no-options").verifyVisibleElement("have.text", "No options"); users.selectUserGroup("Admin"); diff --git a/cypress-tests/cypress/e2e/workspace/userPermissions.cy.js b/cypress-tests/cypress/e2e/workspace/userPermissions.cy.js index 87330fa9d9..96d665bcff 100644 --- a/cypress-tests/cypress/e2e/workspace/userPermissions.cy.js +++ b/cypress-tests/cypress/e2e/workspace/userPermissions.cy.js @@ -47,6 +47,7 @@ describe("User permissions", () => { it("Should verify the View and Edit permission", () => { common.navigateToManageGroups(); + cy.wait(1000); cy.get(groupsSelector.appSearchBox).click(); cy.get(groupsSelector.searchBoxOptions).contains(data.appName).click(); cy.get(groupsSelector.selectAddButton).click(); @@ -57,7 +58,7 @@ describe("User permissions", () => { cy.get("td input").first().should("be.checked"); }); - common.logout(); + cy.logoutApi(); cy.apiLogin(data.email, usersText.password); cy.visit("/my-workspace"); cy.wait(500) @@ -79,6 +80,7 @@ describe("User permissions", () => { cy.defaultWorkspaceLogin(); common.navigateToManageGroups(); + cy.wait(500) cy.contains("tr", data.appName) .parent() .within(() => { @@ -89,7 +91,7 @@ describe("User permissions", () => { "App permissions updated" ); - common.logout(); + cy.logoutApi(); cy.apiLogin(data.email, usersText.password); cy.visit("/my-workspace"); cy.wait(500) @@ -120,7 +122,7 @@ describe("User permissions", () => { it("Should verify the Create and Delete app permission", () => { data.appName = `${fake.companyName}-App`; cy.apiCreateApp(data.appName); - cy.visit('/my-workspace') + // cy.visit('/my-workspace') cy.wait(500); common.navigateToManageGroups(); diff --git a/cypress-tests/cypress/support/utils/manageUsers.js b/cypress-tests/cypress/support/utils/manageUsers.js index f5f5d980be..f88a3d9060 100644 --- a/cypress-tests/cypress/support/utils/manageUsers.js +++ b/cypress-tests/cypress/support/utils/manageUsers.js @@ -132,14 +132,10 @@ export const manageUsersElements = () => { }; export const inviteUser = (firstName, email) => { - fillUserInviteForm(firstName, email); - cy.get(usersSelector.buttonInviteUsers).click(); - // cy.verifyToastMessage( - // commonSelectors.toastMessage, - // usersText.userCreatedToast - // ); - cy.wait(1000) + cy.userInviteApi(firstName, email); fetchAndVisitInviteLink(email); + cy.clearAndType(commonSelectors.passwordInputField, "password"); + cy.get(commonSelectors.acceptInviteButton).click(); }; export const confirmInviteElements = () => { @@ -233,8 +229,8 @@ export const inviteUserWithUserGroup = (firstName, email, group1, group2) => { usersText.userCreatedToast ); // copyInvitationLink(firstName, email); - cy.wait(1000) - fetchAndVisitInviteLink(email) + cy.wait(1000); + fetchAndVisitInviteLink(email); cy.clearAndType(commonSelectors.passwordInputField, "password"); cy.get(commonSelectors.acceptInviteButton).click(); }; @@ -266,7 +262,7 @@ export const fillUserInviteForm = (firstName, email) => { }; export const selectUserGroup = (groupName) => { - cy.wait(1500) + cy.wait(1500); cy.get("body").then(($body) => { if (!$body.find(".search > input").length > 0) { cy.get(".dropdown-heading-value > .gray").click(); @@ -313,11 +309,11 @@ export const fetchAndVisitInviteLink = (email) => { organizationToken = resp.rows[1].invitation_token; url = `/invitations/${invitationToken}/workspaces/${organizationToken}?oid=${workspaceId}`; - common.logout(); + cy.logoutApi(); cy.wait(1000); cy.visit(url); }); }); }); }); -}; \ No newline at end of file +}; diff --git a/cypress-tests/cypress/support/utils/userPermissions.js b/cypress-tests/cypress/support/utils/userPermissions.js index 05f532d100..b93088b150 100644 --- a/cypress-tests/cypress/support/utils/userPermissions.js +++ b/cypress-tests/cypress/support/utils/userPermissions.js @@ -46,8 +46,6 @@ export const reset = () => { export const addNewUserMW = (firstName, email, companyName) => { common.navigateToManageUsers(); users.inviteUser(firstName, email); - cy.clearAndType(commonSelectors.passwordInputField, usersText.password); - cy.get(commonSelectors.acceptInviteButton).click(); cy.get(commonSelectors.workspaceName).verifyVisibleElement( "have.text", "My workspace" From a03b73d4a80aa9c8f9cb7a6e919e4aa8596f6740 Mon Sep 17 00:00:00 2001 From: Ganesh Kumar <40178541+ganesh8056@users.noreply.github.com> Date: Thu, 16 Nov 2023 12:12:57 +0530 Subject: [PATCH 31/63] Bugfix/App export should also export tables in join query - Design Review Changes (#7806) * basic and static join query executed * tooljetDB Join operation flow - work inprogress * complete flow for tooljetdb join pending testing and minor changes * updated constructHavingStatement method logic to support aggregation function and added comments * worki in progress tooljetDB Join * feat: added basic layout for tjdb join fields * feat: dropdown support for icons * feat: working on where condition ui in join * feat: added base layout for filter and sort in tooljetdb join * feat: added multi select support and minor style changes * feat: support default value for selectbox * feat: dd select styling added * style: override vanilla dd select styles with tj styles * fix: fixed minor UI issues in select box * feat: added select section layout * feat: added hooks state for join options * feat: load all added tables columns * feat: working on where section logic * feat: join constraints UI * feat: filter condition dropdowns added * feat: join widget for join query op in tjdb * feat: sort section base UI * feat: select widget for join query in tjdb * feat: filter section add option and delete option done * feat: update filter condition logic added * feat: added onchange event for operator and rhs values update * feat: added sort dropdown for tjdb join * feat: base logic for Filters in join query * fix: removed comments and added validation for fetching table details * feat: add limit option logic * feat: backend api has been integrated for tooljetdb joins * added icons to solid icons * fix: jsconfig auto save lint fix * fix: update from table when selected table changes * feat: added from to join table options in tjdb dq * fix: added fetching tables list for JSON in backend * fix: fixed json data for join query * fix: temp fix for fields with empty object * feat: added icon support for dd select * fix: added default state to avoid error in conditionlist * fix: limit tables selection to already joined tables in tjdb join * fix: empty values to orderBy, filters and limit will remove the option from json * fix: in json first level empty value scenario has been handled * fix: select in tooljetdb join query can have multiple columns with same name handled by adding prefix tablename_ to the column name * fix: restrict selectable tables in join contraints * feat: reset join constraints when invlaid joins added * fix: empty values will not be allowed UI validation * fix: codehinter border has been removed * fix: recalculate join data when join tables change * fix: corrected options length calc for showing search box * fix: filter table dropdown must contain only selected tables from join section * fix: empty values validation has been removed * fix: add from attribute to join options * fix: alias is added to all the table column * feat: selected option in Select section will be at the top * fix: reset joins when selected table changed * fix: drop down focus ui * feat: autoselect all columns by defualt for join select * feat: restrict column selection to same datatype * fix: removed blank table names from select * feat: added tooltip for info * fix: removed duplicate tooltip * fix: add button in table dropdown * fix: added from table object back * feat: tjdb join select dropdown select all cols by default * fix: add new table button name corrected * feat: no table selected error message * feat: add select style for select dropdown * style: updated dropdown select style to match new theme * feat: added alert modal for deleting joins * feat: hardcode operator since once one option available at the moment * style: fix icon styles for dropdown * feat: created reusable confirm dialogue * fix: fixed bug for nested dropdowns * fix; cache select components to prevent unnecessory rerenders * feat: reused the common popup on updating the tables * fix: info popup will trigger only if table is already exists * fix: fixed bug that caused edit to break for tjdb join * style: fixed spacing for tjdb join components * fix: select section all options cant be deselected issue fixed * fix: add info icon for empty filter and sort component * feat: offset fature for joins has been added * fix: layout fixed to incorporate filter dropdown with text * fix: basic validation in UI for mandatory and non-mandatory fields * feat: more options added for filter in joins * fix: added filter option for regular expression * fix: fixed wrong autoupdate of join fields * style: updated badge color w.r.t theme * fix: removed the commented code * style fixes * refactor: changed tooljetdb join logic based on tableId instead of name * fix: joins table value is not been shown after save * fix: CSS design fix and removed not required commented codes * feat: tableid to table name mapping in error * fix: errors will be shown in the debugger for tooljetdb join * stylefix: container for join sort and select made full width * stylefix: changed CTA test in popup spacing issue adjusted * fix: few PR review comments to refactor has been done * fix:random id generator has been removed and uuid has been used * feat: Select all functionality in Select Drop down has been added * fix: first time AND operator has been removed * fix:Sort Section - Removed table were listed in the drop down * fix: add more in join section deleting newly created joins * fix: select section total selected count was wrong * stylefix: dropdown menu height has been reduced * fix: sort section on join query will have prefix table name along with column name * feat: changed the select drop down with add new table option * fix: center align text only for join operator drop down * fix join icons to be centred * reduce chevron icon size * fix:error handling by status code * feat: added placeholder for empty select box * fix: fixed the PR comments * stylefix:multi select with checkbox will not have tick and bgcolor * stylefix: codehinter doesnt expand entire row content * stylefix: codehinter placeholder is center aligned scroll has been removed and overflow content has been handled * stylefix: codehinter font size made to 12 * feat: offset option for list rows in tjdb query * inprogress: tjdb joins tables must be exported * Updated cypess mysql spec (#7717) * fix: import app missed the tjdb tables in join query --------- Co-authored-by: Johnson Cherian Co-authored-by: Akshay Sasidharan Co-authored-by: Mekhla Asopa <59684099+Mekhla-Asopa@users.noreply.github.com> --- .../TooljetDatabase/DropDownSelect.jsx | 7 +- .../TooljetDatabase/JoinConstraint.jsx | 77 +++++++++++++---- .../TooljetDatabase/JoinSelect.jsx | 18 +++- .../QueryEditors/TooljetDatabase/JoinSort.jsx | 15 ++-- .../TooljetDatabase/JoinTable.jsx | 78 +++++++++++------ .../QueryEditors/TooljetDatabase/ListRows.jsx | 21 ++++- .../TooljetDatabase/SelectBox.jsx | 14 ++-- .../TooljetDatabase/ToolJetDbOperations.jsx | 14 +++- .../TooljetDatabase/operations.js | 3 +- frontend/src/_styles/queryManager.scss | 6 ++ .../src/services/app_import_export.service.ts | 84 ++++++++++++++++++- server/src/services/apps.service.ts | 23 ++++- server/src/services/tooljet_db.service.ts | 4 +- 13 files changed, 296 insertions(+), 68 deletions(-) diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/DropDownSelect.jsx b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/DropDownSelect.jsx index 41d39663f0..90d708ab71 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/DropDownSelect.jsx +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/DropDownSelect.jsx @@ -22,6 +22,8 @@ const DropDownSelect = ({ emptyError, shouldCenterAlignText = false, showPlaceHolder = false, + highlightSelected = true, + buttonClasses = '', }) => { const popoverId = useRef(`dd-select-${uuidv4()}`); const popoverBtnId = useRef(`dd-select-btn-${uuidv4()}`); @@ -124,11 +126,12 @@ const DropDownSelect = ({ onAdd={onAdd} addBtnLabel={addBtnLabel} emptyError={emptyError} + highlightSelected={highlightSelected} /> } > - +
-
+ ); }; diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinConstraint.jsx b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinConstraint.jsx index 0b742dc9bd..0769e43eb6 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinConstraint.jsx +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinConstraint.jsx @@ -88,13 +88,22 @@ const JoinConstraint = ({ darkMode, index, onRemove, onChange, data }) => { )} - -
-
Join
+ + +
+ Join +
- + {index ? ( { value={leftTableList.find((val) => val?.value === leftFieldTable)} /> ) : ( -
{baseTableDetails?.table_name ?? ''}
+
+ {baseTableDetails?.table_name ?? ''} +
)} -
+ { { }} /> ))} - + + 1 @@ -295,6 +314,7 @@ const JoinOn = ({ > {index == 1 && ( )} - {index == 0 &&
On
} + {index == 0 && ( +
+ On +
+ )} {index > 1 && ( -
+
{groupOperator}
)} -
+ - + {/* {operator} +
+ {operator} +
{index > 0 && ( - + )} diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinSelect.jsx b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinSelect.jsx index 4239e7ef0a..dd8413a475 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinSelect.jsx +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinSelect.jsx @@ -90,12 +90,22 @@ export default function JoinSelect({ darkMode }) { const respectiveTableSelectedOptions = joinSelectOptions.filter((val) => val?.table === table); const respectiveTableOptions = tableOptions[table] ?? []; return ( - - -
{findTableDetails(table)?.table_name ?? ''}
+ + +
+ {findTableDetails(table)?.table_name ?? ''} +
- + { const tableDetails = options?.table ? findTableDetails(options?.table) : ''; return ( - - + + -
+
setJoinOrderByOptions(joinOrderByOptions.filter((opt, idx) => idx !== i))} > @@ -137,7 +142,7 @@ export default function JoinSort({ darkMode }) { }) )} {/* Dynamically render below Row */} - +
setJoinOrderByOptions([...joinOrderByOptions, {}])}> diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinTable.jsx b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinTable.jsx index 0e80238287..25cb00b5df 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinTable.jsx +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinTable.jsx @@ -90,8 +90,8 @@ const SelectTableMenu = ({ darkMode }) => {
{/* Join Section */}
- -
+ +
{joins.map((join, joinIndex) => ( {
{/* Filter Section */}
- -
+ +
{/* Sort Section */}
- -
+ +
{/* Limit Section */}
- -
+ +
{
{/* Offset Section */}
- -
+ +
{
{/* Select Section */}
- -
+ +
@@ -364,10 +364,11 @@ const RenderFilterSection = ({ darkMode }) => { const { operator = '', leftField = {}, rightField = {} } = conditionDetail; const LeftSideTableDetails = leftField?.table ? findTableDetails(leftField?.table) : ''; return ( - -
+ + {index === 1 && ( updateOperatorForConditions(change?.value)} options={groupOperators} @@ -375,11 +376,32 @@ const RenderFilterSection = ({ darkMode }) => { value={groupOperators.find((op) => op.value === conditions.operator)} /> )} - {index === 0 &&
Where
} - {index > 1 &&
{conditions?.operator}
} + {index === 0 && ( +
+ Where +
+ )} + {index > 1 && ( +
+ {conditions?.operator} +
+ )} -
+ updateFilterConditionEntry('Column', index, { @@ -399,8 +421,9 @@ const RenderFilterSection = ({ darkMode }) => { darkMode={darkMode} /> - + updateFilterConditionEntry('Operator', index, { operator: change?.value })} value={filterOperatorOptions.find((op) => op.value === operator)} @@ -409,9 +432,10 @@ const RenderFilterSection = ({ darkMode }) => { /> -
+
{operator === 'IS' ? ( updateFilterConditionEntry('Value', index, { value: change?.value, isLeftSideCondition: false }) @@ -429,9 +453,9 @@ const RenderFilterSection = ({ darkMode }) => { : JSON.stringify(rightField?.value) : rightField?.value } - className="codehinter-plugins" + className="border border-end-0 fs-12 tjdb-codehinter" theme={darkMode ? 'monokai' : 'default'} - height={'28px'} + height={'30px'} placeholder="Value" onChange={(newValue) => updateFilterConditionEntry('Value', index, { value: newValue, isLeftSideCondition: false }) @@ -439,10 +463,14 @@ const RenderFilterSection = ({ darkMode }) => { /> )}
+ removeFilterConditionEntry(index)} > @@ -470,7 +498,7 @@ const RenderFilterSection = ({ darkMode }) => { )} {filterComponents} - +
addNewFilterConditionEntry()}> diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/ListRows.jsx b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/ListRows.jsx index 4944a64ae8..b86c00f8f0 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/ListRows.jsx +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/ListRows.jsx @@ -9,7 +9,8 @@ import { isOperatorOptions } from './util'; import { ButtonSolid } from '@/_ui/AppButton/AppButton'; export const ListRows = React.memo(({ darkMode }) => { - const { columns, listRowsOptions, limitOptionChanged, handleOptionsChange } = useContext(TooljetDatabaseContext); + const { columns, listRowsOptions, limitOptionChanged, handleOptionsChange, offsetOptionChanged } = + useContext(TooljetDatabaseContext); function handleWhereFiltersChange(filters) { handleOptionsChange('where_filters', filters); @@ -155,7 +156,7 @@ export const ListRows = React.memo(({ darkMode }) => { {/* Limit */} -
+
@@ -170,6 +171,22 @@ export const ListRows = React.memo(({ darkMode }) => { />
+ {/* Offset */} +
+ +
+ offsetOptionChanged(newValue)} + /> +
+
diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/SelectBox.jsx b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/SelectBox.jsx index 96d7d5c090..61e538f91c 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/SelectBox.jsx +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/SelectBox.jsx @@ -19,6 +19,7 @@ function DataSourceSelect({ addBtnLabel, selected, emptyError, + highlightSelected, }) { const handleChangeDataSource = (source) => { onSelect && onSelect(source); @@ -88,7 +89,7 @@ function DataSourceSelect({ /> ))} {children} - {props.isSelected && ( + {props.isSelected && highlightSelected && ( ({ ...prev, limit: value })); }; + const offsetOptionChanged = (value) => { + setListRowsOptions((prev) => ({ ...prev, offset: value })); + }; + const deleteOperationLimitOptionChanged = (limit) => { setDeleteRowsOptions((prev) => ({ ...prev, limit: limit })); }; @@ -290,6 +294,7 @@ const ToolJetDbOperations = ({ optionchanged, options, darkMode, isHorizontalLay listRowsOptions, setListRowsOptions, limitOptionChanged, + offsetOptionChanged, handleOptionsChange, deleteRowsOptions, handleDeleteRowsOptionsChange, @@ -467,9 +472,10 @@ const ToolJetDbOperations = ({ optionchanged, options, darkMode, isHorizontalLay {/* table name dropdown */}
- -
+ +
- -
+ +
0) { + const joinsTableIdUpdatedList = joinOptions.joins.map((joinCondition) => { + const updatedJoinCondition = { ...joinCondition }; + // Updating Join tableId + if (updatedJoinCondition.table) + updatedJoinCondition.table = + tooljetDatabaseMapping[updatedJoinCondition.table]?.id ?? updatedJoinCondition.table; + // Updating TableId on Conditions in Join Query + if (updatedJoinCondition.conditions) { + const updatedJoinConditionFilter = this.updateNewTableIdForFilter( + updatedJoinCondition.conditions, + tooljetDatabaseMapping + ); + updatedJoinCondition.conditions = updatedJoinConditionFilter.conditions; + } + + return updatedJoinCondition; + }); + joinOptions.joins = joinsTableIdUpdatedList; + } + + // Filter Section + if (joinOptions?.conditions) { + joinOptions.conditions = this.updateNewTableIdForFilter( + joinOptions.conditions, + tooljetDatabaseMapping + ).conditions; + } + + // Select Section + if (joinOptions?.fields) { + joinOptions.fields = joinOptions.fields.map((eachField) => { + if (eachField.table) { + eachField.table = tooljetDatabaseMapping[eachField.table]?.id ?? eachField.table; + return eachField; + } + return eachField; + }); + } + + // From Section + if (joinOptions?.from) { + const { name = '' } = joinOptions.from; + joinOptions.from = { ...joinOptions.from, name: tooljetDatabaseMapping[name]?.id ?? name }; + } + + // Sort Section + if (joinOptions?.order_by) { + joinOptions.order_by = joinOptions.order_by.map((eachOrderBy) => { + if (eachOrderBy.table) { + eachOrderBy.table = tooljetDatabaseMapping[eachOrderBy.table]?.id ?? eachOrderBy.table; + return eachOrderBy; + } + return eachOrderBy; + }); + } + + return { ...queryOptions, table_id: tooljetDatabaseMapping[queryOptions.table_id]?.id, join_table: joinOptions }; + } else { + return { ...queryOptions, table_id: tooljetDatabaseMapping[queryOptions.table_id]?.id }; + } + } + + updateNewTableIdForFilter(joinConditions, tooljetDatabaseMapping) { + const { conditionsList = [] } = { ...joinConditions }; + const updatedConditionList = conditionsList.map((condition) => { + if (condition.conditions) { + return this.updateNewTableIdForFilter(condition.conditions, tooljetDatabaseMapping); + } else { + const { operator = '=', leftField = {}, rightField = {} } = { ...condition }; + if (leftField?.type && leftField.type === 'Column') + leftField['table'] = tooljetDatabaseMapping[leftField.table]?.id ?? leftField.table; + if (rightField?.type && rightField.type === 'Column') + rightField['table'] = tooljetDatabaseMapping[rightField.table]?.id ?? rightField.table; + return { operator, leftField, rightField }; + } + }); + return { conditions: { ...joinConditions, conditionsList: [...updatedConditionList] } }; } async updateEventActionsForNewVersionWithNewMappingIds( diff --git a/server/src/services/apps.service.ts b/server/src/services/apps.service.ts index 4f3727e82b..b5657f9a38 100644 --- a/server/src/services/apps.service.ts +++ b/server/src/services/apps.service.ts @@ -977,9 +977,28 @@ export class AppsService { .andWhere('data_sources.kind = :kind', { kind: 'tooljetdb' }) .getMany(); - const uniqTableIds = [...new Set(tooljetDbDataQueries.map((dq) => dq.options['table_id']))]; + const uniqTableIds = new Set(); + tooljetDbDataQueries.forEach((dq) => { + if (dq.options?.operation === 'join_tables') { + const joinOptions = dq.options?.join_table?.joins ?? []; + (joinOptions || []).forEach((join) => { + const { table, conditions } = join; + if (table) uniqTableIds.add(table); + conditions?.conditionsList?.forEach((condition) => { + const { leftField, rightField } = condition; + if (leftField?.table) { + uniqTableIds.add(leftField?.table); + } + if (rightField?.table) { + uniqTableIds.add(rightField?.table); + } + }); + }); + } + if (dq.options.table_id) uniqTableIds.add(dq.options.table_id); + }); - return uniqTableIds.map((table_id) => { + return [...uniqTableIds].map((table_id) => { return { table_id }; }); }); diff --git a/server/src/services/tooljet_db.service.ts b/server/src/services/tooljet_db.service.ts index 0b422e71a4..49dedea3b0 100644 --- a/server/src/services/tooljet_db.service.ts +++ b/server/src/services/tooljet_db.service.ts @@ -3,6 +3,7 @@ import { EntityManager, In, QueryFailedError } from 'typeorm'; import { InjectEntityManager } from '@nestjs/typeorm'; import { InternalTable } from 'src/entities/internal_table.entity'; import { isString, isEmpty } from 'lodash'; +import { PostgrestProxyService } from '@services/postgrest_proxy.service'; export type TableColumnSchema = { column_name: string; @@ -23,7 +24,8 @@ export class TooljetDbService { private readonly manager: EntityManager, @Optional() @InjectEntityManager('tooljetDb') - private readonly tooljetDbManager: EntityManager + private readonly tooljetDbManager: EntityManager, + private readonly postgrestProxyService: PostgrestProxyService ) {} async perform(organizationId: string, action: string, params = {}) { From a13ad5a6a9700c0fdea2b45ef85e480c2299cadf Mon Sep 17 00:00:00 2001 From: Ganesh Kumar <40178541+ganesh8056@users.noreply.github.com> Date: Thu, 16 Nov 2023 12:18:03 +0530 Subject: [PATCH 32/63] Slack plugin oauth flow not working (#7702) * fix: slack oauth access token undefined error fixed - but query returns un-authorized * fix: slack oauth issue fixed * fix: removed the commented code --- frontend/src/_components/Slack.jsx | 29 ++++++------ server/src/services/data_queries.service.ts | 52 +++++++++++++++------ server/src/services/data_sources.service.ts | 4 +- 3 files changed, 56 insertions(+), 29 deletions(-) diff --git a/frontend/src/_components/Slack.jsx b/frontend/src/_components/Slack.jsx index 5c90932a92..46df2015d1 100644 --- a/frontend/src/_components/Slack.jsx +++ b/frontend/src/_components/Slack.jsx @@ -1,10 +1,10 @@ import React, { useState } from 'react'; import { datasourceService } from '@/_services'; import { useTranslation } from 'react-i18next'; - +import { toast } from 'react-hot-toast'; import Button from '@/_ui/Button'; -const Slack = ({ optionchanged, createDataSource, options, isSaving, selectedDataSource }) => { +const Slack = ({ optionchanged, createDataSource, options, isSaving, _selectedDataSource }) => { const [authStatus, setAuthStatus] = useState(null); const { t } = useTranslation(); @@ -18,19 +18,22 @@ const Slack = ({ optionchanged, createDataSource, options, isSaving, selectedDat scope = `${scope},chat:write`; } - datasourceService.fetchOauth2BaseUrl(provider).then((data) => { - const authUrl = `${data.url}&scope=${scope}&access_type=offline&prompt=select_account`; - if (selectedDataSource?.id) { - localStorage.setItem('sourceWaitingForOAuth', selectedDataSource.id); - } else { + datasourceService + .fetchOauth2BaseUrl(provider) + .then((data) => { + const authUrl = `${data.url}&scope=${scope}&access_type=offline&prompt=select_account`; + localStorage.setItem('sourceWaitingForOAuth', 'newSource'); - } - optionchanged('provider', provider).then(() => { - optionchanged('oauth2', true); + optionchanged('provider', provider).then(() => { + optionchanged('oauth2', true); + }); + setAuthStatus('waiting_for_token'); + window.open(authUrl); + }) + .catch(({ error }) => { + toast.error(error); + setAuthStatus(null); }); - setAuthStatus('waiting_for_token'); - window.open(authUrl); - }); } function saveDataSource() { diff --git a/server/src/services/data_queries.service.ts b/server/src/services/data_queries.service.ts index 16cc796238..458e6ba65b 100644 --- a/server/src/services/data_queries.service.ts +++ b/server/src/services/data_queries.service.ts @@ -14,6 +14,7 @@ import { EncryptionService } from './encryption.service'; import { App } from 'src/entities/app.entity'; import { AppEnvironmentService } from './app_environments.service'; import { dbTransactionWrap } from 'src/helpers/utils.helper'; +import allPlugins from '@tooljet/plugins/dist/server'; import { DataSourceScopes } from 'src/helpers/data_source.constants'; import { EventHandler } from 'src/entities/event_handler.entity'; @@ -351,6 +352,22 @@ export class DataQueriesService { } }; + /* this function only for getting auth token for googlesheets and related plugins*/ + async fetchAPITokenFromPlugins(dataSource: DataSource, code: string, sourceOptions: any) { + const queryService = new allPlugins[dataSource.kind](); + const accessDetails = await queryService.accessDetailsFrom(code, sourceOptions); + const options = []; + for (const row of accessDetails) { + const option = {}; + option['key'] = row[0]; + option['value'] = row[1]; + option['encrypted'] = true; + + options.push(option); + } + return options; + } + /* This function fetches access token from authorization code */ async authorizeOauth2( dataSource: DataSource, @@ -360,22 +377,27 @@ export class DataQueriesService { organizationId?: string ): Promise { const sourceOptions = await this.parseSourceOptions(dataSource.options, organizationId, environmentId); - const isMultiAuthEnabled = dataSource.options['multiple_auth_enabled']?.value; - const newToken = await this.fetchOAuthToken(sourceOptions, code, userId, isMultiAuthEnabled); - const tokenData = this.getCurrentToken( - isMultiAuthEnabled, - dataSource.options['tokenData']?.value, - newToken, - userId - ); + let tokenOptions: any; + if (['googlesheets', 'slack', 'zendesk'].includes(dataSource.kind)) { + tokenOptions = await this.fetchAPITokenFromPlugins(dataSource, code, sourceOptions); + } else { + const isMultiAuthEnabled = dataSource.options['multiple_auth_enabled']?.value; + const newToken = await this.fetchOAuthToken(sourceOptions, code, userId, isMultiAuthEnabled); + const tokenData = this.getCurrentToken( + isMultiAuthEnabled, + dataSource.options['tokenData']?.value, + newToken, + userId + ); - const tokenOptions = [ - { - key: 'tokenData', - value: tokenData, - encrypted: false, - }, - ]; + tokenOptions = [ + { + key: 'tokenData', + value: tokenData, + encrypted: false, + }, + ]; + } await this.dataSourcesService.updateOptions(dataSource.id, tokenOptions, organizationId, environmentId); return; diff --git a/server/src/services/data_sources.service.ts b/server/src/services/data_sources.service.ts index 875ecc9983..b4e1ff72ce 100644 --- a/server/src/services/data_sources.service.ts +++ b/server/src/services/data_sources.service.ts @@ -411,7 +411,9 @@ export class DataSourcesService { for (const option of optionsWithOauth) { if (option['encrypted']) { const existingCredentialId = - dataSource.options[option['key']] && dataSource.options[option['key']]['credential_id']; + dataSource?.options && + dataSource.options[option['key']] && + dataSource.options[option['key']]['credential_id']; if (existingCredentialId) { (option['value'] || option['value'] === '') && From 05b861ab29265819237fea6c93591ef860252d5d Mon Sep 17 00:00:00 2001 From: Syed Abdul Rahman <137684137+S-Abdul-Rahman@users.noreply.github.com> Date: Thu, 16 Nov 2023 12:19:37 +0530 Subject: [PATCH 33/63] Fixed Filter button active state issue (#7663) * Fixed Filter button active state issue * Fixed icon size changes in active state issue --- frontend/src/_styles/theme.scss | 122 ++++++++++++++++++-------------- 1 file changed, 70 insertions(+), 52 deletions(-) diff --git a/frontend/src/_styles/theme.scss b/frontend/src/_styles/theme.scss index 992a467389..93477a3af4 100644 --- a/frontend/src/_styles/theme.scss +++ b/frontend/src/_styles/theme.scss @@ -12,6 +12,7 @@ @import "./ui-operations.scss"; @import 'react-loading-skeleton/dist/skeleton.css'; @import './table-component.scss'; + /* ibm-plex-sans-100 - latin */ @font-face { font-display: swap; @@ -269,7 +270,8 @@ button { .emoji-mart-scroll+.emoji-mart-bar { display: none; } -.accordion-item{ + +.accordion-item { border: solid var(--slate5); border-width: 0px 0px 1px 0px; } @@ -301,6 +303,7 @@ button { .accordion-body { padding: 6px 16px 20px 16px !important; + .form-label { font-weight: 400; font-size: 12px; @@ -327,7 +330,7 @@ button { .resizer-select, .resizer-active { - border: solid 1px $primary !important; + border: solid 1px $primary !important; .top-right, .top-left, @@ -827,7 +830,7 @@ button { .list-group.list-group-transparent.dark .all-apps-link, .list-group-item-action.dark.active { - background-color: $dark-background !important; + background-color: $dark-background !important; } } @@ -1559,7 +1562,7 @@ button { .select-search-dark input { width: 224px !important; height: 32px !important; - border-radius: $border-radius !important; + border-radius: $border-radius !important; } } @@ -1570,7 +1573,7 @@ button { .select-search__value input, .select-search-dark input { height: 32px !important; - border-radius: $border-radius !important; + border-radius: $border-radius !important; } } @@ -1631,7 +1634,7 @@ button { -webkit-appearance: none; -moz-appearance: none; appearance: none; - border-radius: $border-radius !important; + border-radius: $border-radius !important; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } @@ -1971,6 +1974,7 @@ button { text-align: center; color: #888; } + // jet-table-footer is common class used in other components other than table .jet-table-footer { .table-footer { @@ -2904,12 +2908,14 @@ input:focus-visible { width: 210px !important; //adjusted with padding box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08) !important; color: var(--slate12); + .flexbox-fix:nth-child(3) { div:nth-child(1) { - input{ + input { width: 100% !important; } - label{ + + label { color: var(--slate12) !important; } } @@ -3085,6 +3091,7 @@ input:focus-visible { .DateRangePickerInput__withBorder { border: 1px solid #1f2936; } + .main .canvas-container .canvas-area { background: #2f3c4c; } @@ -3673,7 +3680,7 @@ input[type="text"] { .nav-tabs .nav-link.active { font-weight: 400 !important; - color: $primary !important; + color: $primary !important; } .empty { @@ -4199,7 +4206,7 @@ input[type="text"] { .tabs-inspector.dark { .nav-link.active { - border-bottom: 1px solid $primary !important; + border-bottom: 1px solid $primary !important; } } @@ -4448,7 +4455,7 @@ input[type="text"] { } input { - border-radius: $border-radius !important; + border-radius: $border-radius !important; padding-left: 1.75rem !important; } } @@ -4617,8 +4624,8 @@ input[type="text"] { } .modal-content.home-modal-component.dark { - background-color: $bg-dark-light !important; - color: $white !important; + background-color: $bg-dark-light !important; + color: $white !important; .modal-title { color: $white !important; @@ -4651,22 +4658,22 @@ input[type="text"] { } .form-control { - border-color: $border-grey-dark !important; + border-color: $border-grey-dark !important; color: inherit; } input { - background-color: $bg-dark-light !important; + background-color: $bg-dark-light !important; } .form-select { - background-color: $bg-dark !important; - color: $white !important; - border-color: $border-grey-dark !important; + background-color: $bg-dark !important; + color: $white !important; + border-color: $border-grey-dark !important; } .text-muted { - color: $white !important; + color: $white !important; } } @@ -4977,7 +4984,7 @@ div#driver-page-overlay { } .dark-theme-walkthrough#driver-popover-item { - background-color: $bg-dark-light !important; + background-color: $bg-dark-light !important; border-color: rgba(101, 109, 119, 0.16) !important; .driver-popover-title { @@ -4985,7 +4992,7 @@ div#driver-page-overlay { } .driver-popover-tip { - border-color: transparent transparent transparent $bg-dark-light !important; + border-color: transparent transparent transparent $bg-dark-light !important; } .driver-popover-description { @@ -5017,7 +5024,7 @@ div#driver-page-overlay { .driver-next-btn, .driver-prev-btn { - color: $primary !important; + color: $primary !important; } .driver-disabled { @@ -5141,7 +5148,7 @@ div#driver-page-overlay { } .fx-canvas { - background:var(--slate4); + background: var(--slate4); padding: 0px; display: flex; height: 32px; @@ -5153,7 +5160,7 @@ div#driver-page-overlay { align-items: center; div { - background:var(--slate4) !important; + background: var(--slate4) !important; display: flex; justify-content: center; align-items: center; @@ -5161,6 +5168,7 @@ div#driver-page-overlay { padding: 0px; } } + .org-name { color: var(--slate12) !important; font-size: 12px; @@ -5489,7 +5497,7 @@ div#driver-page-overlay { } .selected-node { - border-color: $primary-light !important; + border-color: $primary-light !important; } .json-tree-icon-container .selected-node>svg:first-child { @@ -5580,7 +5588,7 @@ div#driver-page-overlay { } .selected-node { - border-color: $primary-light !important; + border-color: $primary-light !important; } .selected-node .group-object-container .badge { @@ -5898,7 +5906,7 @@ div#driver-page-overlay { //Kanban board .kanban-container.dark-themed { - background-color: $bg-dark-light !important; + background-color: $bg-dark-light !important; .kanban-column { .card-header { @@ -5944,7 +5952,7 @@ div#driver-page-overlay { } .dnd-card.card.card-dark { - background-color: $bg-dark !important; + background-color: $bg-dark !important; } } @@ -7182,7 +7190,7 @@ tbody { } .application-brand { - a{ + a { height: 48px; position: relative; display: flex; @@ -7940,8 +7948,9 @@ tbody { width: 240px; height: 28px; flex-direction: row; - div{ - a{ + + div { + a { text-decoration: none; } } @@ -8786,7 +8795,7 @@ tbody { flex-direction: row !important; justify-content: center !important; align-items: center !important; - padding: 4px 16px !important; + //padding: 4px 16px !important; width: 100% !important; height: 28px !important; background: var(--grass2) !important; @@ -8799,7 +8808,7 @@ tbody { flex-direction: row !important; justify-content: center !important; align-items: center !important; - padding: 4px 16px !important; + //padding: 4px 16px !important; width: 100% !important; height: 28px !important; border-radius: 6px !important; @@ -10226,7 +10235,7 @@ tbody { border-radius: 6px !important; margin-bottom: 4px !important; color: var(--slate12) !important; - transition:none; + transition: none; &:hover { @@ -10250,13 +10259,15 @@ tbody { box-shadow: 0 0 0 1000px var(--base) inset !important; -webkit-text-fill-color: var(--slate12) !important; - &:hover { - box-shadow: 0 0 0 1000px var(--slate1) inset !important; - -webkit-text-fill-color: var(--slate12) !important;} + &:hover { + box-shadow: 0 0 0 1000px var(--slate1) inset !important; + -webkit-text-fill-color: var(--slate12) !important; + } - &:focus-visible { + &:focus-visible { box-shadow: 0 0 0 1000px var(--indigo2) inset !important; - -webkit-text-fill-color: var(--slate12) !important;} + -webkit-text-fill-color: var(--slate12) !important; + } } @@ -11822,14 +11833,17 @@ tbody { width: 170px !important; } } -.custom-gap-8{ + +.custom-gap-8 { gap: 8px; } -.color-slate-11{ + +.color-slate-11 { color: var(--slate11) !important; } -.custom-gap-6{ - gap:6px + +.custom-gap-6 { + gap: 6px } // ToolJet Database buttons @@ -11839,22 +11853,26 @@ tbody { padding: 4px 10px; } -.custom-gap-2{ - gap:2px +.custom-gap-2 { + gap: 2px } -.custom-gap-4{ + +.custom-gap-4 { gap: 4px; } -.text-black-000{ + +.text-black-000 { color: var(--text-black-000) !important; } -.custom-gap-12{ - gap:12px + +.custom-gap-12 { + gap: 12px } -#inspector-tabpane-properties{ + +#inspector-tabpane-properties { .accordion { - .accordion-item:last-child{ + .accordion-item:last-child { border-bottom: none !important; } } -} +} \ No newline at end of file From 5161053edefc3aa4efb2d780d966161da5a01dcb Mon Sep 17 00:00:00 2001 From: Syed Abdul Rahman <137684137+S-Abdul-Rahman@users.noreply.github.com> Date: Thu, 16 Nov 2023 15:27:45 +0530 Subject: [PATCH 34/63] Fixed current version app export issue (#7831) * Fixed current version app export issue * removed isDownload variable * removed extra parameter in export function * added suggested changes --- frontend/src/HomePage/ExportAppModal.jsx | 460 ++++++++++++----------- 1 file changed, 243 insertions(+), 217 deletions(-) diff --git a/frontend/src/HomePage/ExportAppModal.jsx b/frontend/src/HomePage/ExportAppModal.jsx index d523f1d04b..7a3566c511 100644 --- a/frontend/src/HomePage/ExportAppModal.jsx +++ b/frontend/src/HomePage/ExportAppModal.jsx @@ -6,231 +6,257 @@ import { toast } from 'react-hot-toast'; import { ButtonSolid } from '@/_components/AppButton'; export default function ExportAppModal({ title, show, closeModal, customClassName, app, darkMode }) { - const currentVersion = app?.editing_version; - const [versions, setVersions] = useState(undefined); - const [tables, setTables] = useState(undefined); - const [versionId, setVersionId] = useState(currentVersion?.id); - const [exportTjDb, setExportTjDb] = useState(true); + const currentVersion = app?.editing_version; + const [versions, setVersions] = useState(undefined); + const [tables, setTables] = useState(undefined); + const [allTables, setAllTables] = useState(undefined); + const [versionId, setVersionId] = useState(currentVersion?.id); + const [exportTjDb, setExportTjDb] = useState(true); - useEffect(() => { - async function fetchAppVersions() { - try { - const fetchVersions = await appsService.getVersions(app.id); - const { versions } = fetchVersions; - setVersions(versions); - } catch (error) { - toast.error('Could not fetch the versions.', { - position: 'top-center', - }); - closeModal(); - } - } - async function fetchAppTables() { - try { - const fetchTables = await appsService.getTables(app.id); - const { tables } = fetchTables; - setTables(tables); - } catch (error) { - toast.error('Could not fetch the tables.', { - position: 'top-center', - }); - closeModal(); - } - } - fetchAppVersions(); - fetchAppTables(); - // eslint-disable-next-line react-hooks/exhaustive-deps - }, []); - const exportApp = (app, versionId, exportTjDb, tables) => { - const appOpts = { - app: [ - { - id: app.id, - ...(versionId && { search_params: { version_id: versionId } }), - }, - ], - }; - const requestBody = { - ...appOpts, - ...(exportTjDb && { tooljet_database: tables }), - organization_id: app.organization_id ?? app.organizationId, - }; - - appsService - .exportResource(requestBody) - .then((data) => { - const appName = app.name.replace(/\s+/g, '-').toLowerCase(); - const fileName = `${appName}-export-${new Date().getTime()}`; - // simulate link click download - const json = JSON.stringify(data, null, 2); - const blob = new Blob([json], { type: 'application/json' }); - const href = URL.createObjectURL(blob); - const link = document.createElement('a'); - link.href = href; - link.download = fileName + '.json'; - document.body.appendChild(link); - link.click(); - document.body.removeChild(link); - closeModal(); - }) - .catch((error) => { - toast.error(`Could not export app: ${error.data.message}`, { - position: 'top-center', - }); - closeModal(); - }); - }; - - return ( - closeModal(false)} - contentClassName={`home-modal-component home-version-modal-component ${ - customClassName ? ` ${customClassName}` : '' - } ${darkMode && 'dark-theme'}`} - show={show} - backdrop={true} - keyboard={true} - enforceFocus={false} - animation={false} - onEscapeKeyDown={() => closeModal()} - centered - data-cy={'modal-component'} - > - - - {title} - - - - {Array.isArray(versions) ? ( - <> - -
-
- - Current Version - - -
- {versions.length >= 2 ? ( -
- - Other Versions - - {versions.map((version) => { - if (version.id !== currentVersion?.id) { - return ( - - ); + useEffect(() => { + async function fetchAppVersions() { + try { + const fetchVersions = await appsService.getVersions(app.id); + const { versions } = fetchVersions; + setVersions(versions); + } catch (error) { + toast.error('Could not fetch the versions.', { + position: 'top-center', + }); + closeModal(); + } + } + async function fetchAppTables() { + try { + const fetchTables = await appsService.getTables(app.id); // this is used to get all tables + const { tables } = fetchTables; + const tbl = await appsService.getAppByVersion(app.id, versionId) // this is used to get particular App by version + const { dataQueries } = tbl + const extractedIdData = []; + dataQueries.forEach(item => { + if (item.kind === "tooljetdb") { + const joinOptions = item.options?.join_table?.joins ?? []; + (joinOptions || []).forEach((join) => { + const { table, conditions } = join; + if (table) extractedIdData.push(table); + conditions?.conditionsList?.forEach((condition) => { + const { leftField, rightField } = condition; + if (leftField?.table) { + extractedIdData.push(leftField?.table); + } + if (rightField?.table) { + extractedIdData.push(rightField?.table); + } + }); + }); } - })} -
- ) : ( -
- No other versions found -
- )} -
-
-
- setExportTjDb(!exportTjDb)} /> -

Export ToolJet table schema

-
- - exportApp(app, null, exportTjDb, tables)} - > - Export All - - exportApp(app, versionId, exportTjDb, tables)} - > - Export selected version - - - - ) : ( - - )} -
- ); + }); + const uniqueSet = new Set(extractedIdData); + const selectedVersiontable = Array.from(uniqueSet).map((item) => ({ table_id: item })); + setTables(selectedVersiontable) + setAllTables(tables) + } catch (error) { + toast.error('Could not fetch the tables.', { + position: 'top-center', + }); + closeModal(); + } + } + fetchAppVersions(); + fetchAppTables(); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [versionId]); + + const exportApp = (app, versionId, exportTjDb, exportTables) => { + const appOpts = { + app: [ + { + id: app.id, + ...(versionId && { search_params: { version_id: versionId } }), + }, + ], + }; + + const requestBody = { + ...appOpts, + ...(exportTjDb && { tooljet_database: exportTables }), + organization_id: app.organization_id, + }; + + appsService + .exportResource(requestBody) + .then((data) => { + const appName = app.name.replace(/\s+/g, '-').toLowerCase(); + const fileName = `${appName}-export-${new Date().getTime()}`; + // simulate link click download + const json = JSON.stringify(data, null, 2); + const blob = new Blob([json], { type: 'application/json' }); + const href = URL.createObjectURL(blob); + const link = document.createElement('a'); + link.href = href; + link.download = fileName + '.json'; + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + closeModal(); + }) + .catch((error) => { + toast.error(`Could not export app: ${error.data.message}`, { + position: 'top-center', + }); + closeModal(); + }); + }; + + return ( + closeModal(false)} + contentClassName={`home-modal-component home-version-modal-component ${customClassName ? ` ${customClassName}` : '' + } ${darkMode && 'dark-theme'}`} + show={show} + backdrop={true} + keyboard={true} + enforceFocus={false} + animation={false} + onEscapeKeyDown={() => closeModal()} + centered + data-cy={'modal-component'} + > + + + {title} + + + + {Array.isArray(versions) ? ( + <> + +
+
+ + Current Version + + +
+ {versions.length >= 2 ? ( +
+ + Other Versions + + {versions.map((version) => { + if (version.id !== currentVersion?.id) { + return ( + + ); + } + })} +
+ ) : ( +
+ No other versions found +
+ )} +
+
+
+ setExportTjDb(!exportTjDb)} /> +

Export ToolJet table schema

+
+ + exportApp(app, null, exportTjDb, allTables)} + > + Export All + + exportApp(app, versionId, exportTjDb, tables)} + > + Export selected version + + + + ) : ( + + )} +
+ ); } function InputRadioField({ - versionId, - versionName, - versionCreatedAt, - checked = undefined, - key = undefined, - setVersionId, - className, + versionId, + versionName, + versionCreatedAt, + checked = undefined, + key = undefined, + setVersionId, + className, }) { - return ( - - setVersionId(target.value)} - style={{ marginLeft: '1rem' }} - className="cursor-pointer" - /> - - - ); + return ( + + setVersionId(target.value)} + style={{ marginLeft: '1rem' }} + className="cursor-pointer" + /> + + + ); } function Loader() { - return ( - -
-
Loading versions ...
-
-
-
- ); + return ( + +
+
Loading versions ...
+
+
+
+ ); } From ef4082a1f75bc37a6402347a5a85d239e37c174d Mon Sep 17 00:00:00 2001 From: Syed Abdul Rahman <137684137+S-Abdul-Rahman@users.noreply.github.com> Date: Thu, 16 Nov 2023 15:50:23 +0530 Subject: [PATCH 35/63] Fixed query builder filter for ToolJet db (#7633) * Fixed query builder filter for ToolJet db * added condition for null value as well as renamed this hasEqualWithNull function name as hasEmptyStringOrNullValue * removed validation for empty string * Added validation for empty string * Adding release label to Trigger all the cypress worflow to main branch * marketplace workflow fix * [hot-fix] Pages `applications` handle issue (#8066) * resolved application page handle issue * fixed a typo * add: exporting the function * bumped the version * Empty strings and null values are now updating correctly --------- Co-authored-by: Adish M Co-authored-by: Adish M <44204658+adishM98@users.noreply.github.com> Co-authored-by: Muhsin Shah C P --- .../QueryEditors/TooljetDatabase/operations.js | 10 +++++----- .../QueryManager/QueryEditors/TooljetDatabase/util.js | 6 +++--- frontend/src/TooljetDatabase/Table/index.jsx | 9 +++++---- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js index 407dcc39dc..96cd3af5b0 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js @@ -2,7 +2,7 @@ import { tooljetDatabaseService, authenticationService } from '@/_services'; import { isEmpty } from 'lodash'; import PostgrestQueryBuilder from '@/_helpers/postgrestQueryBuilder'; import { resolveReferences } from '@/_helpers/utils'; -import { hasEqualWithNull } from './util'; +import { hasEmptyStringOrNullValue } from './util'; export const tooljetDbOperations = { perform, @@ -46,7 +46,7 @@ function buildPostgrestQuery(filters) { postgrestQueryBuilder.order(column, order); } - if (!isEmpty(column) && !isEmpty(operator) && value && value !== '') { + if (!isEmpty(column) && !isEmpty(operator)) { postgrestQueryBuilder[operator](column, value.toString()); } } @@ -57,7 +57,7 @@ function buildPostgrestQuery(filters) { async function listRows(dataQuery, currentState) { const queryOptions = dataQuery.options; const resolvedOptions = resolveReferences(queryOptions, currentState); - if (hasEqualWithNull(resolvedOptions, 'list_rows')) { + if (hasEmptyStringOrNullValue(resolvedOptions, 'list_rows')) { return { status: 'failed', statusText: 'failed', @@ -108,7 +108,7 @@ async function createRow(dataQuery, currentState) { async function updateRows(dataQuery, currentState) { const queryOptions = dataQuery.options; const resolvedOptions = resolveReferences(queryOptions, currentState); - if (hasEqualWithNull(resolvedOptions, 'update_rows')) { + if (hasEmptyStringOrNullValue(resolvedOptions, 'update_rows')) { return { status: 'failed', statusText: 'failed', @@ -136,7 +136,7 @@ async function updateRows(dataQuery, currentState) { async function deleteRows(dataQuery, currentState) { const queryOptions = dataQuery.options; const resolvedOptions = resolveReferences(queryOptions, currentState); - if (hasEqualWithNull(resolvedOptions, 'delete_rows')) { + if (hasEmptyStringOrNullValue(resolvedOptions, 'delete_rows')) { return { status: 'failed', statusText: 'failed', diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/util.js b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/util.js index 777cc19d4b..cc2c86dfbf 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/util.js +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/util.js @@ -3,7 +3,7 @@ import { get } from 'lodash'; /** * Checks if the queryOptions object contains a filter with an 'eq' (equal) operator and a value equal to '{{null}}'. * - * @function hasEqualWithNull + * @function hasEmptyStringOrNullValue * @param {Object} queryOptions - The query options object to check for the presence of the specified filter. * @property {Object} queryOptions.list_rows.where_filters - An object containing the filters to be checked. * @returns {boolean} - Returns true if the specified filter is found, false otherwise. @@ -20,9 +20,9 @@ import { get } from 'lodash'; * }, * }; * - * const result = hasEqualWithNull(queryOptions); // true + * const result = hasEmptyStringOrNullValue(queryOptions); // true */ -export const hasEqualWithNull = (queryOptions, operation) => { +export const hasEmptyStringOrNullValue = (queryOptions, operation) => { const filters = get(queryOptions, `${operation}.where_filters`); if (filters) { const filterKeys = Object.keys(filters); diff --git a/frontend/src/TooljetDatabase/Table/index.jsx b/frontend/src/TooljetDatabase/Table/index.jsx index 93f1ad37cd..4d65b6ca2d 100644 --- a/frontend/src/TooljetDatabase/Table/index.jsx +++ b/frontend/src/TooljetDatabase/Table/index.jsx @@ -98,9 +98,9 @@ const Table = ({ openCreateRowDrawer, openCreateColumnDrawer }) => { () => loading ? columns.map((column) => ({ - ...column, - Cell: , - })) + ...column, + Cell: , + })) : columns, [loading, columns] ); @@ -302,10 +302,11 @@ const Table = ({ openCreateRowDrawer, openCreateColumnDrawer }) => { cell.column.id === 'selection' ? `${cell.row.values?.id}-checkbox` : `id-${cell.row.values?.id}-column-${cell.column.id}`; + const cellValue = cell.value === null ? '' : cell.value return (
Date: Thu, 16 Nov 2023 16:34:53 +0530 Subject: [PATCH 36/63] update keyboard shortcuts page (#8143) --- docs/docs/tutorial/keyboard-shortcuts.md | 124 +++-------------------- 1 file changed, 12 insertions(+), 112 deletions(-) diff --git a/docs/docs/tutorial/keyboard-shortcuts.md b/docs/docs/tutorial/keyboard-shortcuts.md index f534298ff4..26d32d5b93 100644 --- a/docs/docs/tutorial/keyboard-shortcuts.md +++ b/docs/docs/tutorial/keyboard-shortcuts.md @@ -5,118 +5,18 @@ title: Keyboard Shortcuts # Keyboard Shortcuts -You can perform operations like undo, redo, clone, or removing the widget directly using the keyboard shortcuts. +You can perform operations like copying and pasting components, cloning components, deleting components, undo, redo, and more using keyboard shortcuts. -## Copy -You can copy the component on the visual app editor using the following shortcut keys: +| Action | Mac Shortcut | Linux/Windows Shortcut | +|:------------|:-------------------|:-----------------------| +| Copy component | `cmd + c` | `ctrl + c` | +| Cut component | `cmd + x` | `ctrl + x` | +| Paste component | `cmd + v` | `ctrl + v` | +| Undo | `cmd + z` | `ctrl + z` | +| Redo | `cmd + shift + z` | `ctrl + shift + z` | +| Clone component | `cmd + d` | `ctrl + d` | +| Remove component | `delete` | `backspace` | +| Deselect component | `esc` | `esc` | -**On Mac:** `cmd + c` - -**On Linux/Windows:** `ctrl + c` - -
- -Copy - -
- -## Cut - -You can cut the component on the visual app editor using the following shortcut keys: - -**On Mac:** `cmd + x` - -**On Linux/Windows:** `ctrl + x` - -
- -Cut - -
- -## Paste - -You can paste the selected component using the following shortcut keys: - -**On Mac:** `cmd + v` - -**On Linux/Windows:** `ctrl + v` - -
- -Paste - -
- -:::caution -There are few edge cases when copy-paste commands might not work: -- The URL should be `https` and it won't work on http on many browsers -- Recent Firefox versions has some issue with copy functionality -::: - -## Undo - -You can undo any operation performed on the visual app editor using the following shortcut keys: - -**On Mac:** `cmd + z` - -**On Linux/Windows:** `ctrl + z` - -
- -Undo - -
- -## Redo - -If you have `undo` an operation and want to redo that again than you can use the following shortcut keys: - -**On Mac:** `cmd + shift + z` - -**On Linux/Windows:** `ctrl + shift + z` - -
- -Redo - -
- -## Clone - -Now you can create multiple clones of any widget without having to drag and drop the widget again from the sidebar. Just select any widget that you want to create a clone and use the following shortcut keys: - -**On Mac:** `cmd + d` - -**On Linux/Windows:** `ctrl + d` - -
- -Clone - -
- -## Remove widget - -Now you can delete a selected widget by using the following shortcut keys: - -**On Mac:** `delete` - -**On Linux/Windows:** `backspace` - -
- -Remove - -
- -## Unselect the selected widget - -You can quickly deselect a widget using the `esc` key. - -
- -Unselect - -
+To choose several components at once within the app-builder, simply hold down the shift key while clicking on each component you want to select. \ No newline at end of file From 646eb864b31edfb8b22e4861df0714d6f2f6f5aa Mon Sep 17 00:00:00 2001 From: Akshay Sasidharan Date: Thu, 16 Nov 2023 19:30:35 +0530 Subject: [PATCH 37/63] rename function name for null check --- .../QueryEditors/TooljetDatabase/operations.js | 8 ++++---- .../QueryManager/QueryEditors/TooljetDatabase/util.js | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js index 96cd3af5b0..d17423a13a 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js @@ -2,7 +2,7 @@ import { tooljetDatabaseService, authenticationService } from '@/_services'; import { isEmpty } from 'lodash'; import PostgrestQueryBuilder from '@/_helpers/postgrestQueryBuilder'; import { resolveReferences } from '@/_helpers/utils'; -import { hasEmptyStringOrNullValue } from './util'; +import { hasNullValueInFilters } from './util'; export const tooljetDbOperations = { perform, @@ -57,7 +57,7 @@ function buildPostgrestQuery(filters) { async function listRows(dataQuery, currentState) { const queryOptions = dataQuery.options; const resolvedOptions = resolveReferences(queryOptions, currentState); - if (hasEmptyStringOrNullValue(resolvedOptions, 'list_rows')) { + if (hasNullValueInFilters(resolvedOptions, 'list_rows')) { return { status: 'failed', statusText: 'failed', @@ -108,7 +108,7 @@ async function createRow(dataQuery, currentState) { async function updateRows(dataQuery, currentState) { const queryOptions = dataQuery.options; const resolvedOptions = resolveReferences(queryOptions, currentState); - if (hasEmptyStringOrNullValue(resolvedOptions, 'update_rows')) { + if (hasNullValueInFilters(resolvedOptions, 'update_rows')) { return { status: 'failed', statusText: 'failed', @@ -136,7 +136,7 @@ async function updateRows(dataQuery, currentState) { async function deleteRows(dataQuery, currentState) { const queryOptions = dataQuery.options; const resolvedOptions = resolveReferences(queryOptions, currentState); - if (hasEmptyStringOrNullValue(resolvedOptions, 'delete_rows')) { + if (hasNullValueInFilters(resolvedOptions, 'delete_rows')) { return { status: 'failed', statusText: 'failed', diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/util.js b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/util.js index cc2c86dfbf..e17035163d 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/util.js +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/util.js @@ -3,7 +3,7 @@ import { get } from 'lodash'; /** * Checks if the queryOptions object contains a filter with an 'eq' (equal) operator and a value equal to '{{null}}'. * - * @function hasEmptyStringOrNullValue + * @function hasNullValueInFilters * @param {Object} queryOptions - The query options object to check for the presence of the specified filter. * @property {Object} queryOptions.list_rows.where_filters - An object containing the filters to be checked. * @returns {boolean} - Returns true if the specified filter is found, false otherwise. @@ -20,9 +20,9 @@ import { get } from 'lodash'; * }, * }; * - * const result = hasEmptyStringOrNullValue(queryOptions); // true + * const result = hasNullValueInFilters(queryOptions); // true */ -export const hasEmptyStringOrNullValue = (queryOptions, operation) => { +export const hasNullValueInFilters = (queryOptions, operation) => { const filters = get(queryOptions, `${operation}.where_filters`); if (filters) { const filterKeys = Object.keys(filters); From d98121cd75f30eaeccc4951267aee06c583ce479 Mon Sep 17 00:00:00 2001 From: Marc Meszaros Date: Thu, 16 Nov 2023 21:17:35 -0800 Subject: [PATCH 38/63] feat: Support multipart/form-data body when file like objects are specified in restapi datasource (#6622) * Automatically convert restapi datasource request body to multipart/form-data if a file object is detected (#6621) * Improve fileobject check function in restapi datasource and guard against bad file data (#6621) * Avoid null or undefined in restapi datasource form-data payload * update keyboard shortcuts page (#8143) --------- Co-authored-by: Karan Rathod Co-authored-by: Akshay --- docs/docs/data-sources/restapi.md | 14 +- docs/docs/tutorial/keyboard-shortcuts.md | 124 +- .../rest-api/multipart-form-data.png | Bin 0 -> 109450 bytes plugins/packages/restapi/lib/index.ts | 48 +- plugins/packages/restapi/package-lock.json | 1217 ++++++++++++----- plugins/packages/restapi/package.json | 1 + 6 files changed, 974 insertions(+), 430 deletions(-) create mode 100644 docs/static/img/datasource-reference/rest-api/multipart-form-data.png diff --git a/docs/docs/data-sources/restapi.md b/docs/docs/data-sources/restapi.md index 04d8057d36..179dfbd11b 100644 --- a/docs/docs/data-sources/restapi.md +++ b/docs/docs/data-sources/restapi.md @@ -1,6 +1,6 @@ --- id: restapi -title: REST API +title: REST API --- ToolJet can establish a connection with any available REST API endpoint and create queries to interact with it. @@ -74,9 +74,19 @@ Whenever a request is made to the REST API, a **tj-x-forwarded-for** header is a +## Request types + +The plugin will send a **JSON** formatted body by default. If a file object from a [`FilePicker` widget](/docs/widgets/file-picker) is set as a value, the body is automatically converted to be sent as a `multipart/form-data` request. + +
+ +ToolJet - Data source - REST API + +
+ ## Response types -REST APIs can return data in a variety of formats, including **JSON** and **Base64**. JSON is a common format used for data exchange in REST APIs, while Base64 is often used for encoding binary data, such as images or video, within a JSON response. +REST APIs can return data in a variety of formats, including **JSON** and **Base64**. JSON is a common format used for data exchange in REST APIs, while Base64 is often used for encoding binary data, such as images or video, within a JSON response. When the response `content-type` is **image**, the response will be a `base64` string. ### Example JSON response diff --git a/docs/docs/tutorial/keyboard-shortcuts.md b/docs/docs/tutorial/keyboard-shortcuts.md index f534298ff4..26d32d5b93 100644 --- a/docs/docs/tutorial/keyboard-shortcuts.md +++ b/docs/docs/tutorial/keyboard-shortcuts.md @@ -5,118 +5,18 @@ title: Keyboard Shortcuts # Keyboard Shortcuts -You can perform operations like undo, redo, clone, or removing the widget directly using the keyboard shortcuts. +You can perform operations like copying and pasting components, cloning components, deleting components, undo, redo, and more using keyboard shortcuts. -## Copy -You can copy the component on the visual app editor using the following shortcut keys: +| Action | Mac Shortcut | Linux/Windows Shortcut | +|:------------|:-------------------|:-----------------------| +| Copy component | `cmd + c` | `ctrl + c` | +| Cut component | `cmd + x` | `ctrl + x` | +| Paste component | `cmd + v` | `ctrl + v` | +| Undo | `cmd + z` | `ctrl + z` | +| Redo | `cmd + shift + z` | `ctrl + shift + z` | +| Clone component | `cmd + d` | `ctrl + d` | +| Remove component | `delete` | `backspace` | +| Deselect component | `esc` | `esc` | -**On Mac:** `cmd + c` - -**On Linux/Windows:** `ctrl + c` - -
- -Copy - -
- -## Cut - -You can cut the component on the visual app editor using the following shortcut keys: - -**On Mac:** `cmd + x` - -**On Linux/Windows:** `ctrl + x` - -
- -Cut - -
- -## Paste - -You can paste the selected component using the following shortcut keys: - -**On Mac:** `cmd + v` - -**On Linux/Windows:** `ctrl + v` - -
- -Paste - -
- -:::caution -There are few edge cases when copy-paste commands might not work: -- The URL should be `https` and it won't work on http on many browsers -- Recent Firefox versions has some issue with copy functionality -::: - -## Undo - -You can undo any operation performed on the visual app editor using the following shortcut keys: - -**On Mac:** `cmd + z` - -**On Linux/Windows:** `ctrl + z` - -
- -Undo - -
- -## Redo - -If you have `undo` an operation and want to redo that again than you can use the following shortcut keys: - -**On Mac:** `cmd + shift + z` - -**On Linux/Windows:** `ctrl + shift + z` - -
- -Redo - -
- -## Clone - -Now you can create multiple clones of any widget without having to drag and drop the widget again from the sidebar. Just select any widget that you want to create a clone and use the following shortcut keys: - -**On Mac:** `cmd + d` - -**On Linux/Windows:** `ctrl + d` - -
- -Clone - -
- -## Remove widget - -Now you can delete a selected widget by using the following shortcut keys: - -**On Mac:** `delete` - -**On Linux/Windows:** `backspace` - -
- -Remove - -
- -## Unselect the selected widget - -You can quickly deselect a widget using the `esc` key. - -
- -Unselect - -
+To choose several components at once within the app-builder, simply hold down the shift key while clicking on each component you want to select. \ No newline at end of file diff --git a/docs/static/img/datasource-reference/rest-api/multipart-form-data.png b/docs/static/img/datasource-reference/rest-api/multipart-form-data.png new file mode 100644 index 0000000000000000000000000000000000000000..da0bd3dbc0b59565daa10a13acc0c44dc5e49dd8 GIT binary patch literal 109450 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 b9nn3cJoZxPyp8+=_)ker?Lpc7r{MnwQ$6?= literal 0 HcmV?d00001 diff --git a/plugins/packages/restapi/lib/index.ts b/plugins/packages/restapi/lib/index.ts index ed23dbb5ae..7683fc5097 100644 --- a/plugins/packages/restapi/lib/index.ts +++ b/plugins/packages/restapi/lib/index.ts @@ -17,10 +17,26 @@ import { sanitizeSearchParams, getAuthUrl, } from '@tooljet-plugins/common'; +const FormData = require('form-data'); const JSON5 = require('json5'); import got, { HTTPError, OptionsOfTextResponseBody } from 'got'; import { SourceOptions } from './types'; +function isFileObject(value) { + const keys = Object.keys(value); + + return ( + typeof value === 'object' && + keys.length > 0 && + keys.includes('name') && // example.zip + keys.includes('type') && // application/zip + keys.includes('content') && // raw'ish bytes (contains new lines - \n) + keys.includes('dataURL') && // data url representation + keys.includes('base64Data') && // data in base64 + keys.includes('filePath') + ); +} + interface RestAPIResult extends QueryResult { request?: Array | object; response?: Array | object; @@ -83,9 +99,39 @@ export default class RestapiQueryService implements QueryService { ...paramsFromUrl, ...sanitizeSearchParams(sourceOptions, queryOptions, hasDataSource), }, - ...(isUrlEncoded ? { form: json } : { json }), }; + const hasFiles = Object.values(json || {}).some((item) => { + return isFileObject(item); + }); + + if (isUrlEncoded) { + requestOptions.form = json; + } else if (hasFiles) { + const form = new FormData(); + for (const key in json) { + const value = json[key]; + if (isFileObject(value)) { + const fileBuffer = Buffer.from(value?.base64Data || '', 'base64'); + form.append(key, fileBuffer, { + filename: value?.name || '', + contentType: value?.type || '', + knownLength: fileBuffer.length, + }); + } else if (value !== undefined && value !== null) { + form.append(key, value); + } + } + + requestOptions.body = form; + } else { + requestOptions.json = json; + } + + if (authType === 'basic') { + requestOptions.username = sourceOptions.username; + requestOptions.password = sourceOptions.password; + } const authValidatedRequestOptions = validateAndSetRequestOptionsBasedOnAuthType( sourceOptions, context, diff --git a/plugins/packages/restapi/package-lock.json b/plugins/packages/restapi/package-lock.json index bcf533de06..070094962d 100644 --- a/plugins/packages/restapi/package-lock.json +++ b/plugins/packages/restapi/package-lock.json @@ -1,317 +1,904 @@ { - "name": "restapi", - "version": "1.0.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@sindresorhus/is": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.2.0.tgz", - "integrity": "sha512-VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw==" - }, - "@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", - "requires": { - "defer-to-connect": "^2.0.0" - } - }, - "@types/cacheable-request": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.2.tgz", - "integrity": "sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==", - "requires": { - "@types/http-cache-semantics": "*", - "@types/keyv": "*", - "@types/node": "*", - "@types/responselike": "*" - } - }, - "@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" - }, - "@types/keyv": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.3.tgz", - "integrity": "sha512-FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg==", - "requires": { - "@types/node": "*" - } - }, - "@types/node": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.2.tgz", - "integrity": "sha512-JepeIUPFDARgIs0zD/SKPgFsJEAF0X5/qO80llx59gOxFTboS9Amv3S+QfB7lqBId5sFXJ99BN0J6zFRvL9dDA==" - }, - "@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", - "requires": { - "@types/node": "*" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - }, - "cacheable-request": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz", - "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==", - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" - } - }, - "clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "requires": { - "mimic-response": "^3.1.0" - }, - "dependencies": { - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - } - }, - "defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "requires": { - "pump": "^3.0.0" - } - }, - "glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "got": { - "version": "11.8.3", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.3.tgz", - "integrity": "sha512-7gtQ5KiPh1RtGS9/Jbv1ofDpBFuq42gyfEib+ejaRBJuj/3tQFeR5+gw57e4ipaU8c/rCjvX6fkQz2lyDlGAOg==", - "requires": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - } - }, - "http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" - }, - "http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "requires": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" - } - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "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==" - }, - "keyv": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.4.tgz", - "integrity": "sha512-vqNHbAc8BBsxk+7QBYLW0Y219rWcClspR6WSeoHYKG5mnsSoOH+BL1pWq02DDCVdvvuUny5rkBlzMRzoqc+GIg==", - "requires": { - "json-buffer": "3.0.1" - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { - "wrappy": "1" - } - }, - "p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" - }, - "quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - }, - "resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - }, - "responselike": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", - "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", - "requires": { - "lowercase-keys": "^2.0.0" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { - "glob": "^7.1.3" - } - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - } - } + "name": "@tooljet-plugins/restapi", + "version": "1.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "@tooljet-plugins/restapi", + "version": "1.0.0", + "dependencies": { + "@tooljet-plugins/common": "file:../common", + "form-data": "^4.0.0", + "got": "^11.8.6", + "react": "^17.0.2", + "rimraf": "^3.0.2", + "url": "^0.11.0" + } + }, + "../common": { + "version": "1.0.0", + "dependencies": { + "react": "^17.0.2", + "rimraf": "^3.0.2" + } + }, + "node_modules/@sindresorhus/is": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.2.0.tgz", + "integrity": "sha512-VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@tooljet-plugins/common": { + "resolved": "../common", + "link": true + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.2.tgz", + "integrity": "sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==", + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "*", + "@types/node": "*", + "@types/responselike": "*" + } + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", + "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" + }, + "node_modules/@types/keyv": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.3.tgz", + "integrity": "sha512-FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/node": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.2.tgz", + "integrity": "sha512-JepeIUPFDARgIs0zD/SKPgFsJEAF0X5/qO80llx59gOxFTboS9Amv3S+QfB7lqBId5sFXJ99BN0J6zFRvL9dDA==" + }, + "node_modules/@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "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==" + }, + "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==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz", + "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==", + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dependencies": { + "mimic-response": "^1.0.0" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "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==" + }, + "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==" + }, + "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==" + }, + "node_modules/keyv": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.4.tgz", + "integrity": "sha512-vqNHbAc8BBsxk+7QBYLW0Y219rWcClspR6WSeoHYKG5mnsSoOH+BL1pWq02DDCVdvvuUny5rkBlzMRzoqc+GIg==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "engines": { + "node": ">=8" + } + }, + "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": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + }, + "node_modules/responselike": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", + "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", + "dependencies": { + "lowercase-keys": "^2.0.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==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + }, + "dependencies": { + "@sindresorhus/is": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.2.0.tgz", + "integrity": "sha512-VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw==" + }, + "@szmarczak/http-timer": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", + "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "requires": { + "defer-to-connect": "^2.0.0" + } + }, + "@tooljet-plugins/common": { + "version": "file:../common", + "requires": { + "react": "^17.0.2", + "rimraf": "^3.0.2" + } + }, + "@types/cacheable-request": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.2.tgz", + "integrity": "sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==", + "requires": { + "@types/http-cache-semantics": "*", + "@types/keyv": "*", + "@types/node": "*", + "@types/responselike": "*" + } + }, + "@types/http-cache-semantics": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", + "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" + }, + "@types/keyv": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.3.tgz", + "integrity": "sha512-FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg==", + "requires": { + "@types/node": "*" + } + }, + "@types/node": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.2.tgz", + "integrity": "sha512-JepeIUPFDARgIs0zD/SKPgFsJEAF0X5/qO80llx59gOxFTboS9Amv3S+QfB7lqBId5sFXJ99BN0J6zFRvL9dDA==" + }, + "@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "requires": { + "@types/node": "*" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + }, + "cacheable-request": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz", + "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==", + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" + } + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "requires": { + "mimic-response": "^1.0.0" + } + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "requires": { + "mimic-response": "^3.1.0" + }, + "dependencies": { + "mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + } + } + }, + "defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "got": { + "version": "11.8.6", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", + "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" + }, + "http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "requires": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + } + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "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==" + }, + "keyv": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.4.tgz", + "integrity": "sha512-vqNHbAc8BBsxk+7QBYLW0Y219rWcClspR6WSeoHYKG5mnsSoOH+BL1pWq02DDCVdvvuUny5rkBlzMRzoqc+GIg==", + "requires": { + "json-buffer": "3.0.1" + } + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "p-cancelable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", + "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + }, + "react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "resolve-alpn": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", + "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + }, + "responselike": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", + "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", + "requires": { + "lowercase-keys": "^2.0.0" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + } + } } diff --git a/plugins/packages/restapi/package.json b/plugins/packages/restapi/package.json index fe2d7804cd..4a3f7db3fd 100644 --- a/plugins/packages/restapi/package.json +++ b/plugins/packages/restapi/package.json @@ -17,6 +17,7 @@ }, "dependencies": { "@tooljet-plugins/common": "file:../common", + "form-data": "^4.0.0", "got": "^11.8.6", "react": "^17.0.2", "rimraf": "^3.0.2", From 2f48cde33796259bf569efb99263bf86b3ad414d Mon Sep 17 00:00:00 2001 From: Akshay Date: Fri, 17 Nov 2023 12:18:41 +0530 Subject: [PATCH 39/63] Add query validation for TJDB join (#7854) * Updated cypess mysql spec (#7717) * add join table dto * update dto * add join query validation setup * inprogress: join raw query as parameterized query * fix: only limit and offset values are parameterized still filter values are pending to be parameterized * make use of querybuilder with parameterized query * add tjdb orm logging * fix function name * remove unused argument * revise imports * update error message --------- Co-authored-by: Mekhla Asopa <59684099+Mekhla-Asopa@users.noreply.github.com> Co-authored-by: Ganesh Kumar --- .../TooljetDatabase/operations.js | 2 +- frontend/src/HomePage/ExportAppModal.jsx | 484 +++++++++--------- frontend/src/TooljetDatabase/Table/index.jsx | 8 +- server/ormconfig.ts | 1 + .../src/controllers/tooljet_db.controller.ts | 17 +- server/src/dto/tooljet-db-join.dto.ts | 157 ++++++ .../{ => filters}/all-exceptions-filter.ts | 0 .../tooljetdb-join-exceptions-filter.ts | 17 + server/src/main.ts | 2 +- server/src/services/tooljet_db.service.ts | 233 ++++----- 10 files changed, 540 insertions(+), 381 deletions(-) create mode 100644 server/src/dto/tooljet-db-join.dto.ts rename server/src/{ => filters}/all-exceptions-filter.ts (100%) create mode 100644 server/src/filters/tooljetdb-join-exceptions-filter.ts diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js index d17423a13a..82f750a744 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/operations.js @@ -47,7 +47,7 @@ function buildPostgrestQuery(filters) { } if (!isEmpty(column) && !isEmpty(operator)) { - postgrestQueryBuilder[operator](column, value.toString()); + postgrestQueryBuilder[operator](column, value); } } }); diff --git a/frontend/src/HomePage/ExportAppModal.jsx b/frontend/src/HomePage/ExportAppModal.jsx index 7a3566c511..2e33eddaff 100644 --- a/frontend/src/HomePage/ExportAppModal.jsx +++ b/frontend/src/HomePage/ExportAppModal.jsx @@ -6,257 +6,257 @@ import { toast } from 'react-hot-toast'; import { ButtonSolid } from '@/_components/AppButton'; export default function ExportAppModal({ title, show, closeModal, customClassName, app, darkMode }) { - const currentVersion = app?.editing_version; - const [versions, setVersions] = useState(undefined); - const [tables, setTables] = useState(undefined); - const [allTables, setAllTables] = useState(undefined); - const [versionId, setVersionId] = useState(currentVersion?.id); - const [exportTjDb, setExportTjDb] = useState(true); + const currentVersion = app?.editing_version; + const [versions, setVersions] = useState(undefined); + const [tables, setTables] = useState(undefined); + const [allTables, setAllTables] = useState(undefined); + const [versionId, setVersionId] = useState(currentVersion?.id); + const [exportTjDb, setExportTjDb] = useState(true); - - useEffect(() => { - async function fetchAppVersions() { - try { - const fetchVersions = await appsService.getVersions(app.id); - const { versions } = fetchVersions; - setVersions(versions); - } catch (error) { - toast.error('Could not fetch the versions.', { - position: 'top-center', - }); - closeModal(); - } - } - async function fetchAppTables() { - try { - const fetchTables = await appsService.getTables(app.id); // this is used to get all tables - const { tables } = fetchTables; - const tbl = await appsService.getAppByVersion(app.id, versionId) // this is used to get particular App by version - const { dataQueries } = tbl - const extractedIdData = []; - dataQueries.forEach(item => { - if (item.kind === "tooljetdb") { - const joinOptions = item.options?.join_table?.joins ?? []; - (joinOptions || []).forEach((join) => { - const { table, conditions } = join; - if (table) extractedIdData.push(table); - conditions?.conditionsList?.forEach((condition) => { - const { leftField, rightField } = condition; - if (leftField?.table) { - extractedIdData.push(leftField?.table); - } - if (rightField?.table) { - extractedIdData.push(rightField?.table); - } - }); - }); - } - }); - const uniqueSet = new Set(extractedIdData); - const selectedVersiontable = Array.from(uniqueSet).map((item) => ({ table_id: item })); - setTables(selectedVersiontable) - setAllTables(tables) - } catch (error) { - toast.error('Could not fetch the tables.', { - position: 'top-center', - }); - closeModal(); - } - } - fetchAppVersions(); - fetchAppTables(); - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [versionId]); - - const exportApp = (app, versionId, exportTjDb, exportTables) => { - const appOpts = { - app: [ - { - id: app.id, - ...(versionId && { search_params: { version_id: versionId } }), - }, - ], - }; - - const requestBody = { - ...appOpts, - ...(exportTjDb && { tooljet_database: exportTables }), - organization_id: app.organization_id, - }; - - appsService - .exportResource(requestBody) - .then((data) => { - const appName = app.name.replace(/\s+/g, '-').toLowerCase(); - const fileName = `${appName}-export-${new Date().getTime()}`; - // simulate link click download - const json = JSON.stringify(data, null, 2); - const blob = new Blob([json], { type: 'application/json' }); - const href = URL.createObjectURL(blob); - const link = document.createElement('a'); - link.href = href; - link.download = fileName + '.json'; - document.body.appendChild(link); - link.click(); - document.body.removeChild(link); - closeModal(); - }) - .catch((error) => { - toast.error(`Could not export app: ${error.data.message}`, { - position: 'top-center', - }); - closeModal(); + useEffect(() => { + async function fetchAppVersions() { + try { + const fetchVersions = await appsService.getVersions(app.id); + const { versions } = fetchVersions; + setVersions(versions); + } catch (error) { + toast.error('Could not fetch the versions.', { + position: 'top-center', + }); + closeModal(); + } + } + async function fetchAppTables() { + try { + const fetchTables = await appsService.getTables(app.id); // this is used to get all tables + const { tables } = fetchTables; + const tbl = await appsService.getAppByVersion(app.id, versionId); // this is used to get particular App by version + const { dataQueries } = tbl; + const extractedIdData = []; + dataQueries.forEach((item) => { + if (item.kind === 'tooljetdb') { + const joinOptions = item.options?.join_table?.joins ?? []; + (joinOptions || []).forEach((join) => { + const { table, conditions } = join; + if (table) extractedIdData.push(table); + conditions?.conditionsList?.forEach((condition) => { + const { leftField, rightField } = condition; + if (leftField?.table) { + extractedIdData.push(leftField?.table); + } + if (rightField?.table) { + extractedIdData.push(rightField?.table); + } + }); }); + } + }); + const uniqueSet = new Set(extractedIdData); + const selectedVersiontable = Array.from(uniqueSet).map((item) => ({ table_id: item })); + setTables(selectedVersiontable); + setAllTables(tables); + } catch (error) { + toast.error('Could not fetch the tables.', { + position: 'top-center', + }); + closeModal(); + } + } + fetchAppVersions(); + fetchAppTables(); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [versionId]); + + const exportApp = (app, versionId, exportTjDb, exportTables) => { + const appOpts = { + app: [ + { + id: app.id, + ...(versionId && { search_params: { version_id: versionId } }), + }, + ], }; - return ( - closeModal(false)} - contentClassName={`home-modal-component home-version-modal-component ${customClassName ? ` ${customClassName}` : '' - } ${darkMode && 'dark-theme'}`} - show={show} - backdrop={true} - keyboard={true} - enforceFocus={false} - animation={false} - onEscapeKeyDown={() => closeModal()} - centered - data-cy={'modal-component'} - > - - - {title} - - - - {Array.isArray(versions) ? ( - <> - -
-
- - Current Version - - -
- {versions.length >= 2 ? ( -
- - Other Versions - - {versions.map((version) => { - if (version.id !== currentVersion?.id) { - return ( - - ); - } - })} -
- ) : ( -
- No other versions found -
- )} -
-
-
- setExportTjDb(!exportTjDb)} /> -

Export ToolJet table schema

-
- - exportApp(app, null, exportTjDb, allTables)} - > - Export All - - exportApp(app, versionId, exportTjDb, tables)} - > - Export selected version - - - - ) : ( - - )} -
- ); + const requestBody = { + ...appOpts, + ...(exportTjDb && { tooljet_database: exportTables }), + organization_id: app.organization_id, + }; + + appsService + .exportResource(requestBody) + .then((data) => { + const appName = app.name.replace(/\s+/g, '-').toLowerCase(); + const fileName = `${appName}-export-${new Date().getTime()}`; + // simulate link click download + const json = JSON.stringify(data, null, 2); + const blob = new Blob([json], { type: 'application/json' }); + const href = URL.createObjectURL(blob); + const link = document.createElement('a'); + link.href = href; + link.download = fileName + '.json'; + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + closeModal(); + }) + .catch((error) => { + toast.error(`Could not export app: ${error.data.message}`, { + position: 'top-center', + }); + closeModal(); + }); + }; + + return ( + closeModal(false)} + contentClassName={`home-modal-component home-version-modal-component ${ + customClassName ? ` ${customClassName}` : '' + } ${darkMode && 'dark-theme'}`} + show={show} + backdrop={true} + keyboard={true} + enforceFocus={false} + animation={false} + onEscapeKeyDown={() => closeModal()} + centered + data-cy={'modal-component'} + > + + + {title} + + + + {Array.isArray(versions) ? ( + <> + +
+
+ + Current Version + + +
+ {versions.length >= 2 ? ( +
+ + Other Versions + + {versions.map((version) => { + if (version.id !== currentVersion?.id) { + return ( + + ); + } + })} +
+ ) : ( +
+ No other versions found +
+ )} +
+
+
+ setExportTjDb(!exportTjDb)} /> +

Export ToolJet table schema

+
+ + exportApp(app, null, exportTjDb, allTables)} + > + Export All + + exportApp(app, versionId, exportTjDb, tables)} + > + Export selected version + + + + ) : ( + + )} +
+ ); } function InputRadioField({ - versionId, - versionName, - versionCreatedAt, - checked = undefined, - key = undefined, - setVersionId, - className, + versionId, + versionName, + versionCreatedAt, + checked = undefined, + key = undefined, + setVersionId, + className, }) { - return ( - - setVersionId(target.value)} - style={{ marginLeft: '1rem' }} - className="cursor-pointer" - /> - - - ); + return ( + + setVersionId(target.value)} + style={{ marginLeft: '1rem' }} + className="cursor-pointer" + /> + + + ); } function Loader() { - return ( - -
-
Loading versions ...
-
-
-
- ); + return ( + +
+
Loading versions ...
+
+
+
+ ); } diff --git a/frontend/src/TooljetDatabase/Table/index.jsx b/frontend/src/TooljetDatabase/Table/index.jsx index 4d65b6ca2d..94e990781e 100644 --- a/frontend/src/TooljetDatabase/Table/index.jsx +++ b/frontend/src/TooljetDatabase/Table/index.jsx @@ -98,9 +98,9 @@ const Table = ({ openCreateRowDrawer, openCreateColumnDrawer }) => { () => loading ? columns.map((column) => ({ - ...column, - Cell: , - })) + ...column, + Cell: , + })) : columns, [loading, columns] ); @@ -302,7 +302,7 @@ const Table = ({ openCreateRowDrawer, openCreateColumnDrawer }) => { cell.column.id === 'selection' ? `${cell.row.values?.id}-checkbox` : `id-${cell.row.values?.id}-column-${cell.column.id}`; - const cellValue = cell.value === null ? '' : cell.value + const cellValue = cell.value === null ? '' : cell.value; return (
ability.can(Action.JoinTables, 'all')) - async joinTables(@Body() joinQueryJsonDto: any, @Param('organizationId') organizationId) { + async joinTables(@Body() tooljetDbJoinDto: TooljetDbJoinDto, @Param('organizationId') organizationId) { const params = { - joinQueryJson: { ...joinQueryJsonDto }, + joinQueryJson: { ...tooljetDbJoinDto }, }; const result = await this.tooljetDbService.perform(organizationId, 'join_tables', params); diff --git a/server/src/dto/tooljet-db-join.dto.ts b/server/src/dto/tooljet-db-join.dto.ts new file mode 100644 index 0000000000..299d4a93f1 --- /dev/null +++ b/server/src/dto/tooljet-db-join.dto.ts @@ -0,0 +1,157 @@ +import { IsString, IsArray, ValidateNested, IsIn, IsOptional, IsObject, IsNotEmpty } from 'class-validator'; +import { Type } from 'class-transformer'; + +class Table { + @IsString() + @IsNotEmpty() + name: string; + + @IsString() + @IsNotEmpty() + type: string; +} + +class Field { + @IsString() + @IsNotEmpty() + name: string; + + @IsString() + @IsNotEmpty() + table: string; +} + +class Conditions { + @IsString() + @IsIn(['AND', 'OR']) + @IsOptional() + operator: string; + + @IsArray() + @ValidateNested({ each: true }) + @Type(() => ConditionsList) + conditionsList: ConditionsList[]; +} + +class ConditionField { + @IsString() + @IsIn(['Column', 'Value'], { message: 'Condition value not specified' }) + type: string; + + @IsOptional() // present only when type is value + value: unknown; + + @IsString() + @IsOptional() // present only when type is column + table: string; + + @IsString() + @IsOptional() // present only when type is column + columnName: string; +} + +class ConditionsList { + @IsObject() + @IsNotEmpty() + @ValidateNested() + @Type(() => ConditionField) + leftField: ConditionField; + + @IsString() + @IsIn(['=', '>', '>=', '<', '<=', '!=', 'LIKE', 'NOT LIKE', 'ILIKE', 'NOT ILIKE', '~', '~*', 'IN', 'NOT IN', 'IS']) + operator: string; + + @IsObject() + @IsNotEmpty() + @ValidateNested() + @Type(() => ConditionField) + rightField: ConditionField; + + @ValidateNested() + @Type(() => Conditions) + @IsOptional() + conditions: Conditions; +} + +class Join { + @IsString() + @IsIn(['INNER', 'LEFT', 'RIGHT', 'FULL OUTER']) + joinType: string; + + @IsString() + @IsNotEmpty() + table: string; + + @ValidateNested() + @IsNotEmpty() + @Type(() => Conditions) + conditions: Conditions; +} + +class GroupBy { + @IsString() + @IsNotEmpty() + table: string; + + @IsString() + @IsNotEmpty() + columnName: string; +} + +class Order { + @IsString() + @IsNotEmpty() + columnName: string; + + @IsString() + @IsNotEmpty() + table: string; + + @IsIn(['ASC', 'DESC']) + @IsNotEmpty() + direction: string; +} + +export class TooljetDbJoinDto { + @ValidateNested() + @Type(() => Table) + @IsNotEmpty() + from: Table; + + @IsArray() + @ValidateNested({ each: true }) + @Type(() => Field) + @IsNotEmpty() + fields: Field[]; + + @IsArray() + @ValidateNested({ each: true }) + @Type(() => Join) + @IsNotEmpty() + joins: Join[]; + + @ValidateNested() + @Type(() => Conditions) + @IsOptional() + conditions: Conditions; + + @IsArray() + @ValidateNested({ each: true }) + @Type(() => GroupBy) + @IsOptional() + group_by: GroupBy[]; + + @IsArray() + @ValidateNested({ each: true }) + @Type(() => Order) + @IsOptional() + order_by: Order[]; + + @IsString() + @IsOptional() + limit: string; + + @IsString() + @IsOptional() + offset: string; +} diff --git a/server/src/all-exceptions-filter.ts b/server/src/filters/all-exceptions-filter.ts similarity index 100% rename from server/src/all-exceptions-filter.ts rename to server/src/filters/all-exceptions-filter.ts diff --git a/server/src/filters/tooljetdb-join-exceptions-filter.ts b/server/src/filters/tooljetdb-join-exceptions-filter.ts new file mode 100644 index 0000000000..b76d481bdf --- /dev/null +++ b/server/src/filters/tooljetdb-join-exceptions-filter.ts @@ -0,0 +1,17 @@ +import { Catch, ArgumentsHost, ExceptionFilter, BadRequestException } from '@nestjs/common'; + +@Catch(BadRequestException) +export class TooljetDbJoinExceptionFilter implements ExceptionFilter { + catch(exception: any, host: ArgumentsHost) { + const next = host.switchToHttp().getNext(); + + if (Array.isArray(exception.response.message)) { + const totalErrors = exception.response.message.length; + const firstErrorMessage = exception.response.message[0]; + const strippedErrorMessage = `Error: ${firstErrorMessage} (1/${totalErrors})`; + exception.response.message = strippedErrorMessage; + } + + next(exception); + } +} diff --git a/server/src/main.ts b/server/src/main.ts index 07b828c0b2..2165fb8532 100644 --- a/server/src/main.ts +++ b/server/src/main.ts @@ -7,7 +7,7 @@ import { AppModule } from './app.module'; import * as helmet from 'helmet'; import { Logger } from 'nestjs-pino'; import { urlencoded, json } from 'express'; -import { AllExceptionsFilter } from './all-exceptions-filter'; +import { AllExceptionsFilter } from './filters/all-exceptions-filter'; import { RequestMethod, ValidationPipe, VersioningType, VERSION_NEUTRAL } from '@nestjs/common'; import { ConfigService } from '@nestjs/config'; import { bootstrap as globalAgentBootstrap } from 'global-agent'; diff --git a/server/src/services/tooljet_db.service.ts b/server/src/services/tooljet_db.service.ts index 49dedea3b0..013d856c2c 100644 --- a/server/src/services/tooljet_db.service.ts +++ b/server/src/services/tooljet_db.service.ts @@ -1,9 +1,8 @@ import { BadRequestException, HttpException, Injectable, NotFoundException, Optional } from '@nestjs/common'; -import { EntityManager, In, QueryFailedError } from 'typeorm'; +import { EntityManager, In, ObjectLiteral, QueryFailedError, SelectQueryBuilder, TypeORMError } from 'typeorm'; import { InjectEntityManager } from '@nestjs/typeorm'; import { InternalTable } from 'src/entities/internal_table.entity'; -import { isString, isEmpty } from 'lodash'; -import { PostgrestProxyService } from '@services/postgrest_proxy.service'; +import { isString, isEmpty, camelCase } from 'lodash'; export type TableColumnSchema = { column_name: string; @@ -18,14 +17,32 @@ export type TableColumnSchema = { export type SupportedDataTypes = 'character varying' | 'integer' | 'bigint' | 'serial' | 'double precision' | 'boolean'; +// Patching TypeORM SelectQueryBuilder to handle for right and full outer joins +declare module 'typeorm' { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + interface SelectQueryBuilder { + rightJoin(entityOrProperty: string, alias: string, condition?: string, parameters?: ObjectLiteral): this; + fullOuterJoin(entityOrProperty: string, alias: string, condition?: string, parameters?: ObjectLiteral): this; + } +} + +SelectQueryBuilder.prototype.rightJoin = function (entityOrProperty, alias, condition, parameters) { + this.join('RIGHT', entityOrProperty, alias, condition, parameters); + return this; +}; + +SelectQueryBuilder.prototype.fullOuterJoin = function (entityOrProperty, alias, condition, parameters) { + this.join('FULL OUTER', entityOrProperty, alias, condition, parameters); + return this; +}; + @Injectable() export class TooljetDbService { constructor( private readonly manager: EntityManager, @Optional() @InjectEntityManager('tooljetDb') - private readonly tooljetDbManager: EntityManager, - private readonly postgrestProxyService: PostgrestProxyService + private readonly tooljetDbManager: EntityManager ) {} async perform(organizationId: string, action: string, params = {}) { @@ -290,14 +307,13 @@ export class TooljetDbService { }; }, {}); - const finalQuery = await this.buildJoinQuery(organizationId, joinQueryJson, internalTableIdToNameMap); - try { - return await this.tooljetDbManager.query(finalQuery); + const queryBuilder = this.buildJoinQuery(joinQueryJson, internalTableIdToNameMap); + return await queryBuilder.getRawMany(); } catch (error) { // custom error handling - for Query error - if (error instanceof QueryFailedError) { - let customErrorMessage: string = (error as QueryFailedError).message; + if (error instanceof QueryFailedError || error instanceof TypeORMError) { + let customErrorMessage: string = error.message; Object.entries(internalTableIdToNameMap).forEach(([key, value]) => { customErrorMessage = customErrorMessage.replace(key, value as string); }); @@ -307,137 +323,96 @@ export class TooljetDbService { } } - private async buildJoinQuery(_organizationId: string, queryJson, internalTableIdToNameMap) { - // Pending: For Subquery, Alias is its table name. Need to handle it on Internal Table details mapping - // Pending: SELECT Statement - Nested params --> SUM( price * quantity ) + private buildJoinQuery(queryJson, internalTableIdToNameMap): SelectQueryBuilder { + const queryBuilder: SelectQueryBuilder = this.tooljetDbManager.createQueryBuilder(); - // @description: Only SELECT & FROM statement is Mandatory, else is Optional - let finalQuery = ``; - finalQuery += `SELECT ${await this.constructSelectStatement(queryJson.fields, internalTableIdToNameMap)}`; - finalQuery += `\nFROM ${await this.constructFromStatement(queryJson, internalTableIdToNameMap)}`; - if (queryJson?.joins?.length) - finalQuery += `\n${await this.constructJoinStatements(queryJson.joins, internalTableIdToNameMap)}`; - if ( - queryJson?.conditions && - Object.keys(queryJson?.conditions).length && - queryJson?.conditions?.conditionsList.length - ) - finalQuery += `\nWHERE ${await this.constructWhereStatement(queryJson.conditions, internalTableIdToNameMap)}`; - if (queryJson?.group_by?.length) - finalQuery += `\nGROUP BY ${await this.constructGroupByStatement(queryJson.group_by, internalTableIdToNameMap)}`; - if (queryJson?.having && Object.keys(queryJson?.having).length) - finalQuery += `\nHAVING ${await this.constructWhereStatement(queryJson.having, internalTableIdToNameMap)}`; - if (queryJson?.order_by?.length) - finalQuery += `\nORDER BY ${await this.constructOrderByStatement(queryJson.order_by, internalTableIdToNameMap)}`; - if (queryJson?.limit && queryJson?.limit.length) finalQuery += `\nLIMIT ${queryJson.limit}`; - if (queryJson?.offset && queryJson?.offset.length) finalQuery += `\nOFFSET ${queryJson.offset}`; + // mandatory attributes + if (isEmpty(queryJson.fields)) throw new BadRequestException('Select statement is empty'); + if (isEmpty(queryJson.from)) throw new BadRequestException('From table is not selected'); - return finalQuery; + // select with aliased column names + queryJson.fields.forEach((field) => { + const fieldName = `"${internalTableIdToNameMap[field.table]}"."${field.name}"`; + const fieldAlias = `${internalTableIdToNameMap[field.table]}_${field.name}`; + queryBuilder.addSelect(fieldName, fieldAlias); + }); + + // from table + queryBuilder.from(queryJson.from.name, internalTableIdToNameMap[queryJson.from.name]); + + // join tables with conditions + queryJson.joins.forEach((join) => { + const joinAlias = internalTableIdToNameMap[join.table]; + const conditions = this.constructFilterConditions(join.conditions, internalTableIdToNameMap); + + const joinFunction = queryBuilder[camelCase(join.joinType) + 'Join']; + joinFunction.call(queryBuilder, join.table, joinAlias, conditions.query, conditions.params); + }); + + // conditions + if (queryJson.conditions) { + const conditions = this.constructFilterConditions(queryJson.conditions, internalTableIdToNameMap); + queryBuilder.where(conditions.query, conditions.params); + } + + // order by + if (queryJson.order_by) { + queryJson.order_by.forEach((order) => { + const orderByColumn = `"${internalTableIdToNameMap[order.table]}"."${order.columnName}"`; + queryBuilder.addOrderBy(orderByColumn, order.direction as 'ASC' | 'DESC'); + }); + } + // limit and offset + if (queryJson.limit) queryBuilder.limit(parseInt(queryJson.limit, 10)); + if (queryJson.offset) queryBuilder.offset(parseInt(queryJson.offset, 10)); + + return queryBuilder; } - // Assuming tableId is being passed, tableName to tableId mapping is removed - private constructSelectStatement(selectStatementInputList, internalTableIdToNameMap) { - if (selectStatementInputList.length) { - const selectQueryFields = selectStatementInputList - .map((field) => { - let fieldExpression = ``; - if (field.function) fieldExpression += `${field.function}(`; - fieldExpression += `${field.table ? '"' + field.table + '"' + '.' : ''}${field.name}`; - if (field.function) fieldExpression += `)`; - if (field.alias) { - fieldExpression += ` AS ${field.alias}`; - } else { - // By Default Alias has been added here for tooljetdb join flow - fieldExpression += ` AS ${internalTableIdToNameMap[field.table]}_${field.name}`; + private constructFilterConditions(conditions, internalTableIdToNameMap) { + let conditionString = ''; + const conditionParams = {}; + + const maybeParameterizeValue = (operator, paramName, value) => { + switch (operator) { + case 'IS': + if (value !== 'NULL' && value !== 'NOT NULL') { + throw new BadRequestException('Invalid value for IS operator. Allowed values are NULL or NOT NULL.'); } - return fieldExpression; - }) - .join(', '); - return selectQueryFields; - } + return value; + case 'IN': + if (!Array.isArray(value)) { + throw new BadRequestException('Invalid value for IN operator. Expected an array.'); + } + return `(:...${paramName})`; + default: + return `:${paramName}`; + } + }; - throw new BadRequestException('Select statement is empty'); - } + conditions.conditionsList.forEach((condition, index) => { + const paramName = `${condition.leftField.columnName}_${index}`; - private constructFromStatement(queryJson, _internalTableIdToNameMap) { - const { from } = queryJson; - if (from.name) { - return `${'"' + from.name + '"'} ${from.alias ? from.alias : ''}`; - } + const leftField = + condition.leftField.type == 'Column' + ? `"${internalTableIdToNameMap[condition.leftField.table]}"."${condition.leftField.columnName}"` + : `${condition.leftField.columnName}`; - throw new BadRequestException('From table is not selected'); - } + const rightField = + condition.rightField.type == 'Column' + ? `"${internalTableIdToNameMap[condition.rightField.table]}"."${condition.rightField.columnName}"` + : maybeParameterizeValue(condition.operator, paramName, condition.rightField.value); - private constructJoinStatements(joinsInputList, internalTableIdToNameMap) { - const joinStatementOutput = joinsInputList - .map((joinCondition) => { - const { table, joinType, conditions } = joinCondition; - return `${joinType} JOIN ${'"' + table + '"'} ${ - joinCondition.alias ? joinCondition.alias : '' - } ON ${this.constructWhereStatement(conditions, internalTableIdToNameMap)}`; - }) - .join('\n'); - return joinStatementOutput; - } + conditionString += `${leftField} ${condition.operator} ${rightField}`; - private constructWhereStatement(whereStatementConditions, internalTableIdToNameMap) { - const { operator = 'AND', conditionsList = [] } = whereStatementConditions; - const whereConditionOutput = conditionsList - .map((condition) => { - // @description: Recursive call to build - Sub-condition - if (condition.conditions) - return `(${this.constructWhereStatement(condition.conditions, internalTableIdToNameMap)})`; - // @description: Building a Condition for 'WHERE & HAVING statements' - LHS, operator and RHS - // @description: In LHS & RHS it is not mandatory to provide table name, but column name is mandatory - // @description: In LHS & RHS - We get function only in HAVING statement - const { operator, leftField, rightField } = condition; - // @desc: When 'IS' operator is choosed, 'NULL' & 'NOT NULL' keywords will be provided as value and it should not be converted to string - const keywords = ['NULL', 'NOT NULL']; + conditionParams[paramName] = condition.rightField.value; - let leftSideInput = ``; - if (leftField.type === 'Value') { - const dontAddQuotes = - (keywords.includes(leftField.value) && operator === 'IS') || operator === 'IN' || operator === 'NOT IN'; + if (index < conditions.conditionsList.length - 1) { + conditionString += ` ${conditions.operator} `; + } + }); - leftSideInput += dontAddQuotes ? leftField.value : this.addQuotesIfString(leftField.value); - } else { - if (leftField.function) leftSideInput += `${leftField.function}(`; - leftSideInput += `${leftField.table ? '"' + leftField.table + '"' + '.' : ''}${leftField.columnName}`; - if (leftField.function) leftSideInput += `)`; - } - - let rightSideInput = ``; - if (rightField.type === 'Value') { - const dontAddQuotes = - (keywords.includes(rightField.value) && operator === 'IS') || operator === 'IN' || operator === 'NOT IN'; - - rightSideInput += dontAddQuotes ? rightField.value : this.addQuotesIfString(rightField.value); - } else { - if (rightField.function) rightSideInput += `${rightField.function}(`; - rightSideInput += `${rightField.table ? '"' + rightField.table + '"' + '.' : ''}${rightField.columnName}`; - if (rightField.function) rightSideInput += `)`; - } - - return `${leftSideInput} ${operator} ${rightSideInput}`; - }) - .join(` ${operator} `); - return whereConditionOutput; - } - - private constructGroupByStatement(groupByInputList, _internalTableIdToNameMap) { - return groupByInputList - .map((groupByInput) => `${'"' + groupByInput.table + '"'}.${groupByInput.columnName}`) - .join(', '); - } - - private constructOrderByStatement(orderByInputList, internalTableIdToNameMap) { - // @description: For "ORDER BY" statement table field is optional. But column_name & order_by direction is mandatory - return orderByInputList - .map((orderByInput) => { - const { columnName, direction } = orderByInput; - return `${orderByInput.table ? '"' + orderByInput.table + '"' + '.' : ''}${columnName} ${direction}`; - }) - .join(`, `); + return { query: `(${conditionString})`, params: conditionParams }; } private async findOrFailInternalTableFromTableId(requestedTableIdList: Array, organizationId: string) { From 17ff9f540cb8f31912fe926a62f88f714af68f67 Mon Sep 17 00:00:00 2001 From: Akshay Sasidharan Date: Fri, 17 Nov 2023 12:36:10 +0530 Subject: [PATCH 40/63] explictly check for multipart headers for restapi --- frontend/package-lock.json | 2 ++ plugins/packages/common/lib/index.ts | 2 ++ plugins/packages/common/lib/oauth.ts | 6 ++++++ plugins/packages/restapi/lib/index.ts | 23 +++++++++++------------ 4 files changed, 21 insertions(+), 12 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index d8c2c5848d..7710bfdc04 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -20295,6 +20295,7 @@ "version": "1.0.0", "dependencies": { "@tooljet-plugins/common": "file:../common", + "form-data": "^4.0.0", "got": "^11.8.6", "react": "^17.0.2", "rimraf": "^3.0.2", @@ -68031,6 +68032,7 @@ "version": "file:../plugins/packages/restapi", "requires": { "@tooljet-plugins/common": "file:../common", + "form-data": "^4.0.0", "got": "^11.8.6", "react": "^17.0.2", "rimraf": "^3.0.2", diff --git a/plugins/packages/common/lib/index.ts b/plugins/packages/common/lib/index.ts index 94ab72e78c..ab03e73bda 100644 --- a/plugins/packages/common/lib/index.ts +++ b/plugins/packages/common/lib/index.ts @@ -20,6 +20,7 @@ import { getAuthUrl, sanitizeCustomParams, checkIfContentTypeIsURLenc, + checkIfContentTypeIsMultipartFormData, validateAndSetRequestOptionsBasedOnAuthType, } from './oauth'; @@ -43,6 +44,7 @@ export { sanitizeHeaders, sanitizeSearchParams, checkIfContentTypeIsURLenc, + checkIfContentTypeIsMultipartFormData, validateAndSetRequestOptionsBasedOnAuthType, fetchHttpsCertsForCustomCA, }; diff --git a/plugins/packages/common/lib/oauth.ts b/plugins/packages/common/lib/oauth.ts index 7d50d92cd4..8c38e97757 100644 --- a/plugins/packages/common/lib/oauth.ts +++ b/plugins/packages/common/lib/oauth.ts @@ -13,6 +13,12 @@ export function checkIfContentTypeIsURLenc(headers: [] = []) { return contentType === 'application/x-www-form-urlencoded'; } +export function checkIfContentTypeIsMultipartFormData(headers: [] = []) { + const objectHeaders = Object.fromEntries(headers); + const contentType = objectHeaders['content-type'] ?? objectHeaders['Content-Type']; + return contentType === 'multipart/form-data'; +} + export function sanitizeCustomParams(customArray: any) { const params = Object.fromEntries(customArray ?? []); Object.keys(params).forEach((key) => (params[key] === '' ? delete params[key] : {})); diff --git a/plugins/packages/restapi/lib/index.ts b/plugins/packages/restapi/lib/index.ts index 7683fc5097..6622fb78fd 100644 --- a/plugins/packages/restapi/lib/index.ts +++ b/plugins/packages/restapi/lib/index.ts @@ -11,6 +11,7 @@ import { OAuthUnauthorizedClientError, getRefreshedToken, checkIfContentTypeIsURLenc, + checkIfContentTypeIsMultipartFormData, isEmpty, validateAndSetRequestOptionsBasedOnAuthType, sanitizeHeaders, @@ -83,6 +84,7 @@ export default class RestapiQueryService implements QueryService { /* REST API queries can be adhoc or associated with a REST API datasource */ const hasDataSource = dataSourceId !== undefined; const isUrlEncoded = checkIfContentTypeIsURLenc(queryOptions['headers']); + const isMultipartFormData = checkIfContentTypeIsMultipartFormData(queryOptions['headers']); /* Prefixing the base url of datasource if datasource exists */ const url = hasDataSource ? `${sourceOptions.url || ''}${queryOptions.url || ''}` : queryOptions.url; @@ -101,13 +103,15 @@ export default class RestapiQueryService implements QueryService { }, }; - const hasFiles = Object.values(json || {}).some((item) => { - return isFileObject(item); - }); + const hasFiles = (json) => { + return Object.values(json || {}).some((item) => { + return isFileObject(item); + }); + }; if (isUrlEncoded) { - requestOptions.form = json; - } else if (hasFiles) { + _requestOptions.form = json; + } else if (isMultipartFormData && hasFiles(json)) { const form = new FormData(); for (const key in json) { const value = json[key]; @@ -122,16 +126,11 @@ export default class RestapiQueryService implements QueryService { form.append(key, value); } } - - requestOptions.body = form; + _requestOptions.body = form; } else { - requestOptions.json = json; + _requestOptions.json = json; } - if (authType === 'basic') { - requestOptions.username = sourceOptions.username; - requestOptions.password = sourceOptions.password; - } const authValidatedRequestOptions = validateAndSetRequestOptionsBasedOnAuthType( sourceOptions, context, From 80dc61e92c38e068de4c2376c7bb98ed20db5021 Mon Sep 17 00:00:00 2001 From: Akshay Sasidharan Date: Fri, 17 Nov 2023 16:06:09 +0530 Subject: [PATCH 41/63] make join errors user friendly --- .../TooljetDatabase/JoinTable.jsx | 1 + server/src/dto/tooljet-db-join.dto.ts | 41 ++++++++++--------- .../tooljetdb-join-exceptions-filter.ts | 2 +- 3 files changed, 24 insertions(+), 20 deletions(-) diff --git a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinTable.jsx b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinTable.jsx index 25cb00b5df..8c40537af3 100644 --- a/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinTable.jsx +++ b/frontend/src/Editor/QueryManager/QueryEditors/TooljetDatabase/JoinTable.jsx @@ -222,6 +222,7 @@ const RenderFilterSection = ({ darkMode }) => { }; } else { editedFilterCondition = { + operator: 'AND', ...conditions, conditionsList: [...conditionsList, { ...emptyConditionTemplate }], }; diff --git a/server/src/dto/tooljet-db-join.dto.ts b/server/src/dto/tooljet-db-join.dto.ts index 299d4a93f1..82b82c874b 100644 --- a/server/src/dto/tooljet-db-join.dto.ts +++ b/server/src/dto/tooljet-db-join.dto.ts @@ -1,29 +1,31 @@ import { IsString, IsArray, ValidateNested, IsIn, IsOptional, IsObject, IsNotEmpty } from 'class-validator'; import { Type } from 'class-transformer'; +// TODO: We need to remove custom error messages and make use of dto +// default errors and let frontend show the errors on the specific fields class Table { @IsString() - @IsNotEmpty() + @IsNotEmpty({ message: '::Table name for join not selected' }) name: string; @IsString() - @IsNotEmpty() + @IsNotEmpty({ message: '::Table type for join not selected' }) type: string; } class Field { @IsString() - @IsNotEmpty() + @IsNotEmpty({ message: '::Columns names for join not selected' }) name: string; @IsString() - @IsNotEmpty() + @IsNotEmpty({ message: '::Table names for join not selected' }) table: string; } class Conditions { @IsString() - @IsIn(['AND', 'OR']) + @IsIn(['AND', 'OR'], { message: '::Operator for condition not selected (AND | OR)' }) @IsOptional() operator: string; @@ -35,7 +37,7 @@ class Conditions { class ConditionField { @IsString() - @IsIn(['Column', 'Value'], { message: 'Condition value not specified' }) + @IsIn(['Column', 'Value'], { message: '::Condition parameter not specified' }) type: string; @IsOptional() // present only when type is value @@ -52,17 +54,19 @@ class ConditionField { class ConditionsList { @IsObject() - @IsNotEmpty() + @IsNotEmpty({ message: '::Condition value is empty' }) @ValidateNested() @Type(() => ConditionField) leftField: ConditionField; @IsString() - @IsIn(['=', '>', '>=', '<', '<=', '!=', 'LIKE', 'NOT LIKE', 'ILIKE', 'NOT ILIKE', '~', '~*', 'IN', 'NOT IN', 'IS']) + @IsIn(['=', '>', '>=', '<', '<=', '!=', 'LIKE', 'NOT LIKE', 'ILIKE', 'NOT ILIKE', '~', '~*', 'IN', 'NOT IN', 'IS'], { + message: '::Condition operator not selected', + }) operator: string; @IsObject() - @IsNotEmpty() + @IsNotEmpty({ message: '::Condition value is empty' }) @ValidateNested() @Type(() => ConditionField) rightField: ConditionField; @@ -75,15 +79,15 @@ class ConditionsList { class Join { @IsString() - @IsIn(['INNER', 'LEFT', 'RIGHT', 'FULL OUTER']) + @IsIn(['INNER', 'LEFT', 'RIGHT', 'FULL OUTER'], { message: '::Join type not selected' }) joinType: string; @IsString() - @IsNotEmpty() + @IsNotEmpty({ message: '::Join table is not selected' }) table: string; @ValidateNested() - @IsNotEmpty() + @IsNotEmpty({ message: '::Join condition is not selected' }) @Type(() => Conditions) conditions: Conditions; } @@ -100,34 +104,33 @@ class GroupBy { class Order { @IsString() - @IsNotEmpty() + @IsNotEmpty({ message: '::Sort column not selected' }) columnName: string; @IsString() - @IsNotEmpty() + @IsNotEmpty({ message: '::Sort table not selected' }) table: string; - @IsIn(['ASC', 'DESC']) - @IsNotEmpty() + @IsIn(['ASC', 'DESC'], { message: '::Sort direction not selected' }) direction: string; } export class TooljetDbJoinDto { @ValidateNested() @Type(() => Table) - @IsNotEmpty() + @IsNotEmpty({ message: '::Join table is empty' }) from: Table; @IsArray() @ValidateNested({ each: true }) @Type(() => Field) - @IsNotEmpty() + @IsNotEmpty({ message: '::Join fields are empty' }) fields: Field[]; @IsArray() @ValidateNested({ each: true }) @Type(() => Join) - @IsNotEmpty() + @IsNotEmpty({ message: '::Join parameters are empty' }) joins: Join[]; @ValidateNested() diff --git a/server/src/filters/tooljetdb-join-exceptions-filter.ts b/server/src/filters/tooljetdb-join-exceptions-filter.ts index b76d481bdf..3accbce7c2 100644 --- a/server/src/filters/tooljetdb-join-exceptions-filter.ts +++ b/server/src/filters/tooljetdb-join-exceptions-filter.ts @@ -7,7 +7,7 @@ export class TooljetDbJoinExceptionFilter implements ExceptionFilter { if (Array.isArray(exception.response.message)) { const totalErrors = exception.response.message.length; - const firstErrorMessage = exception.response.message[0]; + const firstErrorMessage = exception.response.message[0].split('::')[1]; const strippedErrorMessage = `Error: ${firstErrorMessage} (1/${totalErrors})`; exception.response.message = strippedErrorMessage; } From 9f61f676dcd9bf8f2620143ea449eb8c9adf13ab Mon Sep 17 00:00:00 2001 From: Ajith KV Date: Fri, 17 Nov 2023 16:29:04 +0530 Subject: [PATCH 42/63] Added cyppress test case for creating and editing workspace (#8159) * Add cyppress test case for creating and editing workspace * Add wait * Modify test case for action --- .../cypress/constants/selectors/common.js | 2 +- .../cypress/constants/selectors/dashboard.js | 15 + .../cypress/e2e/workspace/errorPage.cy.js | 3 +- .../cypress/e2e/workspace/workspace.cy.js | 304 ++++++++++++++++++ 4 files changed, 321 insertions(+), 3 deletions(-) create mode 100644 cypress-tests/cypress/e2e/workspace/workspace.cy.js diff --git a/cypress-tests/cypress/constants/selectors/common.js b/cypress-tests/cypress/constants/selectors/common.js index 03e3d0c510..58118d0a39 100644 --- a/cypress-tests/cypress/constants/selectors/common.js +++ b/cypress-tests/cypress/constants/selectors/common.js @@ -59,7 +59,6 @@ export const commonSelectors = { filterButton: '[data-cy="filter-button"]', copyIcon: '[data-cy="copy-icon"]', addWorkspaceButton: '[data-cy="add-new-workspace-link"]', - workspaceNameInput: '[data-cy="workspace-name-input-field"]', createWorkspaceButton: '[data-cy="create-workspace-button"]', workspaceLoginUrl: "[data-cy=workspace-login-url]", workspaceName: '[data-cy="workspace-name"]', @@ -166,6 +165,7 @@ export const commonSelectors = { emptyAppCreateButton: "[data-cy='button-new-app-from-scratch']", globalDataSourceIcon: '[data-cy="icon-global-datasources"]', addNewDataSourceButton: '[data-cy="add-new-data-source-button"]', + saveButton: '[data-cy="save-button"]', onboardingRadioButton: (radioButtonText) => { return `[data-cy="${cyParamName(radioButtonText)}-radio-button"]`; diff --git a/cypress-tests/cypress/constants/selectors/dashboard.js b/cypress-tests/cypress/constants/selectors/dashboard.js index eb5ae4c914..e9b2876008 100644 --- a/cypress-tests/cypress/constants/selectors/dashboard.js +++ b/cypress-tests/cypress/constants/selectors/dashboard.js @@ -41,4 +41,19 @@ export const dashboardSelector = { folderName: (folderName) => { return `[data-cy="${cyParamName(folderName)}-name"]`; }, + + createWorkspaceTitle: '[data-cy="create-workspace-title"]', + workspaceNameLabel: '[data-cy="workspace-name-label"]', + workspaceNameInfoLabel: '[data-cy="workspace-name-info-label"]', + slugNameInputLabel: '[data-cy="slug-input-label"]', + workspaceSlugInputField: '[data-cy="workspace-slug-input-field"]', + slugInfoLabel: '[data-cy="slug-info-label"]', + workspaceLinkLabel: '[data-cy="workspace-link-label"]', + slugField: '[data-cy="slug-field"]', + createWorkspaceButton: '[data-cy="create-workspace-button"]', + workspaceErrorLabel: '[data-cy="workspace-error-label"]', + inputLabelError: '[data-cy="input-label-error"]', + slugSuccessLabel: '[data-cy="slug-sucess-label"]', + slugErrorLabel: '[data-cy="slug-error-label"]', + editWorkspaceTitle: '[data-cy="edit-workspace-title"]', }; diff --git a/cypress-tests/cypress/e2e/workspace/errorPage.cy.js b/cypress-tests/cypress/e2e/workspace/errorPage.cy.js index a5df0c3d1d..92805624d0 100644 --- a/cypress-tests/cypress/e2e/workspace/errorPage.cy.js +++ b/cypress-tests/cypress/e2e/workspace/errorPage.cy.js @@ -12,7 +12,7 @@ import { commonText } from "Texts/common"; import { inviteUser } from "Support/utils/manageUsers"; import { userSignUp } from "Support/utils/onboarding"; -describe("App share functionality", () => { +describe("Redirection error pages", () => { const data = {}; data.appName = `${fake.companyName} App`; data.firstName = fake.firstName; @@ -25,7 +25,6 @@ describe("App share functionality", () => { before(() => { cy.apiLogin(); inviteUser(data.firstName, data.email); - logout(); }); diff --git a/cypress-tests/cypress/e2e/workspace/workspace.cy.js b/cypress-tests/cypress/e2e/workspace/workspace.cy.js new file mode 100644 index 0000000000..35052846c4 --- /dev/null +++ b/cypress-tests/cypress/e2e/workspace/workspace.cy.js @@ -0,0 +1,304 @@ +import { fake } from "Fixtures/fake"; +import { commonSelectors, commonWidgetSelector } from "Selectors/common"; +import { dashboardSelector } from "Selectors/dashboard"; +import { inviteUser } from "Support/utils/manageUsers"; + +const data = {}; +data.firstName = fake.firstName; +data.workspaceName = `${fake.firstName}-workspace`; +data.workspaceSlug = `${data.workspaceName.toLowerCase()}-slug`; +describe("Workspace", () => { + before(() => { + cy.appUILogin(); + }); + + it("Should verify create and edit workspace modal and flow", () => { + cy.get(commonSelectors.workspaceName).click(); + cy.get(commonSelectors.addWorkspaceButton).click(); + cy.get(dashboardSelector.createWorkspaceTitle).verifyVisibleElement( + "have.text", + "Create workspace" + ); + cy.get(commonWidgetSelector.modalCloseButton).should("be.visible"); + cy.get(dashboardSelector.workspaceNameLabel).verifyVisibleElement( + "have.text", + "Workspace name" + ); + cy.get(commonSelectors.workspaceNameInputField).verifyVisibleElement( + "have.attr", + "placeholder", + "Workspace name" + ); + cy.get(dashboardSelector.workspaceNameInfoLabel).verifyVisibleElement( + "have.text", + "Name must be unique and max 50 characters" + ); + cy.get(dashboardSelector.slugNameInputLabel).verifyVisibleElement( + "have.text", + "Unique workspace slug" + ); + cy.get(dashboardSelector.workspaceSlugInputField).verifyVisibleElement( + "have.attr", + "placeholder", + "Unique workspace slug" + ); + cy.get(dashboardSelector.slugInfoLabel).verifyVisibleElement( + "have.text", + "URL-friendly 'slug' consists of lowercase letters, numbers, and hyphens" + ); + cy.get(dashboardSelector.workspaceLinkLabel).verifyVisibleElement( + "have.text", + "Workspace link" + ); + cy.get(dashboardSelector.slugField).verifyVisibleElement( + "have.text", + "http://localhost:8082/" + ); + cy.get(commonSelectors.cancelButton).verifyVisibleElement( + "have.text", + "Cancel" + ); + cy.get(dashboardSelector.createWorkspaceButton).verifyVisibleElement( + "have.text", + "Create workspace" + ); + cy.get(dashboardSelector.createWorkspaceButton).should("be.disabled"); + cy.get(commonWidgetSelector.modalCloseButton).click(); + + cy.get(commonSelectors.workspaceName).click(); + cy.get(commonSelectors.addWorkspaceButton).click(); + cy.get(commonSelectors.workspaceNameInputField).type(" ").clear(); + cy.get(dashboardSelector.workspaceErrorLabel).verifyVisibleElement( + "have.text", + "Workspace name can't be empty" + ); + + cy.clearAndType(commonSelectors.workspaceNameInputField, "My workspace"); + cy.get(dashboardSelector.workspaceErrorLabel).verifyVisibleElement( + "have.text", + "Name must be unique" + ); + + cy.clearAndType( + commonSelectors.workspaceNameInputField, + data.workspaceName + ); + cy.get(dashboardSelector.createWorkspaceButton).should("be.disabled"); + + cy.get(commonSelectors.workspaceNameInputField).clear(); + cy.get(dashboardSelector.workspaceSlugInputField).type(" ").clear(); + cy.get(dashboardSelector.inputLabelError).verifyVisibleElement( + "have.text", + "Workspace slug can't be empty" + ); + + cy.clearAndType(dashboardSelector.workspaceSlugInputField, " test"); + cy.get(dashboardSelector.inputLabelError).verifyVisibleElement( + "have.text", + "Cannot contain spaces" + ); + + cy.clearAndType(dashboardSelector.workspaceSlugInputField, "!@#$%_^"); + cy.get(dashboardSelector.inputLabelError).verifyVisibleElement( + "have.text", + "Special characters are not accepted." + ); + + cy.clearAndType(dashboardSelector.workspaceSlugInputField, "my-workspace"); + cy.get(dashboardSelector.inputLabelError).verifyVisibleElement( + "have.text", + "Slug must be unique" + ); + + cy.clearAndType( + dashboardSelector.workspaceSlugInputField, + data.workspaceSlug + ); + cy.get(dashboardSelector.slugSuccessLabel).verifyVisibleElement( + "have.text", + "Slug accepted!" + ); + cy.get(dashboardSelector.slugField).verifyVisibleElement( + "have.text", + `http://localhost:8082/${data.workspaceSlug}` + ); + cy.get(dashboardSelector.slugErrorLabel).verifyVisibleElement( + "have.text", + "Link updated successfully!" + ); + cy.get(dashboardSelector.createWorkspaceButton).should("be.disabled"); + + cy.clearAndType(dashboardSelector.workspaceSlugInputField, "my-workspace"); + cy.wait(1000); + + cy.clearAndType( + commonSelectors.workspaceNameInputField, + data.workspaceName + ); + cy.wait(1000); + cy.get(commonSelectors.cancelButton).click(); + + cy.wait(2000); + cy.get(commonSelectors.workspaceName).click(); + cy.get(commonSelectors.addWorkspaceButton).click(); + cy.get(commonSelectors.workspaceNameInputField).verifyVisibleElement( + "have.attr", + "placeholder", + "Workspace name" + ); + cy.get(dashboardSelector.workspaceSlugInputField).verifyVisibleElement( + "have.attr", + "placeholder", + "Unique workspace slug" + ); + cy.get(dashboardSelector.createWorkspaceButton).should("be.disabled"); + + cy.wait(1000); + cy.get(commonSelectors.workspaceNameInputField) + .clear() + .type(data.workspaceName); + cy.wait(1000); + cy.get(dashboardSelector.workspaceSlugInputField) + .clear() + .type(data.workspaceSlug); + cy.wait(4000); + cy.get(dashboardSelector.createWorkspaceButton) + .should("be.enabled") + .click(); + + cy.wait(1000); + cy.get(commonSelectors.workspaceName).verifyVisibleElement( + "have.text", + data.workspaceName + ); + cy.url().should("eq", `http://localhost:8082/${data.workspaceSlug}`); + + cy.get(commonSelectors.workspaceName).click(); + cy.get(commonSelectors.editRectangleIcon).click(); + + cy.get(dashboardSelector.editWorkspaceTitle).verifyVisibleElement( + "have.text", + "Edit workspace" + ); + cy.get(commonWidgetSelector.modalCloseButton).should("be.visible"); + cy.get(dashboardSelector.workspaceNameLabel).verifyVisibleElement( + "have.text", + "Workspace name" + ); + cy.get(commonSelectors.workspaceNameInputField).verifyVisibleElement( + "have.value", + data.workspaceName + ); + cy.get(dashboardSelector.workspaceNameInfoLabel).verifyVisibleElement( + "have.text", + "Name must be unique and max 50 characters" + ); + cy.get(dashboardSelector.slugNameInputLabel).verifyVisibleElement( + "have.text", + "Unique workspace slug" + ); + cy.get(dashboardSelector.workspaceSlugInputField).verifyVisibleElement( + "have.value", + data.workspaceSlug + ); + cy.get(dashboardSelector.slugInfoLabel).verifyVisibleElement( + "have.text", + "URL-friendly 'slug' consists of lowercase letters, numbers, and hyphens" + ); + cy.get(dashboardSelector.workspaceLinkLabel).verifyVisibleElement( + "have.text", + "Workspace link" + ); + cy.get(dashboardSelector.slugField).verifyVisibleElement( + "have.text", + `http://localhost:8082/${data.workspaceSlug}` + ); + cy.get(commonSelectors.cancelButton).verifyVisibleElement( + "have.text", + "Cancel" + ); + cy.get(commonSelectors.saveButton).verifyVisibleElement( + "have.text", + "Save" + ); + cy.get(commonSelectors.saveButton).should("be.disabled"); + + cy.get(commonSelectors.workspaceNameInputField).clear(); + cy.get(dashboardSelector.workspaceErrorLabel).verifyVisibleElement( + "have.text", + "Workspace name can't be empty" + ); + + cy.clearAndType(commonSelectors.workspaceNameInputField, "My workspace"); + cy.get(dashboardSelector.workspaceErrorLabel).verifyVisibleElement( + "have.text", + "Name must be unique" + ); + + cy.get(dashboardSelector.workspaceSlugInputField).clear(); + cy.get(dashboardSelector.inputLabelError).verifyVisibleElement( + "have.text", + "Workspace slug can't be empty" + ); + + cy.clearAndType(dashboardSelector.workspaceSlugInputField, " test"); + cy.get(dashboardSelector.inputLabelError).verifyVisibleElement( + "have.text", + "Cannot contain spaces" + ); + + cy.clearAndType(dashboardSelector.workspaceSlugInputField, "!@#$%_^"); + cy.get(dashboardSelector.inputLabelError).verifyVisibleElement( + "have.text", + "Special characters are not accepted." + ); + + cy.clearAndType(dashboardSelector.workspaceSlugInputField, "my-workspace"); + cy.get(dashboardSelector.inputLabelError).verifyVisibleElement( + "have.text", + "Slug must be unique" + ); + + cy.get(dashboardSelector.workspaceSlugInputField).clear(); + cy.get(commonSelectors.cancelButton).click(); + + cy.wait(3000); + cy.get(commonSelectors.workspaceName).click(); + cy.get(commonSelectors.editRectangleIcon).click(); + cy.get(commonWidgetSelector.modalCloseButton).click(); + cy.get(commonSelectors.workspaceName).click(); + cy.get(commonSelectors.editRectangleIcon).click(); + + cy.get(commonSelectors.workspaceNameInputField).verifyVisibleElement( + "have.value", + data.workspaceName + ); + cy.get(dashboardSelector.workspaceSlugInputField).verifyVisibleElement( + "have.value", + data.workspaceSlug + ); + cy.get(commonSelectors.saveButton).should("be.disabled"); + + data.workspaceName = `${fake.firstName}-workspace`; + data.workspaceSlug = `${data.workspaceName.toLowerCase()}-slug`; + + cy.clearAndType( + commonSelectors.workspaceNameInputField, + data.workspaceName + ); + cy.wait(1000); + cy.clearAndType( + dashboardSelector.workspaceSlugInputField, + data.workspaceSlug + ); + cy.wait(1500); + cy.get(commonSelectors.saveButton).should("be.enabled").click(); + + cy.wait(1000); + cy.get(commonSelectors.workspaceName).verifyVisibleElement( + "have.text", + data.workspaceName + ); + cy.url().should("eq", `http://localhost:8082/${data.workspaceSlug}`); + }); +}); From 04f98018bed1c57828f10276ba36c759e91e2db2 Mon Sep 17 00:00:00 2001 From: Mekhla Asopa <59684099+Mekhla-Asopa@users.noreply.github.com> Date: Mon, 20 Nov 2023 16:10:48 +0530 Subject: [PATCH 43/63] Updated import spec (#8174) --- .../cypress/constants/selectors/exportImport.js | 2 ++ cypress-tests/cypress/e2e/exportImport/import.cy.js | 12 ++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/cypress-tests/cypress/constants/selectors/exportImport.js b/cypress-tests/cypress/constants/selectors/exportImport.js index 7112bbfc46..5a4be317ea 100644 --- a/cypress-tests/cypress/constants/selectors/exportImport.js +++ b/cypress-tests/cypress/constants/selectors/exportImport.js @@ -39,4 +39,6 @@ export const importSelectors = { importAnApplication: '[data-cy="import-an-application"]', importOptionLabel: '[data-cy="import-option-label"]', importOptionInput: '[data-cy="import-option-input"]', + importAppTitle: '[data-cy="import-app-title"]', + importAppButton: '[data-cy="import-app"]', }; diff --git a/cypress-tests/cypress/e2e/exportImport/import.cy.js b/cypress-tests/cypress/e2e/exportImport/import.cy.js index dab1aebc91..0239820b01 100644 --- a/cypress-tests/cypress/e2e/exportImport/import.cy.js +++ b/cypress-tests/cypress/e2e/exportImport/import.cy.js @@ -66,8 +66,8 @@ describe("App Import Functionality", () => { cy.get(importSelectors.importOptionInput).eq(0).selectFile(appFile, { force: true, }); - cy.get('[data-cy="import-app-title"]').should("be.visible"); - cy.get('[data-cy="Import app"]').click(); + cy.get(importSelectors.importAppTitle).should("be.visible"); + cy.get(importSelectors.importAppButton).click(); cy.get(".go3958317564") .should("be.visible") .and("have.text", importText.appImportedToastMessage); @@ -116,8 +116,8 @@ describe("App Import Functionality", () => { force: true, }); - cy.get('[data-cy="import-app-title"]').should("be.visible"); - cy.get('[data-cy="Import app"]').click(); + cy.get(importSelectors.importAppTitle).should("be.visible"); + cy.get(importSelectors.importAppButton).click(); cy.get(".go3958317564") .should("be.visible") .and("have.text", importText.appImportedToastMessage); @@ -188,8 +188,8 @@ describe("App Import Functionality", () => { force: true, } ); - cy.get('[data-cy="import-app-title"]').should("be.visible"); - cy.get('[data-cy="Import app"]').click(); + cy.get(importSelectors.importAppTitle).should("be.visible"); + cy.get(importSelectors.importAppButton).click(); cy.get(".go3958317564") .should("be.visible") .and("have.text", importText.appImportedToastMessage); From b1e6cba9cee23e7dc8c8c0335a3ff0b7edc8b943 Mon Sep 17 00:00:00 2001 From: Mekhla Asopa <59684099+Mekhla-Asopa@users.noreply.github.com> Date: Mon, 20 Nov 2023 16:14:27 +0530 Subject: [PATCH 44/63] Updated data-cy for bulk update (#7924) * Updated cypess mysql spec (#7717) * Updated data-cy for bulk update --- .../src/TooljetDatabase/Drawers/BulkUploadDrawer/index.jsx | 7 ++++--- .../src/TooljetDatabase/Drawers/EditRowDrawer/index.jsx | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/src/TooljetDatabase/Drawers/BulkUploadDrawer/index.jsx b/frontend/src/TooljetDatabase/Drawers/BulkUploadDrawer/index.jsx index 346cc365ec..7a506fb832 100644 --- a/frontend/src/TooljetDatabase/Drawers/BulkUploadDrawer/index.jsx +++ b/frontend/src/TooljetDatabase/Drawers/BulkUploadDrawer/index.jsx @@ -64,9 +64,10 @@ function BulkUploadDrawer({ @@ -79,7 +80,7 @@ function BulkUploadDrawer({ >
-

+

Bulk upload data

@@ -127,7 +128,7 @@ function BulkUploadDrawer({ 0 || errors.server.length > 0} - data-cy={`save-changes-button`} + data-cy={`upload-data-button`} onClick={handleBulkUpload} fill="#fff" leftIcon="floppydisk" diff --git a/frontend/src/TooljetDatabase/Drawers/EditRowDrawer/index.jsx b/frontend/src/TooljetDatabase/Drawers/EditRowDrawer/index.jsx index 564cd10359..3892bcea50 100644 --- a/frontend/src/TooljetDatabase/Drawers/EditRowDrawer/index.jsx +++ b/frontend/src/TooljetDatabase/Drawers/EditRowDrawer/index.jsx @@ -13,6 +13,7 @@ const EditRowDrawer = ({ isCreateRowDrawerOpen, setIsCreateRowDrawerOpen }) => {
-## Manage Instance Settings +## Manage Settings
@@ -140,15 +140,15 @@ The user will become Super Admin and the Type column will update from **`workspa When a user joins a workspace, they are provided with their own personal workspace and option to create new workspaces. -Super Admins can **control** this behavior from the Manage Instance Settings page, they can **toggle off** the option to **Allow personal workspace**. Now whenever a user joins a workspace they won't be provided a personal workspace nor they will be able to create a new workspace in the instance. +Super Admins can **control** this behavior from the Manage Settings page, they can **toggle off** the option to **Allow personal workspace**. Now whenever a user joins a workspace they won't be provided a personal workspace nor they will be able to create a new workspace in the instance. ### Enable multiplayer editing -Super Admins can enable multiplayer editing from the Manage Instance Settings page. Once enabled, users will be able to edit the same app simultaneously resulting in real-time collaboration. +Super Admins can enable multiplayer editing from the Manage Settings page. Once enabled, users will be able to edit the same app simultaneously resulting in real-time collaboration. ## License -Manage the instance license via the **Instance Settings** page. Super Admins have the capability to update the instance's license key from this page. +Manage the instance license via the **Settings** page. Super Admins have the capability to update the instance's license key from this page. Check out the [License](/docs/licensing) page for more details. diff --git a/docs/docs/Enterprise/white-label.md b/docs/docs/Enterprise/white-label.md index 2f91cf349a..3199b55b72 100644 --- a/docs/docs/Enterprise/white-label.md +++ b/docs/docs/Enterprise/white-label.md @@ -35,7 +35,7 @@ With this feature, you gain the ability to rebrand the following key elements: ## Configuration -To enable white labelling, you'll need to go to the **Instance Settings** from the Dashboard and click on the `White labelling` tab. On the White labelling page, you'll be able to configure the following: +To enable white labelling, you'll need to go to the **Settings** from the Dashboard and click on the `White labelling` tab. On the White labelling page, you'll be able to configure the following: - **Application Logo**: Add the URL of the image you want to use as your application logo. Preferred dimensions of the logo are: width `130px` and height `26px`. - **Favicon**: Enter the URL of the image you want to use as your application's favicon. Preferred dimensions of the favicon are: width `32px` and height `32px` or `16px` and height `16px`. diff --git a/docs/docs/dashboard.md b/docs/docs/dashboard.md index 821e12663f..0a3c06ab33 100644 --- a/docs/docs/dashboard.md +++ b/docs/docs/dashboard.md @@ -5,7 +5,7 @@ title: Dashboard The ToolJet Dashboard is the initial landing page that you see upon logging into your workspace. This interface serves as a central hub where you can access a variety of features. Primarily, it displays all the applications you've created within ToolJet. Moreover, you have the capability to create new workspaces and applications directly from this dashboard. Additionally, it provides an option to create folders for categorizing and managing applications for easier organization, access control, and workflow management. -Furthermore, the dashboard serves as a gateway to various essential sections, such as **[Workflows](/docs/workflows/overview)**, **[ToolJet Database](/docs/tooljet-database)**, **[Data Sources](/docs/data-sources/overview)**, **[Marketplace](/docs/marketplace/marketplace-overview)**, **[Workspace Settings](/docs/tutorial/manage-users-groups)**, **[Instance Settings](/docs/enterprise/superadmin/#instance-settings)**, and **[Audit logs](/docs/enterprise/audit_logs/)**. You can effortlessly navigate to these sections directly from the dashboard. +Furthermore, the dashboard serves as a gateway to various essential sections, such as **[Workflows](/docs/workflows/overview)**, **[ToolJet Database](/docs/tooljet-database)**, **[Data Sources](/docs/data-sources/overview)**, **[Marketplace](/docs/marketplace/marketplace-overview)**, **[Workspace Settings](/docs/tutorial/manage-users-groups)**, **[Settings](/docs/enterprise/superadmin/#settings)**, and **[Audit logs](/docs/enterprise/audit_logs/)**. You can effortlessly navigate to these sections directly from the dashboard.
diff --git a/docs/docs/org-management/licensing.md b/docs/docs/org-management/licensing.md index 57d9d9aa7c..0f9204f801 100644 --- a/docs/docs/org-management/licensing.md +++ b/docs/docs/org-management/licensing.md @@ -24,9 +24,9 @@ Let's look into three types of licenses: If you are an existing user and wish to update your trial license key, follow these steps: 1. Set up the instance and log in as a **[Super Admin](/docs/Enterprise/superadmin)**. -2. Navigate to the instance settings page. +2. Navigate to the Settings page. 3. In the license key tab, make the necessary updates to the provided license key. -4. Within the license tab of the instance settings page, you can access the limit tab, which displays the current status of available super admins, builders, and end users. +4. Within the license tab of the Settings page, you can access the limit tab, which displays the current status of available super admins, builders, and end users. :::caution Note The trial license key will be valid for 14 days. To fully enjoy ToolJet, we recommend upgrading to premium plans within this period. If you wish to upgrade from the trial to the business or enterprise edition, you can click the **Upgrade or Renew** button or contact our team via **[Slack](https://tooljet.com/slack)**. Upon expiration, access to premium features like OpenID SSO login and Audit logs will be restricted, ensuring no data loss occurs. However, don't worry! You can still upgrade to any of our premium plans and enjoy the benefits of ToolJet. @@ -65,9 +65,9 @@ The business license key will be valid for 3 months only. You can renew it to co **To update the license key, follow these steps:** 1. Log in as a **[Super Admin](/docs/Enterprise/superadmin)**, ensuring that you are on the correct instance URL. -2. Go to the Instance settings page. +2. Go to the Settings page. 3. In the license key tab, update the provided license key. -4. Within the license tab of the instance settings page, you can access the limit tab, which provides details about available super admins, builders, and end users. +4. Within the license tab of the Settings page, you can access the limit tab, which provides details about available super admins, builders, and end users. :::info Note As a super admin, you can conveniently view the remaining days of your enterprise edition period on the dashboard. (Refer to screenshots below) @@ -101,7 +101,7 @@ If your business or enterprise edition license key is nearing expiration, please **Ref: Screenshot addressing upgrade/renew CTAs. Note that there are a couple of other pages which will display banners or CTAs, from where you can upgrade/renew.** ### 2) What is the duration of my license's validity? -If you have an active license, you can find its validity period in the instance settings. Generally, the duration of your license varies based on the type: +If you have an active license, you can find its validity period in the Settings. Generally, the duration of your license varies based on the type: - Trial licenses are valid for 14 days. - Business licenses are valid for 3 months. - Enterprise licenses can be customized to suit your needs. diff --git a/docs/docs/setup/env-vars.md b/docs/docs/setup/env-vars.md index 714b7984c1..030d910da1 100644 --- a/docs/docs/setup/env-vars.md +++ b/docs/docs/setup/env-vars.md @@ -63,7 +63,7 @@ Self-hosted version of ToolJet pings our server to fetch the latest product upda ### Comment feature enable ( optional ) -Use this environment variable to enable/disable the feature that allows you to add comments on the canvas. To configure this environment variable, ensure that multiplayer editing is enabled in the instance settings. +Use this environment variable to enable/disable the feature that allows you to add comments on the canvas. To configure this environment variable, ensure that multiplayer editing is enabled in the Settings. | variable | value | | ---------------------- | ----------------- | From f977a85131e9e056c6daa2089a82c0692865338f Mon Sep 17 00:00:00 2001 From: Atharva Kulkarni Date: Mon, 27 Nov 2023 16:17:18 +0530 Subject: [PATCH 48/63] Fix typo in dashboard.md (#8139) --- docs/docs/dashboard.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/dashboard.md b/docs/docs/dashboard.md index 0a3c06ab33..cc173528e7 100644 --- a/docs/docs/dashboard.md +++ b/docs/docs/dashboard.md @@ -207,7 +207,7 @@ This option allows you to select a specific version of the app to export or expo #### Export ToolJet table schema -Selecting this option will inclue the schema of the tooljet table connected to that application in the exported JSON file. This option is available for all the apps on ToolJet however only the apps with a tooljet table connected(includes tjdb query) will have the schema included in the exported JSON file. +Selecting this option will include the schema of the tooljet table connected to that application in the exported JSON file. This option is available for all the apps on ToolJet however only the apps with a tooljet table connected(includes tjdb query) will have the schema included in the exported JSON file. This JSON file can be used to [import](#importing-app-connected-to-tooljet-table) the application to ToolJet along with the table schema that was connected to the application. @@ -245,4 +245,4 @@ The current version of ToolJet is displayed on the top right corner of the dashb Dashboard -
\ No newline at end of file +
From e28741309b6dec0ad05aa243fb8d314af6727135 Mon Sep 17 00:00:00 2001 From: Shubhendra Singh Chauhan Date: Mon, 27 Nov 2023 19:41:38 +0530 Subject: [PATCH 49/63] [doc]minor logfile change (#8180) --- docs/docs/Enterprise/audit_logs.md | 2 +- docs/versioned_docs/version-2.23.0/Enterprise/audit_logs.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/Enterprise/audit_logs.md b/docs/docs/Enterprise/audit_logs.md index 35d4af2873..5681e15ae9 100644 --- a/docs/docs/Enterprise/audit_logs.md +++ b/docs/docs/Enterprise/audit_logs.md @@ -94,7 +94,7 @@ The dropdown will display all the apps associated with your account. Select an a ### Log file -The log file can be created by specifying the path in the [environment variables](/docs/setup/env-vars) . The file will contain all the data from audit logs. The file will be updated every time a new audit log is created. +The file will contain all the data from audit logs. The log file can be created by specifying the path in the [environment variables](/docs/setup/env-vars). The log file is rotated on a daily basis and is updated dynamically every time a new audit log is generated. #### Log Rotation diff --git a/docs/versioned_docs/version-2.23.0/Enterprise/audit_logs.md b/docs/versioned_docs/version-2.23.0/Enterprise/audit_logs.md index 35d4af2873..5681e15ae9 100644 --- a/docs/versioned_docs/version-2.23.0/Enterprise/audit_logs.md +++ b/docs/versioned_docs/version-2.23.0/Enterprise/audit_logs.md @@ -94,7 +94,7 @@ The dropdown will display all the apps associated with your account. Select an a ### Log file -The log file can be created by specifying the path in the [environment variables](/docs/setup/env-vars) . The file will contain all the data from audit logs. The file will be updated every time a new audit log is created. +The file will contain all the data from audit logs. The log file can be created by specifying the path in the [environment variables](/docs/setup/env-vars). The log file is rotated on a daily basis and is updated dynamically every time a new audit log is generated. #### Log Rotation From 849f248b8578c70a5de33f9ff28b27db81e6ce53 Mon Sep 17 00:00:00 2001 From: Mekhla Asopa <59684099+Mekhla-Asopa@users.noreply.github.com> Date: Wed, 29 Nov 2023 17:36:10 +0530 Subject: [PATCH 50/63] Updated database spec with export table feature (#8218) * Added export table method * Added bulk upload data method --- .../cypress/constants/selectors/database.js | 46 ++++++--- .../cypress/constants/texts/database.js | 6 ++ .../cypress/e2e/database/database.cy.js | 23 ++++- .../cypress/support/utils/database.js | 99 ++++++++++++++++--- 4 files changed, 149 insertions(+), 25 deletions(-) diff --git a/cypress-tests/cypress/constants/selectors/database.js b/cypress-tests/cypress/constants/selectors/database.js index 0dcf3df726..741aa5aa17 100644 --- a/cypress-tests/cypress/constants/selectors/database.js +++ b/cypress-tests/cypress/constants/selectors/database.js @@ -23,6 +23,7 @@ export const databaseSelectors = { tableKebabIcon: '[data-cy="table-kebab-icon"]', tableEditOption: '[data-cy="edit-option"]', + tableExportOption: '[data-cy="export-table-option"]', tableDeleteOption: '[data-cy="delete-option"]', editTableHeader: '[data-cy="edit-table-header"]', @@ -32,19 +33,25 @@ export const databaseSelectors = { deleteRecordButton: '[data-cy="delete-row-records-button"]', nameInputField: (value) => { - return `[data-cy="name-input-field-${value}"]` + return `[data-cy="name-input-field-${value}"]`; }, currentTable: (tableName) => { - return `[data-cy="${String(tableName).toLowerCase().replace(/\s+/g, "-")}-table"]`; + return `[data-cy="${String(tableName) + .toLowerCase() + .replace(/\s+/g, "-")}-table"]`; }, currentTableName: (tableName) => { - return `[data-cy="${String(tableName).toLowerCase().replace(/\s+/g, "-")}-table-name"]`; + return `[data-cy="${String(tableName) + .toLowerCase() + .replace(/\s+/g, "-")}-table-name"]`; }, columnHeader: (columnName) => { - return `[data-cy="${String(columnName).toLowerCase().replace(/\s+/g, "-")}-column-header"]`; + return `[data-cy="${String(columnName) + .toLowerCase() + .replace(/\s+/g, "-")}-column-header"]`; }, checkboxCell: (idColumn) => { - return `[data-cy="${idColumn}-checkbox-table-cell"]> div > input` + return `[data-cy="${idColumn}-checkbox-table-cell"]> div > input`; }, }; @@ -66,12 +73,15 @@ export const createNewRowSelectors = { serialDataTypeLabel: '[data-cy="integer-data-type-label"]', idColumnInputField: '[data-cy="id-input-field"]', - columnNameLabel: (columnName) => { - return `[data-cy="${String(columnName).toLowerCase().replace(/\s+/g, "-")}-column-name-label"]`; + return `[data-cy="${String(columnName) + .toLowerCase() + .replace(/\s+/g, "-")}-column-name-label"]`; }, columnNameInputField: (columnName) => { - return `[data-cy="${String(columnName).toLowerCase().replace(/\s+/g, "-")}-input-field"]`; + return `[data-cy="${String(columnName) + .toLowerCase() + .replace(/\s+/g, "-")}-input-field"]`; }, }; @@ -98,6 +108,20 @@ export const editRowSelectors = { idColumnNameLabel: '[data-cy="id-column-name-label"]', selectRowDropdown: '[data-cy="select-row-dropdown"]', getRowData: (rowNumber, columnName) => { - return `[data-cy="id-${String(rowNumber).toLowerCase().replace(/\s+/g, "-")}-column-${String(columnName).toLowerCase().replace(/\s+/g, "-")}-table-cell"]` - } -}; \ No newline at end of file + return `[data-cy="id-${String(rowNumber) + .toLowerCase() + .replace(/\s+/g, "-")}-column-${String(columnName) + .toLowerCase() + .replace(/\s+/g, "-")}-table-cell"]`; + }, +}; + +export const bulkUploadDataSelectors = { + bulkUploadDataButton: '[data-cy="bulk-upload-data-button"]', + bulkUploadbuttonText: '[data-cy="bulk-upload-button-text"]', + bulkUploadDataHeaderText: '[data-cy="bulk-upload-data-header"]', + templateHelperText: '[data-cy="helper-text-bulk-upload"]', + templateDownloadButton: '[data-cy="button-download-template"]', + bulkUploadInputField: '[data-cy="input-field-bulk-upload"]', + uploadDataButton: '[data-cy="upload-data-button"]', +}; diff --git a/cypress-tests/cypress/constants/texts/database.js b/cypress-tests/cypress/constants/texts/database.js index 5e8f64b93d..4eb735dd0c 100644 --- a/cypress-tests/cypress/constants/texts/database.js +++ b/cypress-tests/cypress/constants/texts/database.js @@ -81,3 +81,9 @@ export const editRowText = { selectRowToEditText: "Select a row to edit", rowEditedSuccessfullyToast: "Row edited successfully", }; + +export const bulkUploadDataText = { + bulkUploadbuttonText: "Bulk upload data", + templateHelperText: + "Download the template to add your data or format your file in the same as the template. ToolJet won’t be able to recognise files in any other format.", +}; diff --git a/cypress-tests/cypress/e2e/database/database.cy.js b/cypress-tests/cypress/e2e/database/database.cy.js index 174f8c0c8b..b5bb20ee96 100644 --- a/cypress-tests/cypress/e2e/database/database.cy.js +++ b/cypress-tests/cypress/e2e/database/database.cy.js @@ -1,4 +1,8 @@ -import { filterSelectors, sortSelectors } from "Selectors/database"; +import { + databaseSelectors, + filterSelectors, + sortSelectors, +} from "Selectors/database"; import { databaseText, filterText, sortText } from "Texts/database"; import { navigateToDatabase } from "Support/utils/common"; import { @@ -15,6 +19,8 @@ import { deleteRowAndVerify, editRowWithInvalidData, editRowAndVerify, + exportTableAndVerify, + bulkUploadDataTemplateDownloadAndVerify, } from "Support/utils/database"; import { fake } from "Fixtures/fake"; import { randomNumber } from "Support/utils/commonWidget"; @@ -75,7 +81,9 @@ describe("Database Functionality", () => { let column1 = columnDetails(); let column2 = columnDetails(); navigateToDatabase(); - verifyAllElementsOfPage(); + cy.get(databaseSelectors.allTablesSection).should("be.visible"); + cy.get(databaseSelectors.allTableSubheader).should("be.visible"); + cy.get(databaseSelectors.addTableButton).should("be.visible"); createTableAndVerifyToastMessage(data.tableName1, false); createTableAndVerifyToastMessage( data.tableName2, @@ -85,6 +93,7 @@ describe("Database Functionality", () => { true, [column1.defaultValueVarchar, column1.defaultValueInt] ); + verifyAllElementsOfPage(); }); it("Verify all operations of table", () => { const data = {}; @@ -183,5 +192,15 @@ describe("Database Functionality", () => { [databaseText.idColumnName, column1.name, column2.name], [row4.varcharData, row4.intData] ); + exportTableAndVerify(data.tableName, [ + databaseText.idColumnName, + column1.name, + column2.name, + ]); + bulkUploadDataTemplateDownloadAndVerify(data.tableName, [ + databaseText.idColumnName, + column1.name, + column2.name, + ]); }); }); diff --git a/cypress-tests/cypress/support/utils/database.js b/cypress-tests/cypress/support/utils/database.js index b573ccce6a..60d8d7a2f2 100644 --- a/cypress-tests/cypress/support/utils/database.js +++ b/cypress-tests/cypress/support/utils/database.js @@ -1,3 +1,4 @@ +import { deleteDownloadsFolder } from "Support/utils/common"; import { databaseSelectors, createNewColumnSelectors, @@ -5,12 +6,14 @@ import { filterSelectors, sortSelectors, editRowSelectors, + bulkUploadDataSelectors, } from "Selectors/database"; import { databaseText, createNewColumnText, createNewRowText, editRowText, + bulkUploadDataText, } from "Texts/database"; import { commonSelectors } from "Selectors/common"; import { commonText } from "Texts/common"; @@ -28,6 +31,10 @@ export const verifyAllElementsOfPage = () => { //cy.get(databaseSelectors.searchTableInputField).should("be.visible"); cy.get(databaseSelectors.allTablesSection).should("be.visible"); cy.get(databaseSelectors.allTableSubheader).should("be.visible"); + cy.get(createNewColumnSelectors.addNewColumnButton).should("be.visible"); + cy.get(createNewRowSelectors.addNewRowButton).should("be.visible"); + cy.get(editRowSelectors.editRowbutton).should("be.visible"); + cy.get(bulkUploadDataSelectors.bulkUploadDataButton).should("be.visible"); }; export const navigateToTable = (tableName) => { cy.get(databaseSelectors.currentTable(tableName)) @@ -74,16 +81,22 @@ export const createTableAndVerifyToastMessage = ( databaseText.noRecordsText ); }; -export const editTableNameAndVerifyToastMessage = (tableName, newTableName) => { +export const selectTableOperationOption = (tableName, operationOption) => { + navigateToTable(tableName); cy.get(databaseSelectors.currentTable(tableName)) .find(databaseSelectors.tableKebabIcon) .invoke("show") .trigger("mouseover") + .trigger("mouseover") .trigger("mousemove") .trigger("mousedown") .trigger("mouseup") .click(); - cy.get(databaseSelectors.tableEditOption).click(); + cy.get(operationOption).click(); + cy.wait(500); +}; +export const editTableNameAndVerifyToastMessage = (tableName, newTableName) => { + selectTableOperationOption(tableName, databaseSelectors.tableEditOption); cy.get(databaseSelectors.editTableHeader).verifyVisibleElement( "have.text", databaseText.editTableHeader @@ -111,18 +124,11 @@ export const editTableNameAndVerifyToastMessage = (tableName, newTableName) => { ); }; export const deleteTableAndVerifyToastMessage = (tableName) => { - cy.get(databaseSelectors.currentTable(tableName)) - .find(databaseSelectors.tableKebabIcon) - .invoke("show") - .trigger("mouseover") - .trigger("mousemove") - .trigger("mousedown") - .trigger("mouseup") - .click(); - cy.get(databaseSelectors.tableDeleteOption).click(); + selectTableOperationOption(tableName, databaseSelectors.tableDeleteOption); // cy.on('window:confirm', (ConfirmAlertText) => { // expect(ConfirmAlertText).to.contains(`Are you sure you want to delete the table "${tableName}"?`); // }); + cy.wait(500); cy.verifyToastMessage( commonSelectors.toastMessage, databaseText.tableDeletedSuccessfullyToast(tableName) @@ -491,7 +497,6 @@ export const editRowAndVerify = ( ); verifyRowData(rowNumber, columnName, rowFieldData); }; - export const editRowWithInvalidData = ( tableName, rowNumber, @@ -540,3 +545,73 @@ export const editRowWithInvalidData = ( ); cy.get(commonSelectors.buttonSelector(commonText.cancelButton)).click(); }; +export const exportTableAndVerify = (tableName, columnName) => { + deleteDownloadsFolder(); + cy.reload(); + selectTableOperationOption(tableName, databaseSelectors.tableExportOption); + verifyDownloadedTableSchema(tableName, columnName); + cy.exec("cd ./cypress/downloads/ && rm -rf *"); +}; +export const verifyDownloadedTableSchema = (tableName, columnName) => { + cy.exec("ls ./cypress/downloads/").then((result) => { + const downloadedExportTableFileName = result.stdout.split("\n")[0]; + let exportedTableFilePath = `cypress/downloads/${downloadedExportTableFileName}`; + cy.readFile(exportedTableFilePath).then((table) => { + let exportedTableData = table; + expect(downloadedExportTableFileName).to.contain.string( + tableName.toLowerCase() + ); + for (let i = 0; i <= columnName.length - 1; i++) { + cy.get(databaseSelectors.columnHeader(columnName[i])).each(($el) => { + cy.wrap($el) + .should("be.visible") + .and( + "contain.text", + exportedTableData.tooljet_database[0].schema.columns[ + i + ].column_name.toLowerCase() + ); + }); + } + }); + }); +}; +export const bulkUploadDataTemplateDownloadAndVerify = ( + tableName, + columnName +) => { + deleteDownloadsFolder(); + cy.reload(); + cy.intercept("GET", "api/tooljet_db/organizations/**").as("dbLoad"); + navigateToTable(tableName); + cy.wait(1000); + cy.get(bulkUploadDataSelectors.bulkUploadbuttonText).verifyVisibleElement( + "have.text", + bulkUploadDataText.bulkUploadbuttonText + ); + cy.get(bulkUploadDataSelectors.bulkUploadDataButton) + .should("be.visible") + .click(); + cy.get(bulkUploadDataSelectors.bulkUploadDataHeaderText).verifyVisibleElement( + "have.text", + bulkUploadDataText.bulkUploadbuttonText + ); + cy.get(bulkUploadDataSelectors.templateHelperText).verifyVisibleElement( + "have.text", + bulkUploadDataText.templateHelperText + ); + cy.get(bulkUploadDataSelectors.templateDownloadButton) + .should("be.visible") + .click(); + cy.readFile(`cypress/downloads/${tableName}.csv`, "utf-8").then((table) => { + let exportedTableData = table.split(","); + cy.log(exportedTableData); + for (let i = 0; i <= columnName.length - 1; i++) { + cy.get(databaseSelectors.columnHeader(columnName[i])).each(($el) => { + cy.wrap($el) + .should("be.visible") + .and("contain.text", exportedTableData[i].toLowerCase()); + }); + } + }); +}; From 481355af08a0d039dd6df5bc250f685fefd87fc2 Mon Sep 17 00:00:00 2001 From: Ajith KV Date: Mon, 4 Dec 2023 10:16:24 +0530 Subject: [PATCH 51/63] Add cypress test cases for app creation flow (#8232) --- .../cypress/constants/selectors/common.js | 14 + .../cypress/constants/texts/common.js | 6 + .../cypress/e2e/workspace/appCreate.cy.js | 314 ++++++++++++++++++ 3 files changed, 334 insertions(+) create mode 100644 cypress-tests/cypress/e2e/workspace/appCreate.cy.js diff --git a/cypress-tests/cypress/constants/selectors/common.js b/cypress-tests/cypress/constants/selectors/common.js index 58118d0a39..2c97babc61 100644 --- a/cypress-tests/cypress/constants/selectors/common.js +++ b/cypress-tests/cypress/constants/selectors/common.js @@ -230,6 +230,20 @@ export const commonSelectors = { modalHeader: '[data-cy="modal-header"]', modalDescription: '[data-cy="modal-description"]', backToHomeButton: '[data-cy="back-to-home-button"]', + createAppTitle: '[data-cy="create-app-title"]', + appNameLabel: '[data-cy="app-name-label"]', + appNameInput: '[data-cy="app-name-input"]', + appNameInfoLabel: '[data-cy="app-name-info-label"]', + createAppButton: '[data-cy="+-create-app"]', + renameApptitle: '[data-cy="rename-app-title"]', + renameAppButton: '[data-cy="rename-app"]', + cloneAppTitle: '[data-cy="clone-app-title"]', + cloneAppButton: '[data-cy="clone-app"]', + appNameErrorLabel: '[data-cy="app-name-error-label"]', + importAppTitle: '[data-cy="import-app-title"]', + importAppButton: '[data-cy="import-app"]', + chooseFromTemplateButton: '[data-cy="choose-from-template-button"]', + CreateAppFromTemplateButton: '[data-cy="create-new-app-from-template-title"]', }; export const commonWidgetSelector = { diff --git a/cypress-tests/cypress/constants/texts/common.js b/cypress-tests/cypress/constants/texts/common.js index 6b6c5db6cd..9e2604e1eb 100644 --- a/cypress-tests/cypress/constants/texts/common.js +++ b/cypress-tests/cypress/constants/texts/common.js @@ -175,6 +175,12 @@ export const commonText = { "Constant name should start with a letter or underscore and can only contain letters, numbers and underscores", constantsValueError: "Value should be less than 10000 characters and cannot be empty", + + createApp: "Create app", + appName: "App Name", + enterAppName: "Enter app name", + appNameInfoLabel: "App name must be unique and max 50 characters", + renameApp: "Rename app", }; export const commonWidgetText = { diff --git a/cypress-tests/cypress/e2e/workspace/appCreate.cy.js b/cypress-tests/cypress/e2e/workspace/appCreate.cy.js new file mode 100644 index 0000000000..ccc67124c8 --- /dev/null +++ b/cypress-tests/cypress/e2e/workspace/appCreate.cy.js @@ -0,0 +1,314 @@ +import { commonSelectors, commonWidgetSelector } from "Selectors/common"; +import { fake } from "Fixtures/fake"; +import { viewAppCardOptions } from "Support/utils/common"; +import { commonText } from "Texts/common"; + +import { importSelectors } from "Selectors/exportImport"; +import { importText } from "Texts/exportImport"; + +describe("App creation", () => { + const data = {}; + data.appName = `${fake.companyName}-App`; + data.rename = `New-${data.appName}`; + data.cloneAppName = `cloned-${data.appName}`; + const appFile = "cypress/fixtures/templates/test-app.json"; + + beforeEach(() => { + cy.defaultWorkspaceLogin(); + }); + it("Should verify create, rename and clone app flow", () => { + cy.get(commonSelectors.appCreateButton).click(); + cy.get(commonSelectors.createAppTitle).verifyVisibleElement( + "have.text", + commonText.createApp + ); + cy.get(commonSelectors.appNameLabel).verifyVisibleElement( + "have.text", + commonText.appName + ); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.attr", + "placeholder", + commonText.enterAppName + ); + cy.get(commonSelectors.appNameInfoLabel).verifyVisibleElement( + "have.text", + commonText.appNameInfoLabel + ); + cy.get(commonSelectors.cancelButton).verifyVisibleElement( + "have.text", + commonText.cancelButton + ); + cy.get(commonSelectors.createAppButton).verifyVisibleElement( + "have.text", + "+ Create app" + ); + cy.get(commonSelectors.createAppButton).should("be.disabled"); + cy.get(commonWidgetSelector.modalCloseButton).should("be.visible"); + + cy.clearAndType(commonSelectors.appNameInput, data.appName); + cy.get(commonWidgetSelector.modalCloseButton).click(); + + cy.get(commonSelectors.appCreateButton).click(); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.attr", + "placeholder", + commonText.enterAppName + ); + cy.clearAndType(commonSelectors.appNameInput, data.appName); + cy.get(commonSelectors.cancelButton).click(); + + cy.get(commonSelectors.appCreateButton).click(); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.attr", + "placeholder", + commonText.enterAppName + ); + cy.clearAndType(commonSelectors.appNameInput, data.appName); + cy.get(commonSelectors.createAppButton).should("be.enabled").click(); + cy.go("back"); + cy.visit("/my-workspace"); + + cy.wait(1000); + viewAppCardOptions(data.appName); + cy.get(commonSelectors.appCardOptions("Rename app")).verifyVisibleElement( + "have.text", + commonText.renameApp + ); + cy.get(commonSelectors.appCardOptions("Rename app")).click(); + cy.get(commonSelectors.renameApptitle).verifyVisibleElement( + "have.text", + commonText.renameApp + ); + cy.get(commonSelectors.appNameLabel).verifyVisibleElement( + "have.text", + commonText.appName + ); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.value", + data.appName + ); + cy.get(commonSelectors.appNameInfoLabel).verifyVisibleElement( + "have.text", + commonText.appNameInfoLabel + ); + cy.get(commonSelectors.cancelButton).verifyVisibleElement( + "have.text", + commonText.cancelButton + ); + cy.get(commonSelectors.renameAppButton).verifyVisibleElement( + "have.text", + commonText.renameApp + ); + cy.get(commonSelectors.renameAppButton).should("be.disabled"); + cy.get(commonWidgetSelector.modalCloseButton).should("be.visible"); + + cy.clearAndType(commonSelectors.appNameInput, data.rename); + cy.get(commonWidgetSelector.modalCloseButton).click(); + + viewAppCardOptions(data.appName); + cy.get(commonSelectors.appCardOptions("Rename app")).click(); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.value", + data.appName + ); + cy.clearAndType(commonSelectors.appNameInput, data.rename); + cy.get(commonSelectors.cancelButton).click(); + + viewAppCardOptions(data.appName); + cy.get(commonSelectors.appCardOptions("Rename app")).click(); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.value", + data.appName + ); + cy.clearAndType(commonSelectors.appNameInput, data.rename); + cy.get(commonSelectors.renameAppButton).should("be.enabled").click(); + cy.verifyToastMessage( + commonSelectors.toastMessage, + "App name has been updated!" + ); + + viewAppCardOptions(data.rename); + cy.get(commonSelectors.appCardOptions(commonText.cloneAppOption)).click(); + cy.get(commonSelectors.cloneAppTitle).verifyVisibleElement( + "have.text", + commonText.cloneAppOption + ); + cy.get(commonSelectors.appNameLabel).verifyVisibleElement( + "have.text", + commonText.appName + ); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.value", + `${data.rename}_Copy` + ); + cy.get(commonSelectors.appNameInfoLabel).verifyVisibleElement( + "have.text", + commonText.appNameInfoLabel + ); + cy.get(commonSelectors.cancelButton).verifyVisibleElement( + "have.text", + commonText.cancelButton + ); + cy.get(commonSelectors.cloneAppButton).verifyVisibleElement( + "have.text", + commonText.cloneAppOption + ); + cy.get(commonSelectors.cloneAppButton).should("be.enabled"); + cy.get(commonWidgetSelector.modalCloseButton).should("be.visible"); + + cy.clearAndType(commonSelectors.appNameInput, data.rename); + cy.get(commonWidgetSelector.modalCloseButton).click(); + + viewAppCardOptions(data.rename); + cy.get(commonSelectors.appCardOptions(commonText.cloneAppOption)).click(); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.value", + `${data.rename}_Copy` + ); + cy.clearAndType(commonSelectors.appNameInput, data.cloneAppName); + cy.get(commonSelectors.cancelButton).click(); + + viewAppCardOptions(data.rename); + cy.get(commonSelectors.appCardOptions(commonText.cloneAppOption)).click(); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.value", + `${data.rename}_Copy` + ); + cy.clearAndType(commonSelectors.appNameInput, data.cloneAppName); + cy.get(commonSelectors.cloneAppButton).should("be.enabled").click(); + cy.go("back"); + cy.visit("/my-workspace"); + + cy.get(commonSelectors.appCreateButton).click(); + cy.clearAndType(commonSelectors.appNameInput, data.rename); + cy.get(commonSelectors.createAppButton).click(); + cy.get(commonSelectors.appNameErrorLabel).verifyVisibleElement( + "have.text", + "App name already exists" + ); + cy.get(commonSelectors.createAppButton).should("be.disabled"); + }); + it("Should verify the import app flow", () => { + cy.get(importSelectors.dropDownMenu).click(); + cy.get(importSelectors.importOptionInput).eq(0).selectFile(appFile, { + force: true, + }); + + cy.get(commonSelectors.importAppTitle).verifyVisibleElement( + "have.text", + "Import app" + ); + cy.get(commonSelectors.appNameLabel).verifyVisibleElement( + "have.text", + commonText.appName + ); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.value", + "test-app" + ); + cy.get(commonSelectors.appNameInfoLabel).verifyVisibleElement( + "have.text", + commonText.appNameInfoLabel + ); + cy.get(commonSelectors.cancelButton).verifyVisibleElement( + "have.text", + commonText.cancelButton + ); + cy.get(commonSelectors.importAppButton).verifyVisibleElement( + "have.text", + "Import app" + ); + cy.get(commonSelectors.importAppButton).should("be.enabled"); + cy.get(commonWidgetSelector.modalCloseButton).should("be.visible"); + + cy.clearAndType(commonSelectors.appNameInput, data.appName); + cy.get(commonWidgetSelector.modalCloseButton).click(); + + cy.get(importSelectors.dropDownMenu).click(); + cy.get(importSelectors.importOptionInput).eq(0).selectFile(appFile, { + force: true, + }); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.value", + "test-app" + ); + cy.clearAndType(commonSelectors.appNameInput, data.appName); + cy.get(commonSelectors.cancelButton).click(); + + cy.get(importSelectors.dropDownMenu).click(); + cy.get(importSelectors.importOptionInput).eq(0).selectFile(appFile, { + force: true, + }); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.value", + "test-app" + ); + cy.clearAndType(commonSelectors.appNameInput, data.appName); + cy.get(commonSelectors.importAppButton).should("be.enabled").click(); + cy.get(".go3958317564") + .should("be.visible") + .and("have.text", importText.appImportedToastMessage); + cy.go("back"); + cy.visit("/my-workspace"); + }); + it("should verify the templates app creation", () => { + data.appName = `${fake.companyName}-App`; + + cy.get(importSelectors.dropDownMenu).click(); + cy.get(commonSelectors.chooseFromTemplateButton).click(); + cy.get(".d-flex > .tj-primary-btn").click(); + + cy.get(commonSelectors.CreateAppFromTemplateButton).verifyVisibleElement( + "have.text", + "Create new app from template" + ); + cy.get(commonSelectors.appNameLabel).verifyVisibleElement( + "have.text", + commonText.appName + ); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.value", + "Customer dashboard" + ); + cy.get(commonSelectors.appNameInfoLabel).verifyVisibleElement( + "have.text", + commonText.appNameInfoLabel + ); + cy.get(commonSelectors.cancelButton).verifyVisibleElement( + "have.text", + commonText.cancelButton + ); + cy.get(commonSelectors.createAppButton).verifyVisibleElement( + "have.text", + "+ Create app" + ); + cy.get(commonSelectors.createAppButton).should("be.enabled"); + cy.get(commonWidgetSelector.modalCloseButton).should("be.visible"); + + cy.clearAndType(commonSelectors.appNameInput, data.appName); + cy.get(commonWidgetSelector.modalCloseButton).click(); + + cy.get(importSelectors.dropDownMenu).click(); + cy.get(commonSelectors.chooseFromTemplateButton).click(); + cy.get(".d-flex > .tj-primary-btn").click(); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.attr", + "placeholder", + commonText.enterAppName + ); + cy.clearAndType(commonSelectors.appNameInput, data.appName); + cy.get(commonSelectors.cancelButton).click(); + + cy.get(importSelectors.dropDownMenu).click(); + cy.get(commonSelectors.chooseFromTemplateButton).click(); + cy.get(".d-flex > .tj-primary-btn").click(); + cy.get(commonSelectors.appNameInput).verifyVisibleElement( + "have.attr", + "placeholder", + commonText.enterAppName + ); + cy.clearAndType(commonSelectors.appNameInput, data.appName); + cy.get(commonSelectors.createAppButton).should("be.enabled").click(); + }); +}); From 6967c41cfe27e3fee0554704a6bbf3e1a645bcf8 Mon Sep 17 00:00:00 2001 From: Shubhendra Singh Chauhan Date: Mon, 4 Dec 2023 18:04:25 +0530 Subject: [PATCH 52/63] [docs]revamp howto: bulk update multiple rows (#8237) --- .../bulk-update-multiple-rows-in-table.md | 69 +++++++++++------- .../how-to/bulk-update-multiple/new/data.png | Bin 0 -> 38189 bytes .../bulk-update-multiple/new/editable.png | Bin 0 -> 182980 bytes .../bulk-update-multiple/new/populate.png | Bin 0 -> 159488 bytes .../bulk-update-multiple/new/querysuccess.png | Bin 0 -> 70092 bytes .../bulk-update-multiple/new/rowselect.png | Bin 0 -> 120499 bytes .../bulk-update-multiple/new/runjs1.png | Bin 0 -> 153551 bytes .../bulk-update-multiple/new/savechanges.png | Bin 0 -> 139671 bytes .../bulk-update-multiple/new/update.png | Bin 0 -> 51092 bytes .../bulk-update-multiple-rows-in-table.md | 69 +++++++++++------- .../bulk-update-multiple-rows-in-table.md | 69 +++++++++++------- .../bulk-update-multiple-rows-in-table.md | 69 +++++++++++------- .../bulk-update-multiple-rows-in-table.md | 69 +++++++++++------- .../bulk-update-multiple-rows-in-table.md | 69 +++++++++++------- .../bulk-update-multiple-rows-in-table.md | 69 +++++++++++------- 15 files changed, 301 insertions(+), 182 deletions(-) create mode 100644 docs/static/img/how-to/bulk-update-multiple/new/data.png create mode 100644 docs/static/img/how-to/bulk-update-multiple/new/editable.png create mode 100644 docs/static/img/how-to/bulk-update-multiple/new/populate.png create mode 100644 docs/static/img/how-to/bulk-update-multiple/new/querysuccess.png create mode 100644 docs/static/img/how-to/bulk-update-multiple/new/rowselect.png create mode 100644 docs/static/img/how-to/bulk-update-multiple/new/runjs1.png create mode 100644 docs/static/img/how-to/bulk-update-multiple/new/savechanges.png create mode 100644 docs/static/img/how-to/bulk-update-multiple/new/update.png diff --git a/docs/docs/how-to/bulk-update-multiple-rows-in-table.md b/docs/docs/how-to/bulk-update-multiple-rows-in-table.md index b29e582b46..f518b117ac 100644 --- a/docs/docs/how-to/bulk-update-multiple-rows-in-table.md +++ b/docs/docs/how-to/bulk-update-multiple-rows-in-table.md @@ -5,56 +5,62 @@ title: Bulk update multiple rows in table # Bulk update multiple rows in table -Currently, the datasources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. +Currently, the data sources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. -In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database, currently, this workaround can be used only for PostgreSQL and MySQL. +In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database. Currently, this workaround can be used only for PostgreSQL and MySQL. ## 1. Create a query to get the data from the database -Let's create the query that will be getting the data from the database: +- Create a postgresql query in **SQL mode** and enter + +```sql +SELECT * FROM tooljet // replace tooljet with your table name +``` + +- Hit **Run** to fetch the data from the database
-![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/postgres1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/data.png)
## 2. Display the data on the table -- Drag a **Table** widget on the canvas and click on its handle to open the properties on the left sidebar -- Edit the **Table data** field value and enter **`{{queries.postgresql1.data}}`** +- Go to the **Components** library on the right and drag a **Table** component onto the canvas +- Click on the handle of the **Table** component to open its properties on the right sidebar +- Populate the table with the data from the query by entering **`{{queries..data}}`** in the **Data** field
-![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/showData.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/populate.png)
## 3. Make the columns editable -- Go to the **Columns**, Add or edit columns section and enter the **Column Name** that you want to display on the table and the **Key** name. Key is the name of the column in your database. -- Enable the toggle for **Make editable** for the columns that you want to be editable. +- Under the **Columns** accordion, click on the column name that you want to make editable +- On clicking the column name, a new section will open. Enable the toggle for **Make editable** to make the column editable
-![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/columns.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/editable.png)
-## 4. Enable bulk update options for table widget +## 4. Enable Multiple Row Selection -- Go to the **Options** section and enable the **Show update buttons**. Enabling this will add two buttons - **Save Changes** and **Discard Changes** at the bottom of the table, only when any cell in the table is edited. -- You can also enable highlight selected row.(**Optional**) +- Under the **Row Selection** accordion, enable the **Allow Selection**, **Highlight Selected Row**, and **Bulk Selection** option
-![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/options.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/rowselect.png)
## 5. Create a Custom JS query -We will create a new Custom JS query(**runjs1**) that will generate SQL query for updating multiple rows. +- Create a new Run Javascript query and use the code below to generate the SQL query for updating multiple rows. ```js const uniqueIdentifier = "id" @@ -81,36 +87,47 @@ Update **table1** with the name of the table you are using. :::
-![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/runjs1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/runjs1.png)
## 6. Create an Update query -Let's create a new PostgreSQL query and name it `update`. In **SQL mode**, enter `{{queries.runjs1.data.join(' ')}}` and **Save** it. +- Create a postgresql query in **SQL mode** and rename it as **update**: + +```sql +{{queries.runjs1.data.join(' ')}} +``` + +- This query will run the SQL query generated by the runjs1 query.
-![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/update.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/update.png)
-## 7. Creating a flow for queries +## 7. Adding event handlers to execute queries in sequence -- Click on the handle of the **Table** widget to open its properties -- Go to the **Events**, and add a handler -- Select **Bulk Update** in Events, **Run Query** in Actions, and then select the **runjs1** query in Query. Now whenever a user will edit the table and hit the **Save Changes** button runjs1 will run. +- Edit the **Table** component and add the event handler for **Save Changes** event so that whenever a user will edit the table and hit the **Save Changes** button the runjs1 query will run. +- Add **loading state** to table so that whenever the **users** or **update** query is running the table will show a loading state. + +```js +{{queries.users.isLoading || queries.update.isLoading}} // add this in the loading state field of the table +```
-![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/event.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/savechanges.png)
-- Now, go to the **Advanced** tab of **runjs1** and add a handler to run update query for **Query Success** Event. Now whenever the runjs1 query will be run - the update operation will be performed on the database. +- Now, go to the **runjs1** query and add a **Event** to run update query for **Query Success** Event. This will run the update query whenever the runjs1 query will be run.
-![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/success.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/querysuccess.png) -
\ No newline at end of file + + +- Finally, go to the **update** query and add a **Event** to run the users query for **Query Success** Event. This will refresh the table whenever the update query will be run. \ No newline at end of file diff --git a/docs/static/img/how-to/bulk-update-multiple/new/data.png b/docs/static/img/how-to/bulk-update-multiple/new/data.png new file mode 100644 index 0000000000000000000000000000000000000000..912b31711e9fb753605dbb287fd6f60c71e6df33 GIT binary patch literal 38189 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 aTUq#YhDl%MVkHFp(^R{zntS>7qyGgaFGG<4 literal 0 HcmV?d00001 diff --git a/docs/static/img/how-to/bulk-update-multiple/new/editable.png b/docs/static/img/how-to/bulk-update-multiple/new/editable.png new file mode 100644 index 0000000000000000000000000000000000000000..ed3ef63ea3c552b9d998974cf2deb1513c4c1267 GIT binary patch literal 182980 zcmZsC1yodRyEen%FyPQNh``V(3?&UiH_|N5D2qRr8p>zpK3rGtLoq~v_L>>i8umQ)D(d0jKp;3cU{@&c ziZgfrLq6~Z^3qe0$Eh5>yMcp)z)@3_Gw`?E%Ek|V)$^@4_ufVVCAoanmoiE!U6ici zn?q(pG9|8OOH};KfpVZ*im{Y(#awMCiP5;R2!xUZD@v6`I`ipSsL;@Jt)F%G287@* z=llj=-wd<2{Apdgi!mw_LSyh$(f`ZkiLk2vb%=;khr~%NkSC+|5qk)3Lb>Z}(+A4= z{XQ?K4F>8-j1VAlM0ggIlN071k&Hv|pVu!%#FWq#jLMS&Phi2$jv<{>3VNa855 z=ts?t8IRIwJjJg{#1^7k(Dz@Wmr3)G3u4Yn8fyQ!rjFluo|LzEN%45eK)mm4k7B$~ z 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

Jjdu(ponq4x{UKRw59h-xkPB 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

Q%P-8_t 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 b8O4J7<_~)bi799&8TdKcx!5ue;1d1@Gj1R) literal 0 HcmV?d00001 diff --git a/docs/static/img/how-to/bulk-update-multiple/new/querysuccess.png b/docs/static/img/how-to/bulk-update-multiple/new/querysuccess.png new file mode 100644 index 0000000000000000000000000000000000000000..74981d6c295b9c390e67f815062b0e07cf0029e6 GIT binary patch literal 70092 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 z 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 b;~dYQ{NbpJqlpp{`1M>uUc6A$@Xh}KV?ro2 literal 0 HcmV?d00001 diff --git a/docs/static/img/how-to/bulk-update-multiple/new/rowselect.png b/docs/static/img/how-to/bulk-update-multiple/new/rowselect.png new file mode 100644 index 0000000000000000000000000000000000000000..b1692cac3427f48d5c98eee0305edcb1d71d22c2 GIT binary patch literal 120499 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

    uh9}1f{MpCKgu{^uf$fr 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 j6+<-jv-RdFr;pF0@~`WAA3oB!J*yIgEMjy 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

    9q$*gHZUt9|Z-J6|!kk91OUvReu!Q(?4|kbXc1G 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%0DxO4~iO=_$rYEP}H#0jN?%~DnU=KEMY&?e$@O= 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 literal 0 HcmV?d00001 diff --git a/docs/static/img/how-to/bulk-update-multiple/new/update.png b/docs/static/img/how-to/bulk-update-multiple/new/update.png new file mode 100644 index 0000000000000000000000000000000000000000..c9a4c171168374d06f3f6288f283bd7100f8328a GIT binary patch literal 51092 zcmeFZbyQXB*EXyONQfXIu}KjnBqTN+f`F3J-3^=WMk%GGLqNK_yA-6mK~SW-8{T`L z^E|)zeS~*>e|>*^V|-_fbIv%Pwf4H#yyrdVHLrQi_353IC$N;7{i72=jn{-L;h!6}(f}N4$FH4*8w8uV2YKX>QCq+R1-!Yu|lN;Tt9> zPM+fJ_3;V$#H$uR44Nm@PskM>;i5yo`Jn~KrsJDD`7o66N#2C^$=B2&#ML*_?+@yi zHRt}s`1ouXva_o-o?{ksJ9ZgaOxSKk#O=P7l6s57h=?W7jPM>Ot1lboM1!uHiVFVV z&fOdTD3)#ZFK!XDm=bKRLqdVnyIv9UBA}3a-T9yY@LER0f;w%@Ff${nOL-NyEN1#V zr1<+H_&xKucUzIOm}F5AP$r%TOlSvU8{GO_D}Hd@aRQ4=kk>T$>FUjqLF*ffgD;qY zPGF)LCkET=0QJ~T8mV^46pRTUZ< zig0m>M}(ap{#|Ha15-z+akU!jhB0O&$SGdR81)I$ZM6y)xh2WR4jb@vqcJ>Am!)dO zCBO>PQ<9a-_@=Lwk^WZmqp`ogirkr8>}j&Ge#j}=PPC&dx&QyN#t{t^EX*71!nMJTLk^Zh*? z@4U;W17tDS98Q0#1%QJ!wqZxdCy-y%~V*C z6*sJ?V3dfC_-KPaeNBPZu;wYldj*V2BBDIVhkK|H*kLL$0w)?l9#LzXI4w2Pviod( z+@`Kzs#GGE+3^~3E3##y83Fg-kN8PhY;^rW^1yoW79D{?_|DcI1gU*Qjz;r?}h@|!~Si1!`?fH z;24a@3AZA5EVml8`7LWY$x!-v{60a+x%(dBF*&T7he=21?wpr==wB!D4uSea6&cGfMMR;Re^nML#vF)-G~l{%htaqzXOo5o(9KG=^an68ZTd~D~61jV9d zu)FJs0fEA%(!cq3L&v0JbVBlSmrbd}0un&c`c-s`DjhDIG@BMk}ez}Mr6B&1O z`XHE;T~qvVpVDh5r^d6-9-rC$Fg&;UzdDd`tpw7@$(I=hcb~a)p3|{aZ*h(0%gj<3 zF^Jp%tnmq-n* zYHJP0u6xW0&1Gf7<9T<&bQg4cf9Ex66o!S(6Ejl5iiKG{4K`3A@jq>gG+k?ww`$h= zF4)=?ZUoKwN`yW%$U_p&Od-(_L)6DX$3aTp_hbn9MDECxxYfMaUi6D0h4PFR1jf(W zRxxPSXNU3;W|lsBbY|1enibp8(LqN=CEU`&$=_rnMhR7v9nfi0(+e?~-U^I4X#Y7t z!3(QioYJi=c$NJdN0x0ffdviyX!OT8+OfJy3@YTo;)jPsLrS=RDomSE?xF4JG(9qg zo$Yq0Tki8o^D2B*doy{mFZ>dMq)r2ysMPa!Ia({oay=TD*u^;*{CYh4r*gXI^A}!6 zscm;A<>|`pfqTbudAzR2YX_?=OI?0{B5{LBxuwwY>BmMZ%yLXebK?(3$2F@;e@&Du ztR1hJxh(hIt^FNfnmPKs&ChHm`?HvslwxvY|9Z+2rs>uP-++)$GNBC8xe9^)5_6+w zW2WC$2AAfhD@@XKC`AqPVJEv;$*d+_@|&~ARiyRXn!LLw3jrTLzUvkx9URo_z$GP3 zIp3;L>*pKpRyR59{3w0ck?fhfYF@Rvh_5B@e9Mt7m=~c4s3rNJvPl8Tej!Sc8YO+0k5@vnYN*em1L`O}AeA;-6wf#$q+Qyl#i?txTB6^RW=-31oZKfb1YZC~g;td*T$ z(j75&-(7rBpmCTOKjU1r)l?PtlXS==HOrcP|^8uuC z^F)Eyl{d{)Aus2b{o%prjPnxP&&uE-{%d0SgriM1^P#7sjk(bvV&*TO9}edlh)0Em zeLYvJlD=Dk`;Q$4>to+`D^Yg8+JP0`X)Tk{rYv~i7=*J`^#wbZSK@G-$OwT4VV zyej`$_7-eP9^{#q-aew!e5pyZweiy$7(~pkd$*gkdbb+ID@-+W>PVdg3gX$vgV}#( zm*703E`_NC6Y=#Vcz(N?7K}yC0Nv#n2V4 zMm*1UtB5CJ(TycFpB8C?%@x*dnH6sGn~#0#e`a=G)U=x5tkun-b&%pez1ns>$JUSK zzLlZGx>Io1CD&DHw7RzNr|YsL%YoBU&GO-*k}a#{kpx>!K}md-$Lr%6d;hZom#LKV z^x`(;wEarNhm&o7KHuaU_;-Cgrd?(B{S=3V0rIrtHphspWp< zVLrU(9o(i&&?nsfc?4Lc6`99dyZea1g7nET9_DrIu9q7Hlfey32xkhqzu z#*@M(#m2S91-9$iz~9G>(J#~r56u*50j#+wxNtu|HtTFfGUPQUbDg;uMuG5M>t>3C z5Sl$}m64Glx>|kH`{fc(N9dtWTiEfOQpB^W^`5vg)3N#*KhKL2v6vS*&ubk<^H+y^ z@gA-6&#f9kzkT}_|F&+I`AcwH+Oiv`+^0`(Yb#9T8m{}em!M*FiiNV*RX>N~7rPb8 zjb-RH8rARJ#~iDgb4!!W;MpD^A3rzA6#YBWE7Q$y6t^hXgpo4qlYM%`HG#wN$Ij4O zX1T-rr(8^5Vo&iezjcV|#*asaa_EoU(-?SNe_Z0I%2-PdsBS>#TA^P&Ndu;rd@kFuhF<)Y69}&kN)&Mo4v4)NL ztBZ9;`?V3xT^G7^IFAaCkv+4?nyxh)h25eqd;ARM3I}r8 z%*qdA%$L3pOh2Pnpe(1UGNMRrXH%%bFA%Lj*Ox+%3QX4mmYfAz#(F-1d1JFWLY z41FF3G3n|x|4fxZ#fQPFLTLwvu!1k8p_Kcl7?p?=eO6x|E~9Y}LG`yKJup8eaX1Im z9OUbGBkvvW%bA)6c+BjTP4NziFdn%}InLN7(<kuwnCkQ7$$C`R?{oS#xv7s^GFd4NG`;(`qeJ}!stn1 z-NGcql*<)76femAhYFT;F(aSKNgg>812GoE)z z!B7w9K1;i)4^|vza32Om77K(qrk51jb7mUi!h2lralQB)4-=gwkZ9S5sGluJ0Yjmv zUX{}Sp-eKs0RG$K*@nSuD&RC7wifcbvR>z@5RRYW(dd$rHf(P<*@Fzsg?7!YZ1Y2ML9Kz z&`r6>kv=b>5MwMpS(kMqFhZqLW-q(A#i`kX7}@+w;Lc=ZPILjR*ueFv-Z>84c_b-R zxu&)4S27Rnk0FqoSeFW*Q~AN@YnUj@cis)9~@}=@|&AtA9Cb7}MgnoXy?Y88Rd| z*>t39V1O~rFEOg8ON)lSY>UpUnl-dwtZ+GH9_~hgsPZ3#Ezzs$6IGc^$}%>cq!Lm~ z#4{@_JeOpivz)H2XpCo<){;ofB^u3J@2#2}+l!*>?f>b#fDug0u4%4X$)xlyn2`UK zT&6VpJ-T={Ebx+e(xSxM|+HJeQ z@%~!OW>ftA*Uzb*uNOEXo6e+nE*Z7A4C8bJ$u4$XlW1NDHYu^%w@d76uZrQ(8SjLJ z9u5vXQmwQ~vZ()cR__0nA+B{&;=Pn)|;Z{+R z(wEU51EZ*L+R=R6ue0}Y80$)PW*~S946VJDAi%T!;jBYaZbl)lw3v=AsnrElwV_$N z>ndYjC5V3zj-r%1&+EPN9DIvg#wdvV-*kNYrvJjA+e5=nBB;hav?z4Ha$~aYI?PnQ zK;I0%*XFrYq6}c895fbsTHDdQBO~SU=pIMPY<5OG?=5bb(9PMZ7>}QZAR!q@CgA+W zc}hmZ#IzH>rCx0%BYf{(FAK?@OGajTypHI^H6v$F9#1mm-?W#PD;ft2j0v&y{=+zh z4PJ7trqp&8oP|@lPuSPIC{@P>7p+FJvZaDT*VDRFxiO4{8?r%c*|OpIjzhSx%$@XgboSZUuv$t@-E4cbD0}zL!m>suU6?`WBgTJeIB9j zAtdNwa_A=o>%eOvdTMIN2N0XmAH>jfGAxaEh9iMD;`UDpfTk!kdQnJ%VoFMXMMH?D z>_ogBKQ8lieRv4Dn!qpOKhhYnbX_q2$=o@+^lhlPW!7qi5up+V_w|Ifc-@w4yBvtp z6>Vq13G&-hX1xWOPB+THI|w0YxbhS8#!dCRXW(b+TOx~FAck=-A7|guXB@o`DfdBRyKNy*WqOMiyRL`sGhC6o3slKMT| zo!!qL?#b=HFv8sdB>4N$XS8U}X^7{;sC8pZDiC?a!ama&d`#`qa7PIdFC5 z;UJCkf2DrI!eX<9M5W=py{|8FS!>I0PF6+M*B#&Dnod+p)K!p>^=F^)vMJQYep~aa z&-|`DiuEU%RtT+jk6?gMfUh|gOhJoLkw#E z)l*~qU88y>sy_nFHYwOhrRDnv`P|nNRIh|wnt}j}HL29z$p0_(t>^PV*e(4I|Fk!9 znqaG6YyG+jP9r_4J#-bQ_NX@bpEaJRQnUBSIUPr@4+57Dup91?GkP{_6O zz%2!`kvB6qI0MZMh$xU5v&I#A1Pgkw(y?LDiMiy7G3#{T0VSV@3>nte1;vWyce*S3Z0U($AV?{;Y-|%s;A^`{Rf44wes8|Bf*vzIx zf;Vst+$yr*D)AbV2Y0st8@;o2YIJbh+a$rc=o;JZA6QnL;D(q4Y_6LJ3*6`>2aNos z^$iu+j6kp%^kR{(Zhh<}d^0TjR$l%~b63iVcHFud)%gNRI&Hp)WK>VZI&&0CSzm;D~!`qW}U^6}zdum`Wa@o)qnC{6)hk2oS9G+dzFZ$*}lGjG4$;EL~w z+mQ9v)2p4b;mbKk{1B+=Ax_nbe9l7?eA^az)uH?$fEMSrXk>;)b zB=2VVVC;S>G2K6kd_l?D>L-H^UFKNpNme1`_`+eW?*EYFU7H_!%@S;Y4v|Lyy!gFm zpDAv%MBy8zoh9(z2ZLQxp>soINdY77JnD4+6JxoOypsucU1HO3wW_P^?{huFYL=c( zlV~Btoat#D57*E9*q4ha3I&@3;T>0}JwmQq4zkxc8V40@qTV*<=e4dda%zc9i<5>N zm249kN0NcB_pXY34io*ZgKYMN za@$6l@)=?ZGmc}coCrwN0u%4Ns^xD#A%So!F+Kc9%4G1Wz4C2bzy1#o2cff;LBEcB z?3x+trei%3OEWcPrgK-X=rw8wU({L7kz$;lXaqyfYdp@){WYC4VtzX5g>^*-kL0Ti zM}>!{vdZ0OE0Co#t_&<2_Zeo=w7CX}UGT z$m($+k;w0<8HnFM`u_5KxCvB8(gu=x0A zT3Tco>FK%7`|a^O1|d(nMNGa2P)*f2R@DT{x=aT?E{I4@PR5Q1A1M{a2_|Bb9L-f& zCKbH%9tM^AhqWhxrj&DWY0#98w9JOkd~-U2XMMc0Za_3J9Q0 zrh=WEZ#S&X)2Fwiw#%i6Dgz5&YnG z(B*S&p250s*s-`wx5@1ycKQ6e>NmwDTcstP?_;`5W-2kdGr^z$KH)JUjw|Z1-~qvmYJzSSn@Wq3&P!NSVj#S$Sh)d0lH7FKlu@czYk7ENJxfS6QWoOeN9YxCr|PGXf~&VP$u8 z?l~gg5(Dla{CqxNUflBa+;sD?q}HzY8NWxUMUk4gYbfdHUXz)>I}T$wt5<0kn~Ke-4}YrK zy1==3-|x`uVA3d!ZKdrqt=co$h-blLgOvU~#X8?UV)hCpsa2R76~b1AG9*Jl2}~cI zP{9q(n06L6jl3UZC*D)#w8#t-~P(@lFJao3} zi(~bmHF^51nD$G{@7}L?mN%dGGJoncfd&HVL~)@VL&@zz81!h7FKt%@L?)O#E|{Vi z@KWgcEt#vh&*r@!<*JlLhet%P>3-8LP_2;25EEX>gg{mgRwE22iXHnI+*$vaQ&Bz3 zaS2vk3h+y=gfXwPDoWMwiIMsG`IvT%a4wx5g`{DW+l_oay{*^S~cfD z4Orlb31!>qr(|TwFEl;{1}bQ44~i>3Nzcdt4qpA@aM1ysz(7w=4;LHTA zL>qi^*!$?EM*S_}DfnJ0 zdJ=Qw?qH|nY8I+DR=%@Q(mo6Jssaifr|BRT&0BAMD&C6x^^ricE5I4`Muq5R>8PJR zaoIvu@fkGbO;uHO?7basN!T&CJBPb6C11&-XbCf$z3z0My_wJ^WW%7CCxOSzm;JtM zVwA=lZU;WC;xX@(tvp(&rfpz0`Y5dc=D`$=?wdUqV}hna%+psgabdh4P_yg&cqgB?E3*{7Q^^UpKw z#j;5CHor)D8m^Gd$ZE+)0_2u=DUDIkrQ{yXb;nS_eoTjB$KV(5p@-Mp;-)hi&0R(` zHGUYYAKRnFP(S^CaNn^hZ-pNLiCo*~!TY;0b6hmGWj+{4OsJZQ8Btncnj+m+H|*Se z4=LX*I^1Yt{(a*E)Vqji0D`83>lf&^3|sehf~zaYDUf;I9n`Epba`zhD6!cp2$e zYgA#fh@WoM`I6{{TkeS5rAy8LPP;(T9{Y&;DX2;XKOBEGEV%e^Ko0c-X8$YIY0?7I z;I<+&Hgpm|5qv?V^^RaIX*9E}kz7trw!&_bdDe5zeXn<2e_tI%I*BJoqwY8x$Y-1$ zGpF6Gb3z|kjg{f537|k=GO0iw#Ub204R3(!u~$RCEU`&gamyp#Lg71i>kxtN z<0Gw_2+%)_@ZZNYn|trsbLXq{F~i>BVa-M?A0e+MI~(k)nkCG5f1>HcB`GBFL`l-3 zLFJWj;95sP6Ezi;!fcW;V=~WFSDu`#R zaGJEKFqsw8;I@|?{F=(;uu;uN_)<{Kb277T+c>w6ggaNghMMZxvmEhbQq$dcwvtI# zHAG{1c|gU&%D+Ca`gU`wPBe;6fqA`V`=_BMbKV1-zp>vo-pAliY>oyfs1G~sv+kw! zfOLzi0`1zG#oBO>{{2G&@EWNd6`%}>@uKqunlH_~%;4*3vumI=89XEN7}BU>mu=u0 zH$LCyuGsab50HNIuBOz$-f?&uPqQ}NFE}wfG7^_CkAgNbP=K$c}_}P5_H>g15WT>UN<;gJ~Kae&pOpS&3;qivcrdjjA;CmT^yJ)y<@7JwcGvZ zG{&&5cMFzEMW?v>Cuex6DY!V@X!+sP=`ursYSSygj0I3@h!rI8e+`@0Ju~a)bFVT? z3^M;B=HnZ;9Yd=!Q&?jg)q3Rdib$vJV<^9(@7^Md-@6h)Bm=F)TCv9W4FEKkk!dtIJ0|lTOG4;vaV&r!Yb&L2@t=RGxw&#pT%h z)!P1n+!Eo#>qDtUG{s=es?nh6=qRm|B;N#k3rD(8>yC|l)TtriK0KSXdn-jacBc&Z5~0os~M=ffk`joGS> z3m#@>vCp4BJ79GGG@@}(NGf2`@uqZ92ieI1wc2z73j)cqmg66<6Z~(5%0{zv^mqxXJ-qq(R5;$!~kuQXrXN zx>TOSycPUeufufj#CmD*J|^ik7i@-Q8_obk-qg8Wc zvDG}qqpjIIKE|WrQr~@+RzLeW_blD-AIcZT=UA-<$a_z1GFAMo+rQ=aXO#tq=gn9h z09x*Uq*frJ{6YMTK+@nLF~f0O!E7mreFcY0@*)36r~#-Hd3QJ4I#;nKoRIcgyT%Wc zdySga%Az48N^@DYG?(@M2}PE%CBd>51}tp^bZCl2(_i@=wq;aR!fR+J!Q=EnfSs zr*y9VF4JZGCHwwmR`N!AbMu{oxr;PHH#^VY)_9DhrsEeif;z5EEwI^J|M1_w8&95W;vG`t|v^de)XtEA!F`)V#G z+aOb|^%Ml{xB8{)g?mQ2yLa}p9aRXJAYxfj+*QJW^ofclsPLKA_K% zRN8<4$@oUC)eqp=)sm1zX3`U*t+!`24_5Q=`@V3R6@E}|aEm+II_CxiSq13$Uec@O z7>zTSIvme(Ij=>!9Bm0rXiwwHq5b7QcZ+a;kaFmY{IDF*9?=0t5Zy_{hNe?($cr7k z&iKw)oX5x~td{#m+3^%n(|p_>-UB(twHp0LI$FM(RZx2z@(c|feNYMgabBN7#YnLS zZ^3Nw+iPOJFM1PJJ3GJByA6|4ACWAfA*UstoFLlPrEjxe zYB$cEmQ(`$I&3T=JU(^)D|r>qmnmQ;N?0tLdu^_K;g^?GB2JN~J;T~8P~5A3l4YhZ?CWAnVBu-j=Eg8h4wH}p0|wT!>szRyI0u$&izOfVZ2r-sHmOe zDFbomhH(3~FFH+x*-3OR^ObWOzu7K-#Bn10z)}AJJZ4%vnHSR$lAmPGRcNTa;&Xa; zP0R(e5FW`=!@smW`MC5#H9xcJXDVoSnYEAG_9~!gO!4Oy4`5+H*kvkmwNeraEwd-8 ztJS-sFRt&!0?5W@GlYA3@`jxqrfrc@4n&>3-kHIp*bvW|)Lym9+`(Y>Sbr$vsYQj@ zW5&Y1&1qU*f$F@sdbYmbbL}A@K4$>I0<%AcXb9Lt8wO6z6nv$Z6H1nF91!kRH zDQ$gUf45m20d?uYI+^F%k3qe)v66;_88($V697p{=s%ZG$u5neK6XgV&XCM<6$~&3bl4LvyT0|XTP$N<(K2lM#|L2gUX%+opzE!>)DNqA2Vp? zzq)sSt&lsuc9D1x9OJ)`yp_cK$?ifxaInnb8XIxm4-zHlQr9gc z#kfW@P`0TpFaQ3IxG!L!HFxc~<`#!;PH#qxn;04S#rniE;CvR+QTqvi#k#l*}d|YnROVqHtMrS%$&&mD*6d13X6I+p=KZv146KL*Ye3N!= zB$YhaczJH`-iD0CM3npbW-kU!@xLB2!ED}6LEPRrYw+YrWPE(Ci~V}8efQ%^bumKl z#zLScruI$dE~w2&HtEK1H23cy_|n76N(2muUkHDieZoS8l_}@&L5J4w3hQp9{cXmB z7g4{yjK^WLA3f2iJsudAJ{+k(-9MBM-I^+0G>UqNsZ>_C&AfhUcR(;}Gc0KeW*;!l zb|@8cWQEZiRr2TObzL%zq}i$q8v*A$n&B!fnZ%)a<#9#y(xv>dN7)2VbD7@xkxTZe z_nGVUU3%4e<^H3!j20okY{ddq9}M41oLA?h@D}AuITho3C41R;vN9el6y0*G0HE6!&eUXd zPl7t{>dY)g(|w;_l9*R)IW3LN@ye}XtSI^7-UUnMu6GL=Hk4yEGm{7r-tODFCyE3w z?aPbQZ%&M$;8uD?^~=7%fD9>d641fbJ+7^OmiY9tIYZY4ADI-H)fr$bV>M+p9S$zd z#cqR7e0>lTQhXmlFV3d7;Tb`am_@{(>-8UwWw^!C1kRJ50gIWim|i-8ro&Raq!BU0uS}Nxpu5hRrxoWgE<)kN9x9YfvA5;N5>Hqv7jO zq!HXvco*_7$FZQd;(I27&+wEw7gkNRKpj?0;hvCwU`qrN2$;QyDRGw#>=W$;`n2O< zC687=kg-hm4pxcS?6LuieE7!y`N5PpqamR0l_s=dY2}V{e7sYY1=znA?6m@;<2lW9 zQ&XQrg@4gKG8+h^0L*A6sl}im&|mG*|2FGPA3#A!0@Un$4vX1rH8wVm{mBZdZwy09 z@jR9yhq9=&_+QHfHTg4y_5iow2I(DdgDO>!ev%g3%fjL0XsndpY9J5?QGReHMoWb zAS2~S=0&ef)kFk+s!p+95Z@uQ9G7xW-qiaaOWmx7YZ4}nHL9Ita!gFdpi*Wx*6HOH zh< zlR}B^cbKYu*zhE#h_MbVNB&#U$H2KKc9?gM0sCro&8d%g^HE?||2&=lZ+IfFdhx*x z^&Honrs?Ca)7r75z;NscR-HZl0+lK$+r}>@{TY#f%Xkjlgab9)^zZ!oPr9{wdAFkt z`K<{mcN8}7;8t@B3Q>TMeT?+{C{kZ|e0c6QJM3LUt-V6(>sj1@y}EHae;!M$Jsz0r8*rv zRa^=^@g_Y5u58u;kM&2*0j~rDqK9II0GnI)qB;irifb=^gK%>JXm`%IoUQQueeV9b zu?EiQ+k((-0M;2TGmLfXRng!o8eC7F3<|U`NGWx z;2o=90rN0}%eu2oZdWykgR5RFX1+wMR|B2vy5;1-TXHcN+XJt-+(%C-)Vv55r*0v( za=THa9sy55ql^N^qX)*Tq?SRx)uWDq7RIWHGpz%qx&Zw2v=j-+ZPpW*F9p9cLk>8r zIB=Q42k9vbA#F+=Qnl|68SFt*Y%l_@y41CJM$Dk)2rz{=PAA1pEzDe=Js`)-9kRmtZ)$B z{cI)PtPt7_h(QUQXVQvxc0pVYPU?x=c40usitK*!d2PI?2s8j?yw46tSEALx)aaef z9HP5LaJ^bBjZyP$+ot(s9_TJP$ZPwveF>+Z8Sq6=oKIq`-WP>5V$QlnZJEBKlwM;o z>dRHxUz#el_EvE?PHG_9>8pbyx6J+%!8(WSG1~^$_2WeD!~PT@m(m5CshWMvh65MR z;0yhaptd{gJ0~Nw^~U*cEkL%}vQ+JIA@?YNgNfXZngAyjtV5t9Q}*jN`IP-3GGH4v zut7)+3~aq^$tcyqz|)ZR%IT`MWUf2s;_o%7PiW`EvK44%UN~B|sX`OSt!j#Oe*dB2 zvYPkO^gJ~{@<%jk_T+L2>WZdGa|kVeId^W_r*1yosNww+V(ffp--Lwlt6LW^Bi3x9<6RUQ>JoY}rzlp2%wr+A!EHmU_g$#AXQHt{ zp1C|WS2%j;lWhsD+;2}hY@4CLkdU#&INvrUu@+FMovKiyAx{ zS>!j{VCOg1UUnVXIHNmUpX;#u4GVH06P(^Sb}g;`1WP{*t)2^6C7@j)f>uj$U!TY^HXPMP(|;+dFdH{Hi_tP28Aw4x zLmN8j=aVZSVjD^C+>FVG{U``=bFu-SW>6P_XX(GW(tiVcKdzPOgf=m*dA>Zg+LLb= z``_XSMjKMUxP+>QSv!@tob;Yc#~Tbq8kViCv6->ypP+o#s?ScasMho(JLv$!l-nl? zmKemwqzEMHFW&U??t}5IT7?{%oHM%vV|w-aZ?J`07yHAl1k3nkE`6;@U_q#3$On)S zB0xrvl)$|m6Ko=WA%gy4b)obksIcC{Mn-0i@w-8u=g+IS_Ugkxa{YgL7HF~uwWVyEzH8h3y21o1 zX9kdlswvoRkIMlFNC0wrYnB*PAxmiJgm?}Gn#*UYrqihoJV(T$)&_k=1mw(HN)vFL z(cXfN`mZ@#>ofZ~nJ9X~T(dmkMKkma!Mzj}0OL}DO>kc3+@K}@aeaL3;-@gHl-(g9 z+M|9A?_Pd8ZqDpa3YCGuzF>!kM@C04y{FWFbJHcgHW5H=fOc@K^yW>m*kjC!OTp(+ z;J2`!jsj)qPmoNVAu>-a->0YRlUyH1f>Kld39CG)*7kNg&$+~IF+VsK#az{BCdAD+}lTr1Embm!T9?5c6KbwzK{Ha zt5NSHLy*Ew3qwj&KE;juMrm|>|HtbhNWJso}*oFM7Cpa)5oU-Wnj8J||%+P`9OReEx_8IM~ z^Mvo>2i>4UV%7|a?rWPs#ZgFgvgREtEXdd#y2WHk|8%C|sO)v98Bnh<0Qgu}P5s5& zi&rZQv{Gd995xS5jgoT|3+N0kTt_BK)~2&UpHOzMC4!k*PEHlZrh{-0iVpV23f2y1 zY~xvMGij9y(}m|=j8$$|8o9}FR>&^e?s*&WFlt}PNqFVJk1NJ&W{Ob$-qc)Pp13l>r(snhlqlV3KD z*?@JSTV*Nvo~FBS)8!n~1;cd*`1 z#43Mp{~piH{HOAJnatA3C%u3d5QAgrz!8tQbtFJnGOr3jnUDZ#7FcHLSDaSlv;dIq zXkW0t4y`cHLq1&3bNck#u(#>DQSNfiLk)e|Eioel{ym1la4Mp!U95ywzodq9>Uw#a z!;POBfiVoDcmr>wbHaRh8M+$YKQ^swXy+rID9}FcD!VQWc?AKpQ7TOcGr%Qvw zA3+J|a0@Lb1fEMLjes_m$>H82po<5O*V&E7#NPz!?e`@<`Kwjf&Av@F zx)Bky%LJB~TB@mS=dEh`Vdl-Csa-jiAjhfrA0-0FS6~vT?-hBIR+veS3B3Jquo1{; zy87Yt?D!8&!@<-#m~``qR#ePa&&cSGnXV}Pm18k0585BL-Dzs^(9v2vI{6pXu?|}o zLSz__Op}ObYZdIsD}W`n*D7=EIXVL0a$(?29*W279z95M?Hx!l9i{z8LD~quo3iBE zE-SWR@FH(xup+P4(K-D5Cd}b^O`i3xg+TQz0C{1Xv%sa;;N;XjT338_vK!3Mhz6Sh z8Jrf#fv36)sS*f4kf2#lQ1ta{Dj^#|9!jmf^U%!Cm96`v14F*(Jqn1cMPO1h(o?`I z$vHQxmkt6$h47JbNl=ML$&Q2h`b>|L-RB?}iIo{iC?#}EtuHPok7KZ_TY5kN;TZKo zrd55?N-I#2h{a7=1goX@CU=-b1Da$%c)Bi-F+@m?_{6PW$NcZ^HTaOz?^LUY2uE(O z3g?PtC`CfYKpQ~z``+T=bl=?QVNMpC*_oY&wJ=-5`PF^!U6VnzOD&M~v!Rze-e-*m z;f+_n(E*7*38c-FjT&H(kv{Etqj12Fj%800Aa^aLf+^Q+xds!lO96?I?7Meipq@%e z?TV5sO5)W=d;~riGHiBv);Tw)#p`lB*5Ej2?uQ}d9~xFvRFt$ntM=*BCzs1!_QQ)Z zcli`Sq}$>I)BBD0LT}!@X?*D0*Q47HdVrj_M!xhC`=Rt4xn7~@;7$J^r6zpMchmlA z37$<@j<1CL9*+KA?C$mS_ZKzZX?9dNp5j_+!vA+HyK5){cu~%gLIv~BZer-u=Tz%U z&m_yiw~plVmEVC8@Sw&ZVs6Fc{x2q)uC5F1E_t4w`!N5AEUDEDC9Po)JaXWSrs<+s zuIpxn;e^%JjB~^8(e%`5NAi+=D9?>|8p(%;(ruUfa-5W7-2zWEW%so_H;3pf>r+n4jFwMo zSe{c-P`sk)q*;o4IH?6{U?t_<-<-&()+N?x4<1A&Hzl*w32EFovGczWPMxE}wXkod zPwJ11KhW_Rayy0_%FVV(=`YUAqUi8_Z^0S!j}VY{Ur@0Vv?7OA8xSBOY{9_^>HeRt zhH`*5qDWRCH_!$c@c9=$z~UZt{b%xLWi(3p6lryI-~s84OwS_-?-PLO66Wp%Q>-Xrm2iR|97&x2rkAQE2nG!xn^e@dbm`6A1Iv-Y;t^Tq@D6)abujLjt zWD;>`DBb;kG_NgR_qfe0#FVdrSe(H&kuZF09qwk;Xq_ARlM7<8Yw*%S@PG2 zto~fx(>LPnZzr@-S%Lv9*131=#e&!eAo#x!HBpAd{uZ=MN@sQPhXzQffc)c~csr1^ z{_oq%5Q9cBQYczzbq4V>%FZOgB+uV5!Ak)F{#CYT(7sXyjP`0UxD&521q@Ir^PAKv zKmbh1hFrUfUETGdeMFQCTG4%0Rsk=fZvG56I)M@E)2B~Y)Fpxdd5x#?OdSj-Mq>cf z{O>?m9~`u2dX;3z{#Qj|=$5c|OMzCe+}zP2`u^$)4HdN#ww~TI1ICKn_Fvi|=7X`Z zV%0A<1+Sp?!72uIXbX{%Dp>j_^T=xS+h`}Oop<1nU?wX2`2t;QacK*lkuTp3^a-c) z=Bq*SS@0VH)`9{qcLGKD6IfvVe|}mK1PFE@5?2OoQ*FYE zZdN-ed@A@Y!!Q}wO}R0OQ-pwkSCg2ZuPU?t|5;0J*I_dEJL~GEhRexDExA7kBDm?l z#jn4Dk0MTD~IMg)ozu0@vs3zBLU3l5R2B?S# z2v`=PARyADqX;NS?=>P)6F`N~LWqihf`EnItJDx$=ph0EN((IsJu1=?ARvSQA>ll{ z@3+T!*Y@3ekME3g{;fX_h6C>8x$pVRd(P{c^O};E|GXj>pVT7f66Wx`dnh=z$-8Q- zp>f_Zw7^hyTJw|bq0;*%82kvn!?P!_=ts8heS;_HvH{`WUo(Jo-OptDZrfFNg(p@% zN-O;r54+OL_>{C(-v7WtE`T&F^YFL7zVc|FlV1Ls^b>$&R^gHbi0nf^XQ0s^g^~{W z(sS7t+T&((l&>%wq-HB$5FH$Q_vuQiMFZ5`e_m+9?7aN)e#g+%KEX-tKc063Nqhil z>DI_MxKH1!-_tJW9uwj!IS&A2H;n;fe4XTF!UO#E{nL}bvtzM)WY!mVXQRV=O^a~) zGh3kE9j3Omd8NQJZqUSZW|~5QfB5?9QV0QJ54;#l+FK@Lwm+Jyi@7f zSmVW1By##w2}_ls7a)%_>pvC%*?k1y&jhW6Oscb5!;@q>-`ah(`cBa`$2J^E%ItP)%g3*G zov3Bg)5X6OV$@e<^+llm-tI-FZthVMHH}|>EE_zTBOZ!8eRbJp!upZpsu+~KysR%k z-*K1==ezOMYB2RFwa1n9+{L9YZH<+Ytn8Bs!+CmHen8w)9_4GShBF^RZ_a;8NlBj& zpJNsJsdAY^yZXDQ$QPq}7|UI#MgBqy!% zXv&dL$Znn(y50x$`s1~${R8ZxV(0|#^9s{MLwr5)f=7Q{ykTm|8C?HHZwXK`lot|_ zk@YgqW{TnOP0Dg!6BWOF*sK;O`!Go@DD3QdtO_7m-n;Ar%R7#k4O z&>loQ>`(MuPq?bG0(fEK2w8nySl8f5hgL3v@l#TcB6~-0n}r#h_HX4TN@U~+lQ3F| zsw%3B%Menzl?)bUoN8%6C^y|jW@s94GU_wf&+yDHpq1Gv>$c5Cp)P{A)v$Sm8YE0$ ziFR5@tOpT%?$@e$pa%4~$`a!G28gWqQkF0Mw3XyB=t4olQUhZG zWMWsUXo>|YVT#CdD}`dw@7Vw9hP}=N(9p#7ZzG+p{H=4sh`bOu*9OC?HN5F+sjp7CAQn4o-V%5K#|r|I~&aiu#G_ifw4mr{u()p=IEHoNuHqulb4(Q-RV!fu&n ztQvUN7~*k3!6)(5Dbv%LaSu(S5c)FhVOw3jQw77@`mJOQgIOUAoOBnu=#xW`+;ND= z@J$R74AQm2N$h47hjVBhst;N!)Aa2?g2a&Sjbd1ba#1sURRnCV!p1cYf_-v z(p)UQf}tVji7zrCdR&BDx%P$Fb0o7^2m3ArXOzV1F7TLY_%P;Iwlfp(b>ejwuG@li zp>v#U@YmM;XCDsj5982zb2j@zD7%e4{pCr2Qb@^uiGn*L-+qb>0Rd_uK)Y+A7wi~! z8r#Ab;mT%>4%|zlH8!vs6j}i?Qf=W99e{9bn}zCChs^Bg0zb`|R{Jd@9wq!NA~iMM z@GB!Y7N|eOgU4Ly#gq%KMYplMaCLk9Av8Nk5SIJp*k;=bFcb)V%~ zc+2f=QTyCk`Ax5hRi-*Do3@KK5g@OplIRQFJFkV^28Oxf>RmB_l^1bK!upgBw2aI= z`Y0}kEONlYlGrjIJB>KD5zxohhZ_B_DELGu(U^@EJzEnnmr!eyg<6!5rPr*y2tn5r zl|ARyFP*3>Exo-#OGWz(U8KUFtllFlt^6tYbjRER(H!C&SA$B;fB*ir9Av;&CsSFQ zmRil>F3|Jo+ML{Uqh)mf873y#W1cFcv+$*gWq1VfQm@-3Bv(-#^AOYV$q8ki7}6O4 zl1gd}G}7MYlt`oHvPIuCKl1u({I)e9=n?oXnOn^=v_k@4H1|yx<(^>eF_?oH^Irlj zH0Q5fzN(da)&b!L>S9E!m!>slobc$V->|gQ8L<`9*U?_O#mqQ+7*^s$~&;BS=>ZLMcnuS-rX(YIvS(;!UVI6C)I;ZDpv;E<{$zZ8Qc3$1xtI$+2WS}e0&qY%QgN8FZ zJ1=Z}`DX34uS&sUU4o@;+DYm zp&$iARmyD4j}yzxGr#k0Uduh*GpXX=y**=7`!I%6bsK_(+m+WCmDKQ1;x5F8zIqTk zmf=vEIXg$8hI$lv>E6$ekW5<*)z#I*&%MQ(H+T<}X2xY^g3~c41m+qK4grn^9WtW= zKJxJw(f9C?o&$f)uy~Jc9uw%X=D6&3ot`YY)fy}IU z8FhRD4|m&9f%_-knPB5npl2V&0|le*gs>uZ=Cl`ulu_=ua&On-sfQ*u9~IEchVxNc zSJsl2mKKu~8*bPF72%9?&9K&@y;~d7JhO9!^ploi`3^&3`l5y-kEbx|TXv`ixEi?& zZQ&t0pxk{rpuDCbE6wAN84xG-vVun*^x0iks4{zxjnejU(Y#}Lh%Mre{VX7G&GB}qy8yY;gR}IT zRa+Ww)Z`GTHS@s8dS^G(yunXRj#s-ZK=9tfc9UEzpRYOQRcgc1|5Cs1ErAoN)L%h{q}%TTr^d~>`jYwY-%v@ggwFAS=qgU6!8P2N)$%5^yk!BOhX6wSMj*sr z%8T*t2Nbl}pLB1VM@AVM4J9DT(A0X3>iV1OHTosNF$YOCK_4ydBP`qcLb}ERF@CJt zvGNsVZ=eT=ncAdxX=ZV}%o-G1kzia*YKppyQP7oWj4>;C&XR&aTEhh?F7987oc0s; zltP|%h>kS`MTV!-^6;4&3O%?|8jwIvfO<-^dqtbzd=8fLxb)B>AYxaqBp9 zWka9;@wyxt_Bl`uC42>9b$#KI^WtcZ0X){Css>X!2RKt=BbQLF50&Lm@ixYs+XV6nPT<+yIl}?i7e%!!=2M25rOoG$_6Nf)i1xmr3IGz%%cn zDezKs+~CI<)6y#5AE(||JI~0i5LJHnz2fX(}VN zfkR2_Kum+t6BqY_q_Yy4Oyp&_AGWV?4n|Qrx(i=YqT~=}+QK!MtLGWV1n#>@FO^g% ztws`o;9C>U95nYBE-r|{JT5i#EasN~OE$3ZEciMP&uq8d!3G%VBta`jeCp%wucDON z<-D47t}WXc|?58 zoV3z%PGyuX%xfP|ty~onVDA$W&=KU;-PcwfIP)m8{QF2$rfI5IgcaSk`-(k1gAO^c zrhrf$Q$VHUqCgEJ44_+eo%lLY75Ui)T8f3UdfLY-vU?_d#IY(LT<2KjrYvMeM8+b# z=a=Fx;D9H*n2opAGSqlqImlCN^;tV1JiN2TewYMjJ$*snIDbBowY2;p>|mUfaHY^t zJ?Wm(uSG`bu{(&>MdvY$^K*RJsx5YtJ<~aEKdo~}8o@TZeR3DhyxcuBVM3`T+#@!X z4OdrEJez{%E?B5{k%EN$n#0qBtDug{M$6!YzQN`6RAiK-@T>8$8J}wKI2)D-zRv5G z$?DeeAbCCm48){J+2=AM|7V;Md2|=I6?A^P2mDtA4S{}!rO0ejh8p6#5BSN6E9>YB z$lW}z`TDAunB@4S77hTfDg;WM!};0#9;^XoW82#flkqd-ch8+oH^aWBqK~$I2Yk!V z*+<~c1TM&>*{qw4HI~}SI>g`*N zYtY}II|pZg-ln=sTsWO+RnoPTA`*T^pK0Vu+6u$@=tV}A9+M;LB0)&M1JJy>>!3hI zJ~iHk4Hd$<)yxm|om6->n@dJwoZYxmR93i4)_hG>Xe=D zXqtOJte+HTgWJ{mvJ@a_C@>VVeK$Rb(`0&f37#T%;d275`!qLqLCYmWbi$3b3E+Ay zbzZw{v%5Ipokv!Hc)2FJ9s3K~_c-jCwZYYXBw}|TnOOUa@5hX=;mEhh8$BH$CO+Y0y^w_WNm_H5g7dM%z!n=Rz0^*F! z=)8?HhK$?F3X=H9(aaL6v8DSr>BKvOE3N#;*i0O6W$5Zg#wW!+Ooy7XTqK+AjoudI z{X7l6cf;#nZihXSFb6sc3LE%vK+?y%S38+?SKfaB>ZlpE3hRR$j%c?FbzIt^4l~Pr z+5!WH)jO`aS9=q+(PUX82_-i5qnAu7uD=@Yx*_=&c=MAYKwb0|9a07GT!Fp%iO;_G zOb1TO*X8}``nj`77X2UVW*&ab>T* z@Kv)S@DXr1*U!Hl=(lr#8O;s9$N;`{G;pNy4;%8X0y>qaBfb6=jsM3{XxstF!#j_x z`2aal;0MyVy_Nqq)4$F1fA+tBo9W-)^e=JA9?tu>H~rh2{_gvcLeR3 z#>>N>JMJphZ+RqHP@lcI^0BZm$zFr~WeP6 zt#+|%VkRECo+6ipk^uHLygb{*L$?Gd8`OCwBaq{7bDHPORZ(?NSeO=o?8i79*8VpF z9>ZB0!FFkAw6{1u?x@T%_pjr0E# z^mh$_{#@~)QvmeGu?PK~Zzw$iKz}?y{r^9Y`F|r@8lQo!x?^{b?;j1n{|)q4*!*eD zP^|!%Imz(+R^Aq|kRpIWKAnEaVSah~2w)h#z-Ja%eqpgr%8z*K{;mmdqJDpsYtP`b zmIF-A{(~o9a=f#JX#-;-&4KeN+;8zxMb>D<$jm0EH0K;Ru4wgYWbA9S^XHF~S}@D6 zP0JTJVB&Jw2@*?#Kq>h@VBmlG$LPcU?`Z=-x%3B~EKi_=JRZQhOS+u(T*bpV^2P9D zr4m7o?E#)sjh}*|*`P`bWJ%r<*d%9U^t+m$%Y&&U>iGJl-J%+Fs%4RIefw6B|0L0- z+%|vHaxAx$#C$V=h-%uwGpZPNl{);bYH!2nwMsH~rP6UdkbpR;!X5}@x zu_B=IA>>K6+SE$A-z;??5cr6?q?^5?m^%`tDaE#v8x|ww7htIl_RM#ZO96oRSj)>Z z^;%n9l6|JkmrA;?qSsXOm0z8n|1FbKbz@8iu(c1QHqmQLE>hnT36ZtRW z&EItSZM&YCoo|m9c3Z9yhHH~9BT-(`TWbgEG_S2*?Rv8o z$0-VU@x3cr)F+-c5yQbw`M8`|c^!9n*=g#25-z#)Z zcVC_OrGSQ#E>bB3U9XRgFj6UJ5weLH_4fVsAYu##5L}r3(*$_Ke9e+p=XVz__kE}Yw z|0lt;D36PXD4`OXQ71hO2EOaFSrcJyNmfK9&5M}xnzKD&^{_;bzKlcsc-n36k(K!$ zym;lM^XdIhljP?X`%A=012gG3OL~wXZL~wUTEsuK&x7HQ?42sb5fHh@lry~2-CL|V z<>X}Ces?lmKyUbU;k^zUF~D`0?GwK(M5gW^a5<8PIb>~|${M@2Gh!bHLvs@vR) z)8CfjlT+7!brP1(7+TIlpY64Lw&BhLs8-oM%F4oRsbnE z>p0|djv(<1@($@H<5v_VFKkD)|K1nzO^W+4kNkvhr$ox?_;GumX|(yWQ*K_hn0kSd z;VXd5mhXPxvo})B!wyjB?|3ap-_L3d-}Oo^L=l1u2M2>oupDIHK{u`+VAbF?fQ5p_9Xn*wqs(Tw2<~)aJ87{~I7bU(Jc?5gre-`~(o$gR>__gAmm`OzkYU{Q=#n%iMBXZQ~9TzJqLzIS`jZZ57k;+1k+hR!-37&`v1g(TT!qbDk# z^M_~z-3oWG+j`zWSSk#0SACRVnu394`~6%Z0B>NqWWNQh&vqwK z4rolOd@*4E`?lT$w)K_x)dT-Qvj3NHIv@@8*g|!l10arpNbA9YobD9hf2>>PC4Y+( z?xX=`@i{(j-~U7$|GVfBs2bMQ%^yipXE!M}p$JPyzT4Uz9IRCCR_|DITbt0J$0P2y zZ>V}&{FI3m-%ZJ2I6c%wvUYfCI}@7A>;oH-iOo%GqvWKqViSd5k;m4*{osY#q)y`- zL*@<)_V%=%D=~p`n*=-HOh5cW$d<8KUidAkYTEkhjCp3E`%}&IVe(;$p$o+6jOv_V zt0p_CxGw2{>29>5a`kz5GK=uA@Q2gG67z1@ta_0^gMF#?Jz5hEl#aIcE@fHO`eMz1 zSGpMQRW52C+&l3jnAzkR&L*dFSO5JG1fj~mE_DLA)*0-@o0wn`giFE()|{O6!S2*# z?bL|&&m{zUZ85~WA{Iv+%yxEGEv*sMg_Hm;Gk?|yGlX6jZi~XTR_YlmIj6s8}xZFRC*${ozx~Xl5DK%3cKdE6)RY}G3_OjZIzvzXICMh_1 znYZa!dTc>1t9ecE?X8{Fi>$@gEj0^ncr}A*&JBN4BVS^}jjJjA;r}&f@Kn1PVOtUc z7nP*jw#9f3vqHSW)))^>`#3T6v!;{d6f%D%+uD$&Sk)CUpR|S$ReZ z&_*M5&(tzvqKZiSXT5waT_j#Nw*i#zKvVXZUDgVE$~sF?JaU9KEP_PQ(&9EBQST-= zmkzeyy2d!YEXeO0JP0v~pwUwNgO`QJwlnu3dMqLH z@7huGFB5d;v$oSAC+$-z3>3BM`D?#DnS9)@&p%S`n(s#kuJ(ong@q;q-i7(uh?mR; zkY~mNG~8u;x;4Zg=+?*OWOWPJ4NGfWk$p+nveLW@^seXCSpTgKGH~@Iva9EGf1J!I zozRbWn47ODp!|p_c*)$BTm6(e`^I=JZngmp8|CC%oAwUbe!3*lGYpRETu6UMwS;vd z%o&WygrXoAAW-i-B2a94;meU)WL1cwsS~?;zC1cLF!P2h&P28TaheeS$}=3P_kbj8 zi4Ak((L_je#SifE7d>Jjscg_3<2CeMe>-d(s-xD&nR!62+$~+51j)$bvc%;2M_|dC za8k}(-02T_Q|^CB*HK?h!a6_PD#O%#M|%{lI^zpWtf5!{#tUMf^Zv?`v_zkmO| z4UwANt(;jBQzU`03lnKqLi{*H9?8OXtk(~0Hy%ln$_%am4URLW3POh($fY10+5xq* zL~H957g4+V=xT8ll7lcm)p`xtH&K`jn+3Nl9}0T1q8TF0BBboPb#2@WntA&qgllAl z{wMc+Z2h(qO8-j>bM=okp{JB0_)x5>#P(s>{dV3>3g%EzDi%F z{Y_G*M~>9(CC70I2W=r56%IQNa;o{7>R0yK3d~>jQwgFi8qRl90G?z=;9Wt~H`NdMcAbC&fcu+rsT1>bx z{KrVhA>M}!9uKyqU8ecu2DkhoR#5`DsoQ{i?3~5h1O4fb+roE#><2=Si{g+?x21w0 z=$C0i-?LgmNH(9XsFiZueIPu3?@HS!PecP*SBBNE%AX_nJN0MZTWPe#Ek6 zSy-9;xz^TLtW5QvrQ&I(D3vV7wx8)fwAR*&eIS{)&-qXVedeRm?n?owk7K5URx?gL zoZcCXkZ~1ncCm0QlS~bM=cO1>y{#}WF?3tiXkmqGfC)L6onQ;c8mqh(Bx|4(+cOfF*Iwz?qU=Lx)CAw>Za5I7=W z(c8nB%;Ml8SbN5z%uZEZay3H<3}bH@BD-u*165wcX!vr4+BDrCcCwg-4>XMMkQre< zpN$=DF)h6~NnqZP7;DtUNd`JhN2pR&k17l^;O4X1`62}Kwx_PPhbTH(>2euC$>ra> zmM!PshQq5RVO7f+(8fM$P=1Vu{O4^I*lam3GB-@!ZWp9Kxr52z{}o3+UPAKgC8mm# zj4h_*F@c+@@oG9i~JMq&s;P+1D7_LoLNRGaL8w{#n9x5H;bO*lB2VmQQ_Oo?@obA2I&?q5s>)$>uzvdm2bLpR+$`9}1T~Xei$Yw`iZKaOG+s8(YSuU<4E8n-N>-ZEd zbDI><#;IAz@q32ne#N0Lg?w#B2R&+WA`B!+M-CmDEL#zBJhP}~h+s17&@sjKwi_b- z=k5i#<5GPe4c(f$&^LlH!bt{ci-@?)mHKMoC~{5r5Z$XR#awY3t*OkCym>}5lt5aP zO>P7yba0$CU0`?A596?X>c2o*6E?M2manpk46jjYIeNDzc0mBRRqN^kc+M=F;x1pR z4(L26IP9CZOb!gInOh=^0Jjdf!vuW)-VqvY{uu-RXZ`bpMcZ8VkX?0@J$6ta^?<<4jb9Qj z%zu00kv{l20e6~PEXH~>?}m?p?Gn0}s7I&Q4~!k*omYKiK*d70Y1`jkabe)ssSMEw z6_g8_pS)2YTWmVXnbI`F3p}cEs8YJ@N1P|YRqKkdPl8#LjXwICQ+&eWPVduTxBi=+ zz2n)I37C%xoUlHa>?*e&$xQdQggt(tC+kd4raG>psB1^s)y`gZ<_1`FZ4YT0RsLwJ z?A~Lr(A{WX_NKLz$tj@X8gGAd#wLAu`80SGO%CVCRztkN6ol$$rKG64@D-Fnl^2>e z5SF*@y^~A|$evQ!;SlK*VQn=ZT?rw@V-1P=m{uj3fpa%c^hrzr9a4c0y<8$}7)ndf zKtKt|QFA)4a%Q}T6Mrcsc9_qT<-#0KTN*@qx$2K785h(lTVG1$Twi#f?xYh!%;Mfx@ym>kBcXtJ@>*iL!{!JCx>+&<2nDnYM8$M&08i4aZRE>FWCU zGglRhiu@z;w@k}DzbbM|8sEF;H|n!Ha(UfD#mt}HaKmj>1yGEiETc6dkGV#;Lj4Fy zxe5p?P)(Yd$wT-gV#VIWzOhKidZ(E1sLaHrF9= z+u;9dwzMUYE70yp#p(^$jwb96XnQBIrlx(??`}7DDP8j>>D_^POvAP*v*A0KI%&Ca z&N5}id2EGx}P9f|wNi@XT+f$%JVS)w&Xj9Z%MNRT+XB5?cW29&#F?2W?`;=Q+;n;<$nUO%16cBvh}A5^t!RR#i|Fw@-AgkqqQbn z>q0Yh$B&mY==F2^W?@q+moMYfSx17E1BCqO7-rH8LB>j&##Mf`d@tZ zY_F(%!V1l#_&{63>BQhdQFgV$=+W`@zA?l246F|7+zrB951S#Xhbs|*R>g1McK4fA zk)=9PA_)3ELc@;wY?NVw&erksMk6b|W3l)g2TMxD>xz3p^WRe2gz84?p`NiN@IJ_O zo#Ax#)!XRKq z`s!siA}@9K#!MH?suwDR$I^u^xEo}nK3Em#y2>X>CD!%^ej59(oHhDR3B^=LrqgF< zkA&I~s7o|{{E|s#dM{qFswF7~68J`v{P;Zprwnimc@0NnysHupG<>fG%LaYA6a?#a zC4e)C-_0h~=Y%lozXU06oePa;+#XfkA`JM`dl0(NAEr<@ElMiOSpRdDRrP5TknBawCy8`p>=@BzD<`4G`sYs-kd>S0 zqbHlLBUr};ij@#OeJ>h;SiT^!+3k>*6empIQongPNb1^HtuFN%;$APsuZrvubD9)i zZ#RR3jKo)IMVr`I(fvz^T8S)a+~6b#Ani=p?bPV&Hk{N)Y=qgi5}r=WFtk9QAxAC z>DU&S-e;LvExD}}iEWr#y*bjV{Yl8oPj?gn&!M z5@kY#(KVxV$+NEMNMjb`ZlR2T%d$h^Ttd@4$6I~S0Z%;@WiiBrl6|JvreQo_-b*ak zA*pS*c5#bBUv0*a@13ERsdD_{3XrS(+BAo{MlTeM1~PtLh%LVL5Dqv9r(TjONvV7K zxt5e0sKo(5ruR>(uDMXo$IT_i*7i9l6-*wvq1>aKS5sND4_qm48(S2h5vi_h2-1WL zm)sQXfdzTr(#|h>xS#siyG4zQ8OCwB{G76X^^YH9EB1@k`jlK{n8T8fFBVHJ$)5d^ zKjbxdvNv{kbjhInMW+bE!nXTOpx5(RT%k36VL7zSG&FB}+pqgi{Yhz4fep$2AWMW*Qli-4PT1AkDI^~;xFThuSCbG^S5K`6$3F0QjqVMZlY@-|#DI%swn zA}mEcgIElBx~2_P8ETZqSU@FlrSq&6z(iKxjO2z8s=jW>d zufX;{vZy%>uLq~a4!q(qRZMlAq1sTet4X#-g{qCMV4CfiAzy%-EUa3!_S#)B1o*9) z;p+-#cDJyG-Z9LG(udX_4uk@ryCGM#Y#c<;raTbw=^s!O#38GHUK>Y!`USyW1T$t( zK&x`LTHszgpWWV2hKBb`{t+d>jR2NU64pDidX;R2YAjoL8Uy7I*m90j5o~lLUrC>0 z`3e$$Tu+vY0dMpSwNIi52zizztdd~4eev8CNK(1yd&x!L8hojB;<(*U`H57lus7k9 z@Y?d4wbGZJ75>3TZySh9r&pSP5lsM3SMwuwUzPScdpD>u=J?t~4_a)Qtk3~deNBGJ z@lj$e)N!orP!M9tbu7L9wgRo5XfyQ{_=f3f8Mf3Q`{0<*rNCe$#T#&qHSASZtnek5 zbDh=7rk%BCUBWnK3!y&WJ3fAmhT287!4uSM64B-)@6=LrK5(^&Q~sbwZKUxTNcn{3=FP>uudl?yriXkZ+2}BOsmhD zX!Ge!`9w8qu!5D-iH^~Xh~omB;2U=fYShNa;iJ;YAd|vzn4Jex*=(d-&cB2tLTsMc zDG3?*Rh1!pQ=8t@e=c{qA&&2{8NSMd+#tjx+tLg)MkbMInD4|YL(@JsaC zke$y=1QNT@hNs%eu#raQFL&HrQIT$^f6;}CC!XE-t zzJ>k;DX!zzESd6RN6m82*P@4uy+$5%U<=M`Wl`Ukq^CE@lk%K@h5{{nh^?%9E zi^&WB>fTT}#78jr1**XfFHRn-R)mGprkZo92h@lcDga4X*D0^wacjrOq_}s!9fA5;$31rm7K@pnF08+x1u8uE?pKFkD^{uzVdZm{NChH+7Uzv3?yx@E1 zx#fSJnIV6+aAw!)B{iDK)EcfG5!erB9URvVTbnv2ml27Ta^!+!opd-bgWRr~ElgkhAZ45l^1zF*rR9_KO+*d_z~j$InVR3P%pghejX9A$`*2 zb)!){vXCUOWMtDfJ)fb(d4`0#wequW(&BM}3>#LByfee$FvGhyws0`4 zQJiog>G|kum$K)peXnXU$}B)K|(S_`@AEX#|0{m@1Dx;i@*>juz7+AnBUc7kJ|MyPSCckCz#g1V z)Ni!ztWh%9^?+9|%d=lt%*a;Lk1fx*fnZ2ktQduy^OMZ|xsZtUM2h|)uZK#eUYm7^ zsmaJ}?mv3Hcc4y3R$!UqwyK^tkj&as`3?Zd$qP?CrH?h0+bcsgeA{kIqK;C5GpOc_ zV`VAm`Cd86R_m^OvSVBBSPI(4)xY7>c-YymHW`D9bsT5p&yEjoHYgP^zj}Zg^UJn9 z$DUMPqh^_6dGdJYqEBN@81L=H>m@j3- z97D!g#vwb|C%n_c_#g}imU3kvD%Clqi&T~oSgS2BuuQ+Q`GATtax{mk4fXikzhWen zU&N-spO@U|Qer0J;ZPFK^D;%zc6I-NImRUv>uGkAiZPll+GMl_Yxhl7X&7?U5raJH z97B(MT27(6R1Y;frLN*1uc{bE|+7=Th4jbNcfj@(00}Hc^9h^zSK7mqY1w*%}AZFUu{=) zY}<4M@L9rTaD>C{`#Blsu8%1p87=kA$`5)QdUfQ~Tjz9i^j~sZzBB)h(0f#`Csw#B zPuJLel%JRZz8KK=$61+qX|#d65OA~eUT<{oJ4*uxl=pf1=Rnt8+M~8CcBH?JDmwMu zxUT%@KFGq=tJ1)jJ~8FMh<8~`DVk$bd%(Oa(`}z5sMrGJ=Tqe!q0oR2EU_z+{pmiP z#ac@Vgm>TMPRb`WCsiqNf#~(R{Ja&*>I4Wo0ImfKv@9M2G*jZib>#tujte&z2 zIQ*P<1QS8&eI(5#kJ`a{?!F;8jMqSRG$#Q@X(rTyNyn5ShkrV43tWR-r>6==xJ0yO zEb8;C@8I83kw$C`AH<)%nHrof%nd3LUWi32o5BYhC{O%J4BGjCr(rJLG)~#O~V^VVdjMJ*BkJ8AOhilYCyFfojUq%U3$_K^v z0|@_}krQsV;Fu;ao056}#>%gZeCoTjZtHt{9AQID4Djhi$huQdK_M$vKpy43{-U6C z2CJgOo!Xp&UKHMBIz$Vz5*|7|6o+?gg0#QxZVZ>!dwaQbeorFp8cK1&+Z!ZJZ<3Dn zB)bCly#>)9qY?dq+}*VNVNG~lQvY-xCk{}%1EQp2xiYx2{)K=&MA2P0hXo9Mn#}ly4Kp;b~WI$vd`nQkqv3PjwF&S9#6VZE;!c z-oNXXCB(7qVOG0_6qcBs?}LZ&5%_yEQb$)6Jm-8VzRtMbV8ts4v+S+Lt$__ZxfZT6 zrf~M`22?<$AXxM>(Zbj`!%KBjlBQ1)tLj)7*>b}0g4G(kMU*OLz7r@18*xJ?ee!ya zMP*bcM9)u@$KpnMoWxjXuOk?q#9&qIJYW0g&o(G7SM9!{+PtnWch76yUVCBkov@oH;WCr72rHcfs&5N*a`%m; zRY@)78f>$#K2;v$YIe2{p13CbAp>I_ zdp!8d*t;L~fiXEW|7>5%?PuVriYXlz$)=D^aRTGY$j*^DxdVL3&33X|Vm!RAXWZi-W`e+$38~U9{aQm4`95@`-YEf2;ETT39;HOqNTO;#u65nOq-Mod$?9F zM6(CQ3T^l&=$+4e(miEjcRvlfPY5?n%+n{u*irKKyRr%sM4g%V{rw<)fU{`Wd zBBnx39AI@E9r{UW;z_V9Po$y`Ii{ZL>ZO83NL{nO z4mn{t(aKdasY0b`Gruwlr$=yQ0JRg2hyKV&RebfWW7Mfy)u;a9>4J(-A==giomc)K z#sjBK@-+p)JzH9J@3ltkPIECIiIOD&Qf*aMKN*T7X znq$LKx`9dyJ9V#3y9}yrXSJ#|uiwpu*z)Wm1F%nNSz7RGf4+R}uN96~lUd_kX#UndV*~>^n32 zqFcE1oHu+|h6r)9Mn$mT{n2XOHf-C?{BAMBF?s_&;#2q+f~IjvMxA44QvG_vx>b3j zxMUGM{wtn=%D!N_-VP_}T4+ilc2en*b)@M5?p9iZ1yBWYJ49#0?nBSP-jA$|)cV8g zrrlGOWynX(ZSe_b7ADFPtzAt3JR?4gs#EAJpfl~IG`&8l=j1iE$PVF%U(MusNl;Oj&0j+LJHV$ zherW72;u=TzTYymA?m>%twxPid%yGNv?EO0MDI*5el}t{Gejzwk)=Rnqi8sCg8bnb z11R%?0tH89;-ew{BOqWR?{IMPy-5A)n1rW{-kn#YAFxE52*TQdMcfmY!jOmQx&^RQ zMsG}n20fXf-^dqct;V}as|Ncu2T0zv9l$Lfz8j-|wC-~8k>K}E+-=RTD%{npuIsE; zJei8p7k-s8b9$zvuDVW_DXT8u8^$NF+&NY{TYA_>{@zx)3j4#R|5e>}Mm4o0YK@>$$P&srdhX@ErCkYZE6bT5SHwh3#X-X4BdX*AMp(pg9Afogd2qA!U2t}#V z@8;ci$2-U4-}lCN`L*{Ld#}AR*IaAPz4kZ1Z`bVd>j3J^W3f;Nv@v)J@i_q;YtN@| z{9`UodD+I_tUD!jY2^8}YIPB4PW#76vyAoEva`K|B4qx0Kf1YMz(8SSTbh)n?n!UT zfW>GaEW3sOnlZ(le{E_X{vxqMeUolM@Z+03UjC{8PG7I0c3LU=w+sxNiNBxs@;1di zIec?4^2EzE5Np;bVTjpNboa0YW*CQkh=gX@6o;pbMbR(2i+Wir?sk^a!!UaVt<;L z#Mfv@khU|ko3S3; zJA?>XWM=H*Cb&g=Z{ihh7)|I%no42dj#@9Ky^f6*)2p~M9_>DSX5C}U0S|} z#D=HRv`j!BpyqyS5a8=>o_fvNDUA|Q|8z2S8&}!m;AAQu#Cxdo2FJ{z7p9l;D23{~ zn{c^8zR#gx40ge6LP9@9>gp!v#-aUKy*h0F`y{{_p)=eMC{GGRYVKO+<*yBb@m1-ZgA_b(zG?)AL^pmF z3lh~>5&f~B$wN>6JjQne^bc-kJrs22NZ_ecO!}wX4;)-|nKV(W zc1!10MTNN^J9hA%iRH7v*JcYPQj-swWUn#bS8-h$Mmt}%nFpio`IY9@@kB@aF@v|< z)Q3w;-(PQBTesd_nE#fCM}C#)Q?J zt_ShG3a1sYv@*+Hn2NZoB$hcLYQ!}x?lYgJ^Qx1qr9TTU!AYKb^b1C{Ph7d*c?U5F z2=C?Wqo=Pd5^sQl z1b>#~oi2?0xq{;%JA`ja@w{iYcNZ%qjEZr%j3}sHyEju`b+)p{D1G%s59Y^#oqUKi zY-9PW3s23ekoMv&Xt$S67xtn(QoM@U@nT*;#1^c*GwIFnG-Dd%mFzhHb)N%x`VdJ2;3trb#mOKP!ZU8W#+S_(fhNw+eYOB&qQmzI}G(BSmF%9yll^YjA|LuV|2jodKWH+i$p!^Dd{HD$!U%>=%IANJX2 zOOugRJN!0Mw)8}QJB>!FXO;CValMP84>x7uW%c7o;kt!mj*&2!Tl=aHZ+-Qw2XDmm zbmMDF#D>>`y+sczpSH|whk(CV@O%nZ3T(pAW#=#Rdkj%;p-X_+s;YDJVP;)T3%H4~ z8EZesy5NHmTQfs;^Z3GVjbT2LO51M_W&L4M55@G&&~@A%e=eS$7D?5-o4GFEN^D9h zv{2ikR$k5?YUPkinc8mGjh2qVsi+SZG|#*=@fg)oZQzH5>Z-OnNDO&GO(4N(!!kzm z^_6*EH6g272H|44pQl*xEq3pOwx%Xnd|X9twSU}gR?5=|LV4DfHOQLH{+%?dDFy&Y zKTNv02`v9&`y0HU#vwtk?jU72{2ysW`X)3scGqi#$+x&uTdD_lv@lFqPUD;HZ0(6# z=dN##UbGf9B#KBu?=f5`&05QXcSk>*=6gxMa`L3o#ugaTnt_7!I}0nCl%P{kgfzhY z`kr=>iZ6+L%SNc_7PdjIUbSMfB45?>(ICJ}^<7D1_{c#pNCU%C>HwbW;TPRAo2G`+&?eAw{3U;u2pNPs0 z=eP43&eP#FSz61{vC&v6bG-1TWp*#Wm3+?&-m;3W#*Wgi5CWe+x*lEQo6#wB%09uyaN{Y7~4`el}h!zdeQgl7pKR% z9vS{!DO@-TNS`NMDBKc<9QU_H_ulJYhdTJ~n<+x+zly)tqatJVyp_oOrt z;16$0?`hlpP)Q>vRDyg#ta#*f*$>s#_q~RPo&1e%Uq2^l$FPkcyFDj1S&g@Gv;H7t zJRztF-@dGIxlFgmiao8c?&vZVM+nBff(sGktNu*3@|>P(-dcggmw{VrU-hmH>+EU4 zth~lIa%#MzhZaK)qAGtZLll_B`1|Jg;oy6X(ml7z<2=%{$diHW;(wqtt-Q4LlRG?l z5K|2c>1EnIhO2w9lYteah^|lc<=CXeTv>q!H> z(>b%dU;_9?eez1l0NyM!=&nC3z*X#$Cdee5L_q#*eA#YPV#$fS3D;F>eIh~G97b5z zV>;8P8xSvu3XbWXX8rg{@W4PCCnt~52`ol=Q2@7nndtM-qY^bAN-Jmx8R~6v)IyfY z_@GmIVULCjQl#dC*cUIDW-VVY!j2pMsm>Ys-c!%CS$>^ljtI*yi^6xr#)+Su-ff4r zGl++sa8C6Y4`?qXzgQoTRsBnii?G+ek2p4Q-#WAaMA4C5w-oK^YHOs4}X5x4rl$=UR=~GZ8(EtkA^2WwXDg}vBLxmW35=x%^gv{8pw{oCH$bN zz4wbSTUx6ojatwWoq9@kB~bahmuJh!QG#-9Wqc{AKJ9*Pqz{es_!;60t+xqjwl%hJ zXXhfp0Wy+L&q2(`0@N0#Z13ZXw7MgnQ)R@kmDjC%*w2x?go}iSmqNsWeMSNuo(b3O zHxJ@xq<4p(SY}0D8pjtXV7*GswhL+&ITK%e#%&GfhS&{dok|Yrrz0ABZ7h8T(KT+< zra@2!-c4i5{oCvlBC7+&JY7J+WDAXJJqOc{?Q>%05|=GE7XO3Sl8u*=KAdqdB8`|N z5pq5m^rh80mFhgM(EGl_XlnH2dkfoZt<`R&^S(>~I%S}+VD?Dx!wCj+Z!sjZ95r#0 z_kr=`+=dIp$;GeMb)fW|REu2Uy%0+&TfOB@JB~*%{)>ALpxvCr!W}Lsi!eZX{@1)_ z;i2e;n$ou;-?DZ|rp?me&}x zgPtz9{;i~^+VU{YccJhbb#cqSp{99tieM#~+u#gdBV@498X2u(Y$?I)RpNY|44=t< z(&E>=GOJ!^1=yYiF13Q0ZLN2kjt4m7L#f!ScMv!f1^vZS*U`qt0z@iaKEj14*xhBM zH%tki!IFG!KKKAB%eCMx{RL_;M1(H38g$oRPfjTI?EP z*|%((d*g2gefG=`fTgAZMX1j5z(HAZmkRUv4di)F?#%BUQh;NljGe*qDuCwMQ5-)#_DHwM4o)&+W}LhKgAT46@Nrk?A0HjC7z;a(M{iQ zb^h>>Jf3ewpL$<#6&b3r0WN_>LEJ~VYbxE|jeMe6CCj>sGrj^i-=I&&=S&pd!b!nw>L8Br?ga0H)V8#A!QI(MP>;2`;1uUe zQ;(v1uhn+O^%GDSP@tAa^74h;`IPrcQgcqQ%(1SBU)0c>5)VX*y|{AV0P|6edw&{P zfMk=MgTs`)f%;V8lO-u$;ca!n+C@I4;~$cjR#w1c9TXB=I=(c_2Fc83l!ow(>(8qt+gDoROY8m^L!?SuM6o64ec&1t@I6g8WMV0CYfew`pswJ&)?)<6kz%Zp@4`e6N`E* zC!FD{89pyy=L7Lq+HrDtNlydtf`*QJ6IMxOUTMX}U3gj=!1RuWGcLl;L~h#E1&8C0 zM>t4zhydLho>?BVC$20su&%6?(EV>BpFTJl=+V@D)2d`0e7MO0BdZ zTb}kWM*8`w{E^vfY_A%UMK-(tvLuLo`J{ig-EJnyAy#prh(fX)QA^7VNLCl=FN-TP~>+Zc+{JK#Su5 z%8tvxnwY} z>NZgley;02^9o8i9xao#hoN1Z^XPR}MhS~(n-IL?eeMpMXw%eRSLSxp$!xbcCZ^2Pm9m9C3Rw8p!T=>*eu-0R|$4 zmlvL$xs%`~S^k&EzF$3i0ob+q?hbqhqU|U9^w_g<0(HSEFNJ^QhyWrF7Y=weC|WX* zJ#=i46?ge0rWFu6WNpU-qQVfACrW@A^PhUuLZK zF**<;lL0>Ja_{A-)pw@`s{ zSYg<*s?#aqZXk2BMr}^t{hP1+XJ}6V4L+6OP|o-SOfAjuq~Kp%emuYcKoRQA<_4bltz4jMI -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/postgres1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/data.png) ## 2. Display the data on the table -- Drag a **Table** widget on the canvas and click on its handle to open the properties on the left sidebar -- Edit the **Table data** field value and enter **`{{queries.postgresql1.data}}`** +- Go to the **Components** library on the right and drag a **Table** component onto the canvas +- Click on the handle of the **Table** component to open its properties on the right sidebar +- Populate the table with the data from the query by entering **`{{queries..data}}`** in the **Data** field
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/showData.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/populate.png)
    ## 3. Make the columns editable -- Go to the **Columns**, Add or edit columns section and enter the **Column Name** that you want to display on the table and the **Key** name. Key is the name of the column in your database. -- Enable the toggle for **Make editable** for the columns that you want to be editable. +- Under the **Columns** accordion, click on the column name that you want to make editable +- On clicking the column name, a new section will open. Enable the toggle for **Make editable** to make the column editable
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/columns.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/editable.png)
    -## 4. Enable bulk update options for table widget +## 4. Enable Multiple Row Selection -- Go to the **Options** section and enable the **Show update buttons**. Enabling this will add two buttons - **Save Changes** and **Discard Changes** at the bottom of the table, only when any cell in the table is edited. -- You can also enable highlight selected row.(**Optional**) +- Under the **Row Selection** accordion, enable the **Allow Selection**, **Highlight Selected Row**, and **Bulk Selection** option
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/options.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/rowselect.png)
    ## 5. Create a Custom JS query -We will create a new Custom JS query(**runjs1**) that will generate SQL query for updating multiple rows. +- Create a new Run Javascript query and use the code below to generate the SQL query for updating multiple rows. ```js const uniqueIdentifier = "id" @@ -81,36 +87,47 @@ Update **table1** with the name of the table you are using. :::
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/runjs1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/runjs1.png)
    ## 6. Create an Update query -Let's create a new PostgreSQL query and name it `update`. In **SQL mode**, enter `{{queries.runjs1.data.join(' ')}}` and **Save** it. +- Create a postgresql query in **SQL mode** and rename it as **update**: + +```sql +{{queries.runjs1.data.join(' ')}} +``` + +- This query will run the SQL query generated by the runjs1 query.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/update.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/update.png)
    -## 7. Creating a flow for queries +## 7. Adding event handlers to execute queries in sequence -- Click on the handle of the **Table** widget to open its properties -- Go to the **Events**, and add a handler -- Select **Bulk Update** in Events, **Run Query** in Actions, and then select the **runjs1** query in Query. Now whenever a user will edit the table and hit the **Save Changes** button runjs1 will run. +- Edit the **Table** component and add the event handler for **Save Changes** event so that whenever a user will edit the table and hit the **Save Changes** button the runjs1 query will run. +- Add **loading state** to table so that whenever the **users** or **update** query is running the table will show a loading state. + +```js +{{queries.users.isLoading || queries.update.isLoading}} // add this in the loading state field of the table +```
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/event.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/savechanges.png)
    -- Now, go to the **Advanced** tab of **runjs1** and add a handler to run update query for **Query Success** Event. Now whenever the runjs1 query will be run - the update operation will be performed on the database. +- Now, go to the **runjs1** query and add a **Event** to run update query for **Query Success** Event. This will run the update query whenever the runjs1 query will be run.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/success.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/querysuccess.png) -
    \ No newline at end of file + + +- Finally, go to the **update** query and add a **Event** to run the users query for **Query Success** Event. This will refresh the table whenever the update query will be run. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.17.0/how-to/bulk-update-multiple-rows-in-table.md b/docs/versioned_docs/version-2.17.0/how-to/bulk-update-multiple-rows-in-table.md index b29e582b46..f518b117ac 100644 --- a/docs/versioned_docs/version-2.17.0/how-to/bulk-update-multiple-rows-in-table.md +++ b/docs/versioned_docs/version-2.17.0/how-to/bulk-update-multiple-rows-in-table.md @@ -5,56 +5,62 @@ title: Bulk update multiple rows in table # Bulk update multiple rows in table -Currently, the datasources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. +Currently, the data sources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. -In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database, currently, this workaround can be used only for PostgreSQL and MySQL. +In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database. Currently, this workaround can be used only for PostgreSQL and MySQL. ## 1. Create a query to get the data from the database -Let's create the query that will be getting the data from the database: +- Create a postgresql query in **SQL mode** and enter + +```sql +SELECT * FROM tooljet // replace tooljet with your table name +``` + +- Hit **Run** to fetch the data from the database
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/postgres1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/data.png)
    ## 2. Display the data on the table -- Drag a **Table** widget on the canvas and click on its handle to open the properties on the left sidebar -- Edit the **Table data** field value and enter **`{{queries.postgresql1.data}}`** +- Go to the **Components** library on the right and drag a **Table** component onto the canvas +- Click on the handle of the **Table** component to open its properties on the right sidebar +- Populate the table with the data from the query by entering **`{{queries..data}}`** in the **Data** field
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/showData.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/populate.png)
    ## 3. Make the columns editable -- Go to the **Columns**, Add or edit columns section and enter the **Column Name** that you want to display on the table and the **Key** name. Key is the name of the column in your database. -- Enable the toggle for **Make editable** for the columns that you want to be editable. +- Under the **Columns** accordion, click on the column name that you want to make editable +- On clicking the column name, a new section will open. Enable the toggle for **Make editable** to make the column editable
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/columns.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/editable.png)
    -## 4. Enable bulk update options for table widget +## 4. Enable Multiple Row Selection -- Go to the **Options** section and enable the **Show update buttons**. Enabling this will add two buttons - **Save Changes** and **Discard Changes** at the bottom of the table, only when any cell in the table is edited. -- You can also enable highlight selected row.(**Optional**) +- Under the **Row Selection** accordion, enable the **Allow Selection**, **Highlight Selected Row**, and **Bulk Selection** option
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/options.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/rowselect.png)
    ## 5. Create a Custom JS query -We will create a new Custom JS query(**runjs1**) that will generate SQL query for updating multiple rows. +- Create a new Run Javascript query and use the code below to generate the SQL query for updating multiple rows. ```js const uniqueIdentifier = "id" @@ -81,36 +87,47 @@ Update **table1** with the name of the table you are using. :::
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/runjs1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/runjs1.png)
    ## 6. Create an Update query -Let's create a new PostgreSQL query and name it `update`. In **SQL mode**, enter `{{queries.runjs1.data.join(' ')}}` and **Save** it. +- Create a postgresql query in **SQL mode** and rename it as **update**: + +```sql +{{queries.runjs1.data.join(' ')}} +``` + +- This query will run the SQL query generated by the runjs1 query.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/update.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/update.png)
    -## 7. Creating a flow for queries +## 7. Adding event handlers to execute queries in sequence -- Click on the handle of the **Table** widget to open its properties -- Go to the **Events**, and add a handler -- Select **Bulk Update** in Events, **Run Query** in Actions, and then select the **runjs1** query in Query. Now whenever a user will edit the table and hit the **Save Changes** button runjs1 will run. +- Edit the **Table** component and add the event handler for **Save Changes** event so that whenever a user will edit the table and hit the **Save Changes** button the runjs1 query will run. +- Add **loading state** to table so that whenever the **users** or **update** query is running the table will show a loading state. + +```js +{{queries.users.isLoading || queries.update.isLoading}} // add this in the loading state field of the table +```
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/event.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/savechanges.png)
    -- Now, go to the **Advanced** tab of **runjs1** and add a handler to run update query for **Query Success** Event. Now whenever the runjs1 query will be run - the update operation will be performed on the database. +- Now, go to the **runjs1** query and add a **Event** to run update query for **Query Success** Event. This will run the update query whenever the runjs1 query will be run.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/success.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/querysuccess.png) -
    \ No newline at end of file + + +- Finally, go to the **update** query and add a **Event** to run the users query for **Query Success** Event. This will refresh the table whenever the update query will be run. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.18.0/how-to/bulk-update-multiple-rows-in-table.md b/docs/versioned_docs/version-2.18.0/how-to/bulk-update-multiple-rows-in-table.md index b29e582b46..f518b117ac 100644 --- a/docs/versioned_docs/version-2.18.0/how-to/bulk-update-multiple-rows-in-table.md +++ b/docs/versioned_docs/version-2.18.0/how-to/bulk-update-multiple-rows-in-table.md @@ -5,56 +5,62 @@ title: Bulk update multiple rows in table # Bulk update multiple rows in table -Currently, the datasources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. +Currently, the data sources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. -In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database, currently, this workaround can be used only for PostgreSQL and MySQL. +In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database. Currently, this workaround can be used only for PostgreSQL and MySQL. ## 1. Create a query to get the data from the database -Let's create the query that will be getting the data from the database: +- Create a postgresql query in **SQL mode** and enter + +```sql +SELECT * FROM tooljet // replace tooljet with your table name +``` + +- Hit **Run** to fetch the data from the database
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/postgres1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/data.png)
    ## 2. Display the data on the table -- Drag a **Table** widget on the canvas and click on its handle to open the properties on the left sidebar -- Edit the **Table data** field value and enter **`{{queries.postgresql1.data}}`** +- Go to the **Components** library on the right and drag a **Table** component onto the canvas +- Click on the handle of the **Table** component to open its properties on the right sidebar +- Populate the table with the data from the query by entering **`{{queries..data}}`** in the **Data** field
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/showData.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/populate.png)
    ## 3. Make the columns editable -- Go to the **Columns**, Add or edit columns section and enter the **Column Name** that you want to display on the table and the **Key** name. Key is the name of the column in your database. -- Enable the toggle for **Make editable** for the columns that you want to be editable. +- Under the **Columns** accordion, click on the column name that you want to make editable +- On clicking the column name, a new section will open. Enable the toggle for **Make editable** to make the column editable
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/columns.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/editable.png)
    -## 4. Enable bulk update options for table widget +## 4. Enable Multiple Row Selection -- Go to the **Options** section and enable the **Show update buttons**. Enabling this will add two buttons - **Save Changes** and **Discard Changes** at the bottom of the table, only when any cell in the table is edited. -- You can also enable highlight selected row.(**Optional**) +- Under the **Row Selection** accordion, enable the **Allow Selection**, **Highlight Selected Row**, and **Bulk Selection** option
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/options.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/rowselect.png)
    ## 5. Create a Custom JS query -We will create a new Custom JS query(**runjs1**) that will generate SQL query for updating multiple rows. +- Create a new Run Javascript query and use the code below to generate the SQL query for updating multiple rows. ```js const uniqueIdentifier = "id" @@ -81,36 +87,47 @@ Update **table1** with the name of the table you are using. :::
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/runjs1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/runjs1.png)
    ## 6. Create an Update query -Let's create a new PostgreSQL query and name it `update`. In **SQL mode**, enter `{{queries.runjs1.data.join(' ')}}` and **Save** it. +- Create a postgresql query in **SQL mode** and rename it as **update**: + +```sql +{{queries.runjs1.data.join(' ')}} +``` + +- This query will run the SQL query generated by the runjs1 query.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/update.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/update.png)
    -## 7. Creating a flow for queries +## 7. Adding event handlers to execute queries in sequence -- Click on the handle of the **Table** widget to open its properties -- Go to the **Events**, and add a handler -- Select **Bulk Update** in Events, **Run Query** in Actions, and then select the **runjs1** query in Query. Now whenever a user will edit the table and hit the **Save Changes** button runjs1 will run. +- Edit the **Table** component and add the event handler for **Save Changes** event so that whenever a user will edit the table and hit the **Save Changes** button the runjs1 query will run. +- Add **loading state** to table so that whenever the **users** or **update** query is running the table will show a loading state. + +```js +{{queries.users.isLoading || queries.update.isLoading}} // add this in the loading state field of the table +```
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/event.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/savechanges.png)
    -- Now, go to the **Advanced** tab of **runjs1** and add a handler to run update query for **Query Success** Event. Now whenever the runjs1 query will be run - the update operation will be performed on the database. +- Now, go to the **runjs1** query and add a **Event** to run update query for **Query Success** Event. This will run the update query whenever the runjs1 query will be run.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/success.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/querysuccess.png) -
    \ No newline at end of file + + +- Finally, go to the **update** query and add a **Event** to run the users query for **Query Success** Event. This will refresh the table whenever the update query will be run. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.19.0/how-to/bulk-update-multiple-rows-in-table.md b/docs/versioned_docs/version-2.19.0/how-to/bulk-update-multiple-rows-in-table.md index b29e582b46..f518b117ac 100644 --- a/docs/versioned_docs/version-2.19.0/how-to/bulk-update-multiple-rows-in-table.md +++ b/docs/versioned_docs/version-2.19.0/how-to/bulk-update-multiple-rows-in-table.md @@ -5,56 +5,62 @@ title: Bulk update multiple rows in table # Bulk update multiple rows in table -Currently, the datasources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. +Currently, the data sources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. -In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database, currently, this workaround can be used only for PostgreSQL and MySQL. +In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database. Currently, this workaround can be used only for PostgreSQL and MySQL. ## 1. Create a query to get the data from the database -Let's create the query that will be getting the data from the database: +- Create a postgresql query in **SQL mode** and enter + +```sql +SELECT * FROM tooljet // replace tooljet with your table name +``` + +- Hit **Run** to fetch the data from the database
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/postgres1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/data.png)
    ## 2. Display the data on the table -- Drag a **Table** widget on the canvas and click on its handle to open the properties on the left sidebar -- Edit the **Table data** field value and enter **`{{queries.postgresql1.data}}`** +- Go to the **Components** library on the right and drag a **Table** component onto the canvas +- Click on the handle of the **Table** component to open its properties on the right sidebar +- Populate the table with the data from the query by entering **`{{queries..data}}`** in the **Data** field
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/showData.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/populate.png)
    ## 3. Make the columns editable -- Go to the **Columns**, Add or edit columns section and enter the **Column Name** that you want to display on the table and the **Key** name. Key is the name of the column in your database. -- Enable the toggle for **Make editable** for the columns that you want to be editable. +- Under the **Columns** accordion, click on the column name that you want to make editable +- On clicking the column name, a new section will open. Enable the toggle for **Make editable** to make the column editable
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/columns.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/editable.png)
    -## 4. Enable bulk update options for table widget +## 4. Enable Multiple Row Selection -- Go to the **Options** section and enable the **Show update buttons**. Enabling this will add two buttons - **Save Changes** and **Discard Changes** at the bottom of the table, only when any cell in the table is edited. -- You can also enable highlight selected row.(**Optional**) +- Under the **Row Selection** accordion, enable the **Allow Selection**, **Highlight Selected Row**, and **Bulk Selection** option
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/options.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/rowselect.png)
    ## 5. Create a Custom JS query -We will create a new Custom JS query(**runjs1**) that will generate SQL query for updating multiple rows. +- Create a new Run Javascript query and use the code below to generate the SQL query for updating multiple rows. ```js const uniqueIdentifier = "id" @@ -81,36 +87,47 @@ Update **table1** with the name of the table you are using. :::
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/runjs1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/runjs1.png)
    ## 6. Create an Update query -Let's create a new PostgreSQL query and name it `update`. In **SQL mode**, enter `{{queries.runjs1.data.join(' ')}}` and **Save** it. +- Create a postgresql query in **SQL mode** and rename it as **update**: + +```sql +{{queries.runjs1.data.join(' ')}} +``` + +- This query will run the SQL query generated by the runjs1 query.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/update.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/update.png)
    -## 7. Creating a flow for queries +## 7. Adding event handlers to execute queries in sequence -- Click on the handle of the **Table** widget to open its properties -- Go to the **Events**, and add a handler -- Select **Bulk Update** in Events, **Run Query** in Actions, and then select the **runjs1** query in Query. Now whenever a user will edit the table and hit the **Save Changes** button runjs1 will run. +- Edit the **Table** component and add the event handler for **Save Changes** event so that whenever a user will edit the table and hit the **Save Changes** button the runjs1 query will run. +- Add **loading state** to table so that whenever the **users** or **update** query is running the table will show a loading state. + +```js +{{queries.users.isLoading || queries.update.isLoading}} // add this in the loading state field of the table +```
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/event.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/savechanges.png)
    -- Now, go to the **Advanced** tab of **runjs1** and add a handler to run update query for **Query Success** Event. Now whenever the runjs1 query will be run - the update operation will be performed on the database. +- Now, go to the **runjs1** query and add a **Event** to run update query for **Query Success** Event. This will run the update query whenever the runjs1 query will be run.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/success.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/querysuccess.png) -
    \ No newline at end of file + + +- Finally, go to the **update** query and add a **Event** to run the users query for **Query Success** Event. This will refresh the table whenever the update query will be run. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.22.0/how-to/bulk-update-multiple-rows-in-table.md b/docs/versioned_docs/version-2.22.0/how-to/bulk-update-multiple-rows-in-table.md index b29e582b46..f518b117ac 100644 --- a/docs/versioned_docs/version-2.22.0/how-to/bulk-update-multiple-rows-in-table.md +++ b/docs/versioned_docs/version-2.22.0/how-to/bulk-update-multiple-rows-in-table.md @@ -5,56 +5,62 @@ title: Bulk update multiple rows in table # Bulk update multiple rows in table -Currently, the datasources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. +Currently, the data sources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. -In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database, currently, this workaround can be used only for PostgreSQL and MySQL. +In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database. Currently, this workaround can be used only for PostgreSQL and MySQL. ## 1. Create a query to get the data from the database -Let's create the query that will be getting the data from the database: +- Create a postgresql query in **SQL mode** and enter + +```sql +SELECT * FROM tooljet // replace tooljet with your table name +``` + +- Hit **Run** to fetch the data from the database
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/postgres1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/data.png)
    ## 2. Display the data on the table -- Drag a **Table** widget on the canvas and click on its handle to open the properties on the left sidebar -- Edit the **Table data** field value and enter **`{{queries.postgresql1.data}}`** +- Go to the **Components** library on the right and drag a **Table** component onto the canvas +- Click on the handle of the **Table** component to open its properties on the right sidebar +- Populate the table with the data from the query by entering **`{{queries..data}}`** in the **Data** field
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/showData.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/populate.png)
    ## 3. Make the columns editable -- Go to the **Columns**, Add or edit columns section and enter the **Column Name** that you want to display on the table and the **Key** name. Key is the name of the column in your database. -- Enable the toggle for **Make editable** for the columns that you want to be editable. +- Under the **Columns** accordion, click on the column name that you want to make editable +- On clicking the column name, a new section will open. Enable the toggle for **Make editable** to make the column editable
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/columns.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/editable.png)
    -## 4. Enable bulk update options for table widget +## 4. Enable Multiple Row Selection -- Go to the **Options** section and enable the **Show update buttons**. Enabling this will add two buttons - **Save Changes** and **Discard Changes** at the bottom of the table, only when any cell in the table is edited. -- You can also enable highlight selected row.(**Optional**) +- Under the **Row Selection** accordion, enable the **Allow Selection**, **Highlight Selected Row**, and **Bulk Selection** option
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/options.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/rowselect.png)
    ## 5. Create a Custom JS query -We will create a new Custom JS query(**runjs1**) that will generate SQL query for updating multiple rows. +- Create a new Run Javascript query and use the code below to generate the SQL query for updating multiple rows. ```js const uniqueIdentifier = "id" @@ -81,36 +87,47 @@ Update **table1** with the name of the table you are using. :::
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/runjs1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/runjs1.png)
    ## 6. Create an Update query -Let's create a new PostgreSQL query and name it `update`. In **SQL mode**, enter `{{queries.runjs1.data.join(' ')}}` and **Save** it. +- Create a postgresql query in **SQL mode** and rename it as **update**: + +```sql +{{queries.runjs1.data.join(' ')}} +``` + +- This query will run the SQL query generated by the runjs1 query.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/update.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/update.png)
    -## 7. Creating a flow for queries +## 7. Adding event handlers to execute queries in sequence -- Click on the handle of the **Table** widget to open its properties -- Go to the **Events**, and add a handler -- Select **Bulk Update** in Events, **Run Query** in Actions, and then select the **runjs1** query in Query. Now whenever a user will edit the table and hit the **Save Changes** button runjs1 will run. +- Edit the **Table** component and add the event handler for **Save Changes** event so that whenever a user will edit the table and hit the **Save Changes** button the runjs1 query will run. +- Add **loading state** to table so that whenever the **users** or **update** query is running the table will show a loading state. + +```js +{{queries.users.isLoading || queries.update.isLoading}} // add this in the loading state field of the table +```
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/event.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/savechanges.png)
    -- Now, go to the **Advanced** tab of **runjs1** and add a handler to run update query for **Query Success** Event. Now whenever the runjs1 query will be run - the update operation will be performed on the database. +- Now, go to the **runjs1** query and add a **Event** to run update query for **Query Success** Event. This will run the update query whenever the runjs1 query will be run.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/success.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/querysuccess.png) -
    \ No newline at end of file + + +- Finally, go to the **update** query and add a **Event** to run the users query for **Query Success** Event. This will refresh the table whenever the update query will be run. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/how-to/bulk-update-multiple-rows-in-table.md b/docs/versioned_docs/version-2.23.0/how-to/bulk-update-multiple-rows-in-table.md index b29e582b46..f518b117ac 100644 --- a/docs/versioned_docs/version-2.23.0/how-to/bulk-update-multiple-rows-in-table.md +++ b/docs/versioned_docs/version-2.23.0/how-to/bulk-update-multiple-rows-in-table.md @@ -5,56 +5,62 @@ title: Bulk update multiple rows in table # Bulk update multiple rows in table -Currently, the datasources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. +Currently, the data sources in ToolJet have operation for **bulk update(GUI mode)** but that only works for changes made in the single row. We will soon be adding a new operation for bulk updating the multiple rows but for now we can bulk update multiple rows by creating a Custom JS query. -In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database, currently, this workaround can be used only for PostgreSQL and MySQL. +In this guide, We have assumed that you have successfully connected the data source. For this guide, we will be using the PostgreSQL data source as an example database. Currently, this workaround can be used only for PostgreSQL and MySQL. ## 1. Create a query to get the data from the database -Let's create the query that will be getting the data from the database: +- Create a postgresql query in **SQL mode** and enter + +```sql +SELECT * FROM tooljet // replace tooljet with your table name +``` + +- Hit **Run** to fetch the data from the database
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/postgres1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/data.png)
    ## 2. Display the data on the table -- Drag a **Table** widget on the canvas and click on its handle to open the properties on the left sidebar -- Edit the **Table data** field value and enter **`{{queries.postgresql1.data}}`** +- Go to the **Components** library on the right and drag a **Table** component onto the canvas +- Click on the handle of the **Table** component to open its properties on the right sidebar +- Populate the table with the data from the query by entering **`{{queries..data}}`** in the **Data** field
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/showData.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/populate.png)
    ## 3. Make the columns editable -- Go to the **Columns**, Add or edit columns section and enter the **Column Name** that you want to display on the table and the **Key** name. Key is the name of the column in your database. -- Enable the toggle for **Make editable** for the columns that you want to be editable. +- Under the **Columns** accordion, click on the column name that you want to make editable +- On clicking the column name, a new section will open. Enable the toggle for **Make editable** to make the column editable
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/columns.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/editable.png)
    -## 4. Enable bulk update options for table widget +## 4. Enable Multiple Row Selection -- Go to the **Options** section and enable the **Show update buttons**. Enabling this will add two buttons - **Save Changes** and **Discard Changes** at the bottom of the table, only when any cell in the table is edited. -- You can also enable highlight selected row.(**Optional**) +- Under the **Row Selection** accordion, enable the **Allow Selection**, **Highlight Selected Row**, and **Bulk Selection** option
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/options.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/rowselect.png)
    ## 5. Create a Custom JS query -We will create a new Custom JS query(**runjs1**) that will generate SQL query for updating multiple rows. +- Create a new Run Javascript query and use the code below to generate the SQL query for updating multiple rows. ```js const uniqueIdentifier = "id" @@ -81,36 +87,47 @@ Update **table1** with the name of the table you are using. :::
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/runjs1.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/runjs1.png)
    ## 6. Create an Update query -Let's create a new PostgreSQL query and name it `update`. In **SQL mode**, enter `{{queries.runjs1.data.join(' ')}}` and **Save** it. +- Create a postgresql query in **SQL mode** and rename it as **update**: + +```sql +{{queries.runjs1.data.join(' ')}} +``` + +- This query will run the SQL query generated by the runjs1 query.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/update.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/update.png)
    -## 7. Creating a flow for queries +## 7. Adding event handlers to execute queries in sequence -- Click on the handle of the **Table** widget to open its properties -- Go to the **Events**, and add a handler -- Select **Bulk Update** in Events, **Run Query** in Actions, and then select the **runjs1** query in Query. Now whenever a user will edit the table and hit the **Save Changes** button runjs1 will run. +- Edit the **Table** component and add the event handler for **Save Changes** event so that whenever a user will edit the table and hit the **Save Changes** button the runjs1 query will run. +- Add **loading state** to table so that whenever the **users** or **update** query is running the table will show a loading state. + +```js +{{queries.users.isLoading || queries.update.isLoading}} // add this in the loading state field of the table +```
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/event.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/savechanges.png)
    -- Now, go to the **Advanced** tab of **runjs1** and add a handler to run update query for **Query Success** Event. Now whenever the runjs1 query will be run - the update operation will be performed on the database. +- Now, go to the **runjs1** query and add a **Event** to run update query for **Query Success** Event. This will run the update query whenever the runjs1 query will be run.
    -![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/success.png) +![ToolJet - How To - Bulk update multiple rows in table](/img/how-to/bulk-update-multiple/new/querysuccess.png) -
    \ No newline at end of file + + +- Finally, go to the **update** query and add a **Event** to run the users query for **Query Success** Event. This will refresh the table whenever the update query will be run. \ No newline at end of file From 555953db6d9e7c547ec6d7be6531b23aef8c6526 Mon Sep 17 00:00:00 2001 From: Karan Rathod Date: Tue, 5 Dec 2023 13:50:37 +0530 Subject: [PATCH 53/63] [docs]:add migration guide for v 2.24.3 (#8236) --- docs/docs/setup/azure-container.md | 17 +++++++++++ docs/docs/setup/client.md | 16 +++++++++++ docs/docs/setup/digitalocean.md | 16 +++++++++++ docs/docs/setup/docker.md | 28 +++++++++++++++---- docs/docs/setup/ec2.md | 24 +++++++++++++++- docs/docs/setup/ecs.md | 17 ++++++++++- docs/docs/setup/google-cloud-run.md | 17 +++++++++++ docs/docs/setup/helm.md | 18 +++++++++++- docs/docs/setup/kubernetes-aks.md | 16 +++++++++++ docs/docs/setup/kubernetes-gke.md | 16 +++++++++++ docs/docs/setup/kubernetes.md | 16 +++++++++++ docs/docs/setup/openshift.md | 16 +++++++++++ docs/docs/setup/tooljet-subpath.md | 16 +++++++++++ .../version-1.x.x/setup/azure-container.md | 16 +++++++++++ .../version-1.x.x/setup/client.md | 16 +++++++++++ .../version-1.x.x/setup/digitalocean.md | 18 +++++++++++- .../version-1.x.x/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-1.x.x/setup/ec2.md | 16 +++++++++++ .../versioned_docs/version-1.x.x/setup/ecs.md | 16 +++++++++++ .../version-1.x.x/setup/google-cloud-run.md | 16 +++++++++++ .../version-1.x.x/setup/helm.md | 18 +++++++++++- .../version-1.x.x/setup/heroku.md | 16 +++++++++++ .../version-1.x.x/setup/kubernetes-aks.md | 16 +++++++++++ .../version-1.x.x/setup/kubernetes-gke.md | 16 +++++++++++ .../version-1.x.x/setup/kubernetes.md | 18 +++++++++++- .../version-1.x.x/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.0.0/setup/azure-container.md | 16 +++++++++++ .../version-2.0.0/setup/client.md | 16 +++++++++++ .../version-2.0.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.0.0/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.0.0/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.0.0/setup/ecs.md | 15 ++++++++++ .../version-2.0.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.0.0/setup/helm.md | 18 +++++++++++- .../version-2.0.0/setup/heroku.md | 16 +++++++++++ .../version-2.0.0/setup/kubernetes-aks.md | 18 +++++++++++- .../version-2.0.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.0.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.0.0/setup/openshift.md | 18 +++++++++++- .../version-2.0.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.1.0/setup/azure-container.md | 16 +++++++++++ .../version-2.1.0/setup/client.md | 16 +++++++++++ .../version-2.1.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.1.0/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.1.0/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.1.0/setup/ecs.md | 15 ++++++++++ .../version-2.1.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.1.0/setup/helm.md | 18 +++++++++++- .../version-2.1.0/setup/heroku.md | 16 +++++++++++ .../version-2.1.0/setup/kubernetes-aks.md | 19 ++++++++++++- .../version-2.1.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.1.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.1.0/setup/openshift.md | 18 +++++++++++- .../version-2.1.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.10.0/setup/azure-container.md | 16 +++++++++++ .../version-2.10.0/setup/client.md | 16 +++++++++++ .../version-2.10.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.10.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.10.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.10.0/setup/ecs.md | 15 ++++++++++ .../version-2.10.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.10.0/setup/helm.md | 18 +++++++++++- .../version-2.10.0/setup/heroku.md | 16 +++++++++++ .../version-2.10.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.10.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.10.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.10.0/setup/openshift.md | 18 +++++++++++- .../version-2.10.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.11.0/setup/azure-container.md | 16 +++++++++++ .../version-2.11.0/setup/client.md | 16 +++++++++++ .../version-2.11.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.11.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.11.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.11.0/setup/ecs.md | 15 ++++++++++ .../version-2.11.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.11.0/setup/helm.md | 16 +++++++++++ .../version-2.11.0/setup/heroku.md | 16 +++++++++++ .../version-2.11.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.11.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.11.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.11.0/setup/openshift.md | 18 +++++++++++- .../version-2.11.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.12.0/setup/azure-container.md | 16 +++++++++++ .../version-2.12.0/setup/client.md | 16 +++++++++++ .../version-2.12.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.12.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.12.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.12.0/setup/ecs.md | 15 ++++++++++ .../version-2.12.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.12.0/setup/helm.md | 18 +++++++++++- .../version-2.12.0/setup/heroku.md | 16 +++++++++++ .../version-2.12.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.12.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.12.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.12.0/setup/openshift.md | 18 +++++++++++- .../version-2.12.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.13.0/setup/azure-container.md | 16 +++++++++++ .../version-2.13.0/setup/client.md | 16 +++++++++++ .../version-2.13.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.13.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.13.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.13.0/setup/ecs.md | 15 ++++++++++ .../version-2.13.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.13.0/setup/helm.md | 18 +++++++++++- .../version-2.13.0/setup/heroku.md | 16 +++++++++++ .../version-2.13.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.13.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.13.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.13.0/setup/openshift.md | 18 +++++++++++- .../version-2.13.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.14.0/setup/azure-container.md | 16 +++++++++++ .../version-2.14.0/setup/client.md | 16 +++++++++++ .../version-2.14.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.14.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.14.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.14.0/setup/ecs.md | 15 ++++++++++ .../version-2.14.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.14.0/setup/helm.md | 18 +++++++++++- .../version-2.14.0/setup/heroku.md | 16 +++++++++++ .../version-2.14.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.14.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.14.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.14.0/setup/openshift.md | 18 +++++++++++- .../version-2.14.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.15.0/setup/azure-container.md | 16 +++++++++++ .../version-2.15.0/setup/client.md | 16 +++++++++++ .../version-2.15.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.15.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.15.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.15.0/setup/ecs.md | 15 ++++++++++ .../version-2.15.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.15.0/setup/helm.md | 18 +++++++++++- .../version-2.15.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.15.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.15.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.15.0/setup/openshift.md | 18 +++++++++++- .../version-2.15.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.16.0/setup/azure-container.md | 16 +++++++++++ .../version-2.16.0/setup/client.md | 16 +++++++++++ .../version-2.16.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.16.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.16.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.16.0/setup/ecs.md | 15 ++++++++++ .../version-2.16.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.16.0/setup/helm.md | 18 +++++++++++- .../version-2.16.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.16.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.16.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.16.0/setup/openshift.md | 18 +++++++++++- .../version-2.16.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.17.0/setup/azure-container.md | 16 +++++++++++ .../version-2.17.0/setup/client.md | 16 +++++++++++ .../version-2.17.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.17.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.17.0/setup/ecs.md | 15 ++++++++++ .../version-2.17.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.17.0/setup/helm.md | 18 +++++++++++- .../version-2.17.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.17.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.17.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.17.0/setup/openshift.md | 16 +++++++++++ .../version-2.17.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.18.0/setup/azure-container.md | 16 +++++++++++ .../version-2.18.0/setup/client.md | 16 +++++++++++ .../version-2.18.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.18.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.18.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.18.0/setup/ecs.md | 15 ++++++++++ .../version-2.18.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.18.0/setup/helm.md | 18 +++++++++++- .../version-2.18.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.18.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.18.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.18.0/setup/openshift.md | 16 +++++++++++ .../version-2.18.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.19.0/setup/azure-container.md | 16 +++++++++++ .../version-2.19.0/setup/client.md | 16 +++++++++++ .../version-2.19.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.19.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.19.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.19.0/setup/ecs.md | 15 ++++++++++ .../version-2.19.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.19.0/setup/helm.md | 16 +++++++++++ .../version-2.19.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.19.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.19.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.19.0/setup/openshift.md | 16 +++++++++++ .../version-2.19.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.2.0/setup/azure-container.md | 16 +++++++++++ .../version-2.2.0/setup/client.md | 16 +++++++++++ .../version-2.2.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.2.0/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.2.0/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.2.0/setup/ecs.md | 15 ++++++++++ .../version-2.2.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.2.0/setup/helm.md | 18 +++++++++++- .../version-2.2.0/setup/heroku.md | 16 +++++++++++ .../version-2.2.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.2.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.2.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.2.0/setup/openshift.md | 18 +++++++++++- .../version-2.2.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.22.0/setup/azure-container.md | 16 +++++++++++ .../version-2.22.0/setup/client.md | 16 +++++++++++ .../version-2.22.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.22.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.22.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.22.0/setup/ecs.md | 15 ++++++++++ .../version-2.22.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.22.0/setup/helm.md | 18 +++++++++++- .../version-2.22.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.22.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.22.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.22.0/setup/openshift.md | 16 +++++++++++ .../version-2.22.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.23.0/setup/azure-container.md | 16 +++++++++++ .../version-2.23.0/setup/client.md | 16 +++++++++++ .../version-2.23.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.23.0/setup/docker.md | 28 +++++++++++++++---- .../version-2.23.0/setup/ec2.md | 24 +++++++++++++++- .../version-2.23.0/setup/ecs.md | 15 ++++++++++ .../version-2.23.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.23.0/setup/helm.md | 18 +++++++++++- .../version-2.23.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.23.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.23.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.23.0/setup/openshift.md | 16 +++++++++++ .../version-2.23.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.3.0/setup/azure-container.md | 16 +++++++++++ .../version-2.3.0/setup/client.md | 16 +++++++++++ .../version-2.3.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.3.0/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.3.0/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.3.0/setup/ecs.md | 15 ++++++++++ .../version-2.3.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.3.0/setup/helm.md | 18 +++++++++++- .../version-2.3.0/setup/heroku.md | 16 +++++++++++ .../version-2.3.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.3.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.3.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.3.0/setup/openshift.md | 18 +++++++++++- .../version-2.3.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.4.0/setup/azure-container.md | 16 +++++++++++ .../version-2.4.0/setup/client.md | 16 +++++++++++ .../version-2.4.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.4.0/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.4.0/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.4.0/setup/ecs.md | 15 ++++++++++ .../version-2.4.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.4.0/setup/helm.md | 18 +++++++++++- .../version-2.4.0/setup/heroku.md | 16 +++++++++++ .../version-2.4.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.4.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.4.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.4.0/setup/openshift.md | 18 +++++++++++- .../version-2.4.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.5.0/setup/azure-container.md | 16 +++++++++++ .../version-2.5.0/setup/client.md | 16 +++++++++++ .../version-2.5.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.5.0/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.5.0/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.5.0/setup/ecs.md | 15 ++++++++++ .../version-2.5.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.5.0/setup/helm.md | 18 +++++++++++- .../version-2.5.0/setup/heroku.md | 16 +++++++++++ .../version-2.5.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.5.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.5.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.5.0/setup/openshift.md | 18 +++++++++++- .../version-2.5.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.6.0/setup/azure-container.md | 16 +++++++++++ .../version-2.6.0/setup/client.md | 16 +++++++++++ .../version-2.6.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.6.0/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.6.0/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.6.0/setup/ecs.md | 15 ++++++++++ .../version-2.6.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.6.0/setup/helm.md | 18 +++++++++++- .../version-2.6.0/setup/heroku.md | 16 +++++++++++ .../version-2.6.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.6.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.6.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.6.0/setup/openshift.md | 18 +++++++++++- .../version-2.6.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.7.0/setup/azure-container.md | 16 +++++++++++ .../version-2.7.0/setup/client.md | 16 +++++++++++ .../version-2.7.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.7.0/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.7.0/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.7.0/setup/ecs.md | 15 ++++++++++ .../version-2.7.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.7.0/setup/helm.md | 18 +++++++++++- .../version-2.7.0/setup/heroku.md | 16 +++++++++++ .../version-2.7.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.7.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.7.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.7.0/setup/openshift.md | 18 +++++++++++- .../version-2.7.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.8.0/setup/azure-container.md | 16 +++++++++++ .../version-2.8.0/setup/client.md | 16 +++++++++++ .../version-2.8.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.8.0/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.8.0/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.8.0/setup/ecs.md | 15 ++++++++++ .../version-2.8.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.8.0/setup/helm.md | 18 +++++++++++- .../version-2.8.0/setup/heroku.md | 16 +++++++++++ .../version-2.8.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.8.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.8.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.8.0/setup/openshift.md | 18 +++++++++++- .../version-2.8.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.9.0/setup/azure-container.md | 16 +++++++++++ .../version-2.9.0/setup/client.md | 16 +++++++++++ .../version-2.9.0/setup/digitalocean.md | 16 +++++++++++ .../version-2.9.0/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.9.0/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.9.0/setup/ecs.md | 15 ++++++++++ .../version-2.9.0/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.9.0/setup/helm.md | 18 +++++++++++- .../version-2.9.0/setup/heroku.md | 16 +++++++++++ .../version-2.9.0/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.9.0/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.9.0/setup/kubernetes.md | 16 +++++++++++ .../version-2.9.0/setup/openshift.md | 18 +++++++++++- .../version-2.9.0/setup/tooljet-subpath.md | 16 +++++++++++ .../version-2.9.4/setup/azure-container.md | 16 +++++++++++ .../version-2.9.4/setup/client.md | 16 +++++++++++ .../version-2.9.4/setup/digitalocean.md | 16 +++++++++++ .../version-2.9.4/setup/docker.md | 28 +++++++++++++++---- .../versioned_docs/version-2.9.4/setup/ec2.md | 24 +++++++++++++++- .../versioned_docs/version-2.9.4/setup/ecs.md | 15 ++++++++++ .../version-2.9.4/setup/google-cloud-run.md | 17 +++++++++++ .../version-2.9.4/setup/helm.md | 18 +++++++++++- .../version-2.9.4/setup/heroku.md | 16 +++++++++++ .../version-2.9.4/setup/kubernetes-aks.md | 16 +++++++++++ .../version-2.9.4/setup/kubernetes-gke.md | 16 +++++++++++ .../version-2.9.4/setup/kubernetes.md | 16 +++++++++++ .../version-2.9.4/setup/openshift.md | 18 +++++++++++- .../version-2.9.4/setup/tooljet-subpath.md | 16 +++++++++++ 340 files changed, 5831 insertions(+), 195 deletions(-) diff --git a/docs/docs/setup/azure-container.md b/docs/docs/setup/azure-container.md index 60bdc0aaa5..0dfb78125a 100644 --- a/docs/docs/setup/azure-container.md +++ b/docs/docs/setup/azure-container.md @@ -68,3 +68,20 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/docs/setup/client.md b/docs/docs/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/docs/setup/client.md +++ b/docs/docs/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/docs/setup/digitalocean.md b/docs/docs/setup/digitalocean.md index 0030942f83..0df6ca4994 100644 --- a/docs/docs/setup/digitalocean.md +++ b/docs/docs/setup/digitalocean.md @@ -107,3 +107,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#enable-tooljet-database--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/docs/setup/docker.md b/docs/docs/setup/docker.md index ea1671ef1f..8a80874ba0 100644 --- a/docs/docs/setup/docker.md +++ b/docs/docs/setup/docker.md @@ -128,11 +128,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/docs/setup/ec2.md b/docs/docs/setup/ec2.md index e4cc244db9..1c10b0e918 100644 --- a/docs/docs/setup/ec2.md +++ b/docs/docs/setup/ec2.md @@ -84,4 +84,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/docs/setup/ecs.md b/docs/docs/setup/ecs.md index c3eb758aa0..9a92e088a7 100644 --- a/docs/docs/setup/ecs.md +++ b/docs/docs/setup/ecs.md @@ -225,6 +225,21 @@ Follow the steps below to deploy PostgREST on a ECS cluster. - Update ToolJet deployment with the appropriate env variables [here](https://docs.tooljet.com/docs/setup/env-vars/#enable-tooljet-database--optional-) and apply the changes. +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/docs/setup/google-cloud-run.md b/docs/docs/setup/google-cloud-run.md index 0431078dcc..3034395e2f 100644 --- a/docs/docs/setup/google-cloud-run.md +++ b/docs/docs/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/docs/setup/helm.md b/docs/docs/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/docs/setup/helm.md +++ b/docs/docs/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/docs/setup/kubernetes-aks.md b/docs/docs/setup/kubernetes-aks.md index 04cc1515d2..6fad371369 100644 --- a/docs/docs/setup/kubernetes-aks.md +++ b/docs/docs/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/docs/setup/kubernetes-gke.md b/docs/docs/setup/kubernetes-gke.md index c87a6c36bd..1cbbf82210 100644 --- a/docs/docs/setup/kubernetes-gke.md +++ b/docs/docs/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/docs/setup/kubernetes.md b/docs/docs/setup/kubernetes.md index 10441ef99d..168c2cc926 100644 --- a/docs/docs/setup/kubernetes.md +++ b/docs/docs/setup/kubernetes.md @@ -62,3 +62,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/docs/setup/openshift.md b/docs/docs/setup/openshift.md index 73f6a7e531..ae8f4e5bf7 100644 --- a/docs/docs/setup/openshift.md +++ b/docs/docs/setup/openshift.md @@ -68,3 +68,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://tooljet-deployments.s3.us-west-1.amazonaws.com/openshift/postgrest.yaml ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/docs/setup/tooljet-subpath.md b/docs/docs/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/docs/setup/tooljet-subpath.md +++ b/docs/docs/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-1.x.x/setup/azure-container.md b/docs/versioned_docs/version-1.x.x/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-1.x.x/setup/azure-container.md +++ b/docs/versioned_docs/version-1.x.x/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-1.x.x/setup/client.md b/docs/versioned_docs/version-1.x.x/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-1.x.x/setup/client.md +++ b/docs/versioned_docs/version-1.x.x/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-1.x.x/setup/digitalocean.md b/docs/versioned_docs/version-1.x.x/setup/digitalocean.md index 7fb769f91e..b625c6c794 100644 --- a/docs/versioned_docs/version-1.x.x/setup/digitalocean.md +++ b/docs/versioned_docs/version-1.x.x/setup/digitalocean.md @@ -42,4 +42,20 @@ Now you can quickly deploy ToolJet using the Deploy to DigitalOcean button. :::tip ToolJet server and client can be deployed as standalone applications. If you do not want to deploy the client on DigitalOcean, modify `package.json` accordingly. We have a [guide](/docs/setup/client) on deploying ToolJet client using services such as Firebase. -::: \ No newline at end of file +::: + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-1.x.x/setup/docker.md b/docs/versioned_docs/version-1.x.x/setup/docker.md index eea8ead606..4943eb1aaf 100644 --- a/docs/versioned_docs/version-1.x.x/setup/docker.md +++ b/docs/versioned_docs/version-1.x.x/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-1.x.x/setup/ec2.md b/docs/versioned_docs/version-1.x.x/setup/ec2.md index 0d85cf1a74..db4ce00a70 100644 --- a/docs/versioned_docs/version-1.x.x/setup/ec2.md +++ b/docs/versioned_docs/version-1.x.x/setup/ec2.md @@ -72,3 +72,19 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. 10. If you've set a custom domain for `TOOLJET_HOST`, add a `A record` entry in your DNS settings to point to the IP address of the EC2 instance. 12. You're all done, ToolJet client would now be served at the value you've set in `TOOLJET_HOST`. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-1.x.x/setup/ecs.md b/docs/versioned_docs/version-1.x.x/setup/ecs.md index 30aaab9fb9..1d993af9db 100644 --- a/docs/versioned_docs/version-1.x.x/setup/ecs.md +++ b/docs/versioned_docs/version-1.x.x/setup/ecs.md @@ -94,3 +94,19 @@ The setup above is just a template. Feel free to update the task definition and 6. Click on run task to have this task seed the database with user having following credentials: - email: `dev@tooljet.io` - password: `password` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-1.x.x/setup/google-cloud-run.md b/docs/versioned_docs/version-1.x.x/setup/google-cloud-run.md index de8b8d6468..8228762d0c 100644 --- a/docs/versioned_docs/version-1.x.x/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-1.x.x/setup/google-cloud-run.md @@ -142,3 +142,19 @@ The deployment will fail as it only runs a seed script. Check logs to see that d ``` The default username of the admin is `dev@tooljet.io` and the password is `password`. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-1.x.x/setup/helm.md b/docs/versioned_docs/version-1.x.x/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-1.x.x/setup/helm.md +++ b/docs/versioned_docs/version-1.x.x/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-1.x.x/setup/heroku.md b/docs/versioned_docs/version-1.x.x/setup/heroku.md index 3f993f6f96..a92619ced4 100644 --- a/docs/versioned_docs/version-1.x.x/setup/heroku.md +++ b/docs/versioned_docs/version-1.x.x/setup/heroku.md @@ -61,3 +61,19 @@ The one click deployment will create a **free dyno** and a **free postgresql dat :::tip ToolJet server and client can be deployed as standalone applications. If you do not want to deploy the client on Heroku, modify `package.json` accordingly. We have a [guide](/docs/setup/client) on deploying ToolJet client using services such as Firebase. ::: + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-1.x.x/setup/kubernetes-aks.md b/docs/versioned_docs/version-1.x.x/setup/kubernetes-aks.md index 8d34e9dc3f..6597c8947f 100644 --- a/docs/versioned_docs/version-1.x.x/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-1.x.x/setup/kubernetes-aks.md @@ -49,3 +49,19 @@ This seeds the database with a default user with the following credentials: **email**: `dev@tooljet.io` **password**: `password` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-1.x.x/setup/kubernetes-gke.md b/docs/versioned_docs/version-1.x.x/setup/kubernetes-gke.md index 61aa753c5b..21bee8ea59 100644 --- a/docs/versioned_docs/version-1.x.x/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-1.x.x/setup/kubernetes-gke.md @@ -74,3 +74,19 @@ This seeds the database with a default user with the following credentials: **emai**: `dev@tooljet.io` **password**: `password` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-1.x.x/setup/kubernetes.md b/docs/versioned_docs/version-1.x.x/setup/kubernetes.md index 08b444c5cf..031524453d 100644 --- a/docs/versioned_docs/version-1.x.x/setup/kubernetes.md +++ b/docs/versioned_docs/version-1.x.x/setup/kubernetes.md @@ -48,4 +48,20 @@ If there are self signed HTTPS endpoints that Tooljet needs to connect to, pleas :::tip If you want to serve ToolJet client from services such as Firebase or Netlify, please read the client Setup documentation **[here](/docs/setup/client)**. -::: \ No newline at end of file +::: + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-1.x.x/setup/tooljet-subpath.md b/docs/versioned_docs/version-1.x.x/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-1.x.x/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-1.x.x/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.0.0/setup/azure-container.md b/docs/versioned_docs/version-2.0.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.0.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.0.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.0.0/setup/client.md b/docs/versioned_docs/version-2.0.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.0.0/setup/client.md +++ b/docs/versioned_docs/version-2.0.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.0.0/setup/digitalocean.md b/docs/versioned_docs/version-2.0.0/setup/digitalocean.md index a4143f9e4f..c68c8e127d 100644 --- a/docs/versioned_docs/version-2.0.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.0.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.0.0/setup/docker.md b/docs/versioned_docs/version-2.0.0/setup/docker.md index e3dd3affe8..98f21a7551 100644 --- a/docs/versioned_docs/version-2.0.0/setup/docker.md +++ b/docs/versioned_docs/version-2.0.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.0.0/setup/ec2.md b/docs/versioned_docs/version-2.0.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.0.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.0.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.0.0/setup/ecs.md b/docs/versioned_docs/version-2.0.0/setup/ecs.md index b16770014a..1db580fb95 100644 --- a/docs/versioned_docs/version-2.0.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.0.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.0.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.0.0/setup/google-cloud-run.md index 7cac3dce7f..8a7b2f3f6a 100644 --- a/docs/versioned_docs/version-2.0.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.0.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.0.0/setup/helm.md b/docs/versioned_docs/version-2.0.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.0.0/setup/helm.md +++ b/docs/versioned_docs/version-2.0.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.0.0/setup/heroku.md b/docs/versioned_docs/version-2.0.0/setup/heroku.md index 80e14d2c06..00749f1b66 100644 --- a/docs/versioned_docs/version-2.0.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.0.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.0.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.0.0/setup/kubernetes-aks.md index c61404eb9f..a2c0b0eaa6 100644 --- a/docs/versioned_docs/version-2.0.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.0.0/setup/kubernetes-aks.md @@ -52,4 +52,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser kubectl apply -f https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/postgrest.yaml ``` -2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. \ No newline at end of file +2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.0.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.0.0/setup/kubernetes-gke.md index af86339fec..93ff34262e 100644 --- a/docs/versioned_docs/version-2.0.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.0.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.0.0/setup/kubernetes.md b/docs/versioned_docs/version-2.0.0/setup/kubernetes.md index f3caf2b871..69baa7cf5a 100644 --- a/docs/versioned_docs/version-2.0.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.0.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.0.0/setup/openshift.md b/docs/versioned_docs/version-2.0.0/setup/openshift.md index 1cdb3dd674..a9802dff29 100644 --- a/docs/versioned_docs/version-2.0.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.0.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.0.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.0.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.0.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.0.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.1.0/setup/azure-container.md b/docs/versioned_docs/version-2.1.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.1.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.1.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.1.0/setup/client.md b/docs/versioned_docs/version-2.1.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.1.0/setup/client.md +++ b/docs/versioned_docs/version-2.1.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.1.0/setup/digitalocean.md b/docs/versioned_docs/version-2.1.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.1.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.1.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.1.0/setup/docker.md b/docs/versioned_docs/version-2.1.0/setup/docker.md index 0c63fd3a83..89a739564a 100644 --- a/docs/versioned_docs/version-2.1.0/setup/docker.md +++ b/docs/versioned_docs/version-2.1.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.1.0/setup/ec2.md b/docs/versioned_docs/version-2.1.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.1.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.1.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.1.0/setup/ecs.md b/docs/versioned_docs/version-2.1.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.1.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.1.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.1.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.1.0/setup/google-cloud-run.md index 0aba9f1854..8fae7cf56e 100644 --- a/docs/versioned_docs/version-2.1.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.1.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.1.0/setup/helm.md b/docs/versioned_docs/version-2.1.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.1.0/setup/helm.md +++ b/docs/versioned_docs/version-2.1.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.1.0/setup/heroku.md b/docs/versioned_docs/version-2.1.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.1.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.1.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.1.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.1.0/setup/kubernetes-aks.md index c61404eb9f..9d28fed702 100644 --- a/docs/versioned_docs/version-2.1.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.1.0/setup/kubernetes-aks.md @@ -52,4 +52,21 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser kubectl apply -f https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/postgrest.yaml ``` -2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. \ No newline at end of file +2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.1.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.1.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.1.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.1.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.1.0/setup/kubernetes.md b/docs/versioned_docs/version-2.1.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.1.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.1.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.1.0/setup/openshift.md b/docs/versioned_docs/version-2.1.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.1.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.1.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.1.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.1.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.1.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.1.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.10.0/setup/azure-container.md b/docs/versioned_docs/version-2.10.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.10.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.10.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.10.0/setup/client.md b/docs/versioned_docs/version-2.10.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.10.0/setup/client.md +++ b/docs/versioned_docs/version-2.10.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.10.0/setup/digitalocean.md b/docs/versioned_docs/version-2.10.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.10.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.10.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.10.0/setup/docker.md b/docs/versioned_docs/version-2.10.0/setup/docker.md index 9ae083200c..218f995327 100644 --- a/docs/versioned_docs/version-2.10.0/setup/docker.md +++ b/docs/versioned_docs/version-2.10.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.10.0/setup/ec2.md b/docs/versioned_docs/version-2.10.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.10.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.10.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.10.0/setup/ecs.md b/docs/versioned_docs/version-2.10.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.10.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.10.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.10.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.10.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.10.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.10.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.10.0/setup/helm.md b/docs/versioned_docs/version-2.10.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.10.0/setup/helm.md +++ b/docs/versioned_docs/version-2.10.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.10.0/setup/heroku.md b/docs/versioned_docs/version-2.10.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.10.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.10.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.10.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.10.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.10.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.10.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.10.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.10.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.10.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.10.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.10.0/setup/kubernetes.md b/docs/versioned_docs/version-2.10.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.10.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.10.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.10.0/setup/openshift.md b/docs/versioned_docs/version-2.10.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.10.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.10.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.10.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.10.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.10.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.10.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.11.0/setup/azure-container.md b/docs/versioned_docs/version-2.11.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.11.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.11.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.11.0/setup/client.md b/docs/versioned_docs/version-2.11.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.11.0/setup/client.md +++ b/docs/versioned_docs/version-2.11.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.11.0/setup/digitalocean.md b/docs/versioned_docs/version-2.11.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.11.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.11.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.11.0/setup/docker.md b/docs/versioned_docs/version-2.11.0/setup/docker.md index 92f6ffa342..7c36a543fd 100644 --- a/docs/versioned_docs/version-2.11.0/setup/docker.md +++ b/docs/versioned_docs/version-2.11.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.11.0/setup/ec2.md b/docs/versioned_docs/version-2.11.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.11.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.11.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.11.0/setup/ecs.md b/docs/versioned_docs/version-2.11.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.11.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.11.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.11.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.11.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.11.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.11.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.11.0/setup/helm.md b/docs/versioned_docs/version-2.11.0/setup/helm.md index 012819d1f1..ccd6a37c03 100644 --- a/docs/versioned_docs/version-2.11.0/setup/helm.md +++ b/docs/versioned_docs/version-2.11.0/setup/helm.md @@ -34,3 +34,19 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.11.0/setup/heroku.md b/docs/versioned_docs/version-2.11.0/setup/heroku.md index d5f588a5c8..f55ba3b559 100644 --- a/docs/versioned_docs/version-2.11.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.11.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.11.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.11.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.11.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.11.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.11.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.11.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.11.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.11.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.11.0/setup/kubernetes.md b/docs/versioned_docs/version-2.11.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.11.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.11.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.11.0/setup/openshift.md b/docs/versioned_docs/version-2.11.0/setup/openshift.md index 37031e08d3..0be01d8eb1 100644 --- a/docs/versioned_docs/version-2.11.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.11.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.11.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.11.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.11.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.11.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.12.0/setup/azure-container.md b/docs/versioned_docs/version-2.12.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.12.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.12.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.12.0/setup/client.md b/docs/versioned_docs/version-2.12.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.12.0/setup/client.md +++ b/docs/versioned_docs/version-2.12.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.12.0/setup/digitalocean.md b/docs/versioned_docs/version-2.12.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.12.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.12.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.12.0/setup/docker.md b/docs/versioned_docs/version-2.12.0/setup/docker.md index 0308312d21..76bd557503 100644 --- a/docs/versioned_docs/version-2.12.0/setup/docker.md +++ b/docs/versioned_docs/version-2.12.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.12.0/setup/ec2.md b/docs/versioned_docs/version-2.12.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.12.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.12.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.12.0/setup/ecs.md b/docs/versioned_docs/version-2.12.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.12.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.12.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.12.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.12.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.12.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.12.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.12.0/setup/helm.md b/docs/versioned_docs/version-2.12.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.12.0/setup/helm.md +++ b/docs/versioned_docs/version-2.12.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.12.0/setup/heroku.md b/docs/versioned_docs/version-2.12.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.12.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.12.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.12.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.12.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.12.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.12.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.12.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.12.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.12.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.12.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.12.0/setup/kubernetes.md b/docs/versioned_docs/version-2.12.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.12.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.12.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.12.0/setup/openshift.md b/docs/versioned_docs/version-2.12.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.12.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.12.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.12.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.12.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.12.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.12.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.13.0/setup/azure-container.md b/docs/versioned_docs/version-2.13.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.13.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.13.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.13.0/setup/client.md b/docs/versioned_docs/version-2.13.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.13.0/setup/client.md +++ b/docs/versioned_docs/version-2.13.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.13.0/setup/digitalocean.md b/docs/versioned_docs/version-2.13.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.13.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.13.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.13.0/setup/docker.md b/docs/versioned_docs/version-2.13.0/setup/docker.md index 0308312d21..76bd557503 100644 --- a/docs/versioned_docs/version-2.13.0/setup/docker.md +++ b/docs/versioned_docs/version-2.13.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.13.0/setup/ec2.md b/docs/versioned_docs/version-2.13.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.13.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.13.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.13.0/setup/ecs.md b/docs/versioned_docs/version-2.13.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.13.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.13.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.13.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.13.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.13.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.13.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.13.0/setup/helm.md b/docs/versioned_docs/version-2.13.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.13.0/setup/helm.md +++ b/docs/versioned_docs/version-2.13.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.13.0/setup/heroku.md b/docs/versioned_docs/version-2.13.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.13.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.13.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.13.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.13.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.13.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.13.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.13.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.13.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.13.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.13.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.13.0/setup/kubernetes.md b/docs/versioned_docs/version-2.13.0/setup/kubernetes.md index 1f8991660b..6a8ad54279 100644 --- a/docs/versioned_docs/version-2.13.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.13.0/setup/kubernetes.md @@ -62,3 +62,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.13.0/setup/openshift.md b/docs/versioned_docs/version-2.13.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.13.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.13.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.13.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.13.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.13.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.13.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.14.0/setup/azure-container.md b/docs/versioned_docs/version-2.14.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.14.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.14.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.14.0/setup/client.md b/docs/versioned_docs/version-2.14.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.14.0/setup/client.md +++ b/docs/versioned_docs/version-2.14.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.14.0/setup/digitalocean.md b/docs/versioned_docs/version-2.14.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.14.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.14.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.14.0/setup/docker.md b/docs/versioned_docs/version-2.14.0/setup/docker.md index 0308312d21..76bd557503 100644 --- a/docs/versioned_docs/version-2.14.0/setup/docker.md +++ b/docs/versioned_docs/version-2.14.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.14.0/setup/ec2.md b/docs/versioned_docs/version-2.14.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.14.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.14.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.14.0/setup/ecs.md b/docs/versioned_docs/version-2.14.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.14.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.14.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.14.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.14.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.14.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.14.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.14.0/setup/helm.md b/docs/versioned_docs/version-2.14.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.14.0/setup/helm.md +++ b/docs/versioned_docs/version-2.14.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.14.0/setup/heroku.md b/docs/versioned_docs/version-2.14.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.14.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.14.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.14.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.14.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.14.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.14.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.14.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.14.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.14.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.14.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.14.0/setup/kubernetes.md b/docs/versioned_docs/version-2.14.0/setup/kubernetes.md index 1f8991660b..6a8ad54279 100644 --- a/docs/versioned_docs/version-2.14.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.14.0/setup/kubernetes.md @@ -62,3 +62,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.14.0/setup/openshift.md b/docs/versioned_docs/version-2.14.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.14.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.14.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.14.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.14.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.14.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.14.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.15.0/setup/azure-container.md b/docs/versioned_docs/version-2.15.0/setup/azure-container.md index 60bdc0aaa5..fe19e718dc 100644 --- a/docs/versioned_docs/version-2.15.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.15.0/setup/azure-container.md @@ -68,3 +68,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.15.0/setup/client.md b/docs/versioned_docs/version-2.15.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.15.0/setup/client.md +++ b/docs/versioned_docs/version-2.15.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.15.0/setup/digitalocean.md b/docs/versioned_docs/version-2.15.0/setup/digitalocean.md index 0030942f83..03c485dcf5 100644 --- a/docs/versioned_docs/version-2.15.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.15.0/setup/digitalocean.md @@ -107,3 +107,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#enable-tooljet-database--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.15.0/setup/docker.md b/docs/versioned_docs/version-2.15.0/setup/docker.md index 0308312d21..76bd557503 100644 --- a/docs/versioned_docs/version-2.15.0/setup/docker.md +++ b/docs/versioned_docs/version-2.15.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.15.0/setup/ec2.md b/docs/versioned_docs/version-2.15.0/setup/ec2.md index e4cc244db9..1c10b0e918 100644 --- a/docs/versioned_docs/version-2.15.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.15.0/setup/ec2.md @@ -84,4 +84,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.15.0/setup/ecs.md b/docs/versioned_docs/version-2.15.0/setup/ecs.md index c3eb758aa0..b4f3073222 100644 --- a/docs/versioned_docs/version-2.15.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.15.0/setup/ecs.md @@ -228,3 +228,18 @@ Follow the steps below to deploy PostgREST on a ECS cluster. Update ToolJet deployment with the appropriate env variables [here](https://docs.tooljet.com/docs/setup/env-vars/#enable-tooljet-database--optional-) and apply the changes. +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.15.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.15.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.15.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.15.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.15.0/setup/helm.md b/docs/versioned_docs/version-2.15.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.15.0/setup/helm.md +++ b/docs/versioned_docs/version-2.15.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.15.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.15.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.15.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.15.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.15.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.15.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.15.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.15.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.15.0/setup/kubernetes.md b/docs/versioned_docs/version-2.15.0/setup/kubernetes.md index 1f8991660b..6a8ad54279 100644 --- a/docs/versioned_docs/version-2.15.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.15.0/setup/kubernetes.md @@ -62,3 +62,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.15.0/setup/openshift.md b/docs/versioned_docs/version-2.15.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.15.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.15.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.15.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.15.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.15.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.15.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.16.0/setup/azure-container.md b/docs/versioned_docs/version-2.16.0/setup/azure-container.md index 60bdc0aaa5..fe19e718dc 100644 --- a/docs/versioned_docs/version-2.16.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.16.0/setup/azure-container.md @@ -68,3 +68,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.16.0/setup/client.md b/docs/versioned_docs/version-2.16.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.16.0/setup/client.md +++ b/docs/versioned_docs/version-2.16.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.16.0/setup/digitalocean.md b/docs/versioned_docs/version-2.16.0/setup/digitalocean.md index 0030942f83..03c485dcf5 100644 --- a/docs/versioned_docs/version-2.16.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.16.0/setup/digitalocean.md @@ -107,3 +107,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#enable-tooljet-database--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.16.0/setup/docker.md b/docs/versioned_docs/version-2.16.0/setup/docker.md index 0308312d21..76bd557503 100644 --- a/docs/versioned_docs/version-2.16.0/setup/docker.md +++ b/docs/versioned_docs/version-2.16.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.16.0/setup/ec2.md b/docs/versioned_docs/version-2.16.0/setup/ec2.md index e4cc244db9..1c10b0e918 100644 --- a/docs/versioned_docs/version-2.16.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.16.0/setup/ec2.md @@ -84,4 +84,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.16.0/setup/ecs.md b/docs/versioned_docs/version-2.16.0/setup/ecs.md index c3eb758aa0..b4f3073222 100644 --- a/docs/versioned_docs/version-2.16.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.16.0/setup/ecs.md @@ -228,3 +228,18 @@ Follow the steps below to deploy PostgREST on a ECS cluster. Update ToolJet deployment with the appropriate env variables [here](https://docs.tooljet.com/docs/setup/env-vars/#enable-tooljet-database--optional-) and apply the changes. +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.16.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.16.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.16.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.16.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.16.0/setup/helm.md b/docs/versioned_docs/version-2.16.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.16.0/setup/helm.md +++ b/docs/versioned_docs/version-2.16.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.16.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.16.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.16.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.16.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.16.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.16.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.16.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.16.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.16.0/setup/kubernetes.md b/docs/versioned_docs/version-2.16.0/setup/kubernetes.md index 1f8991660b..6a8ad54279 100644 --- a/docs/versioned_docs/version-2.16.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.16.0/setup/kubernetes.md @@ -62,3 +62,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.16.0/setup/openshift.md b/docs/versioned_docs/version-2.16.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.16.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.16.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.16.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.16.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.16.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.16.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.17.0/setup/azure-container.md b/docs/versioned_docs/version-2.17.0/setup/azure-container.md index 60bdc0aaa5..fe19e718dc 100644 --- a/docs/versioned_docs/version-2.17.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.17.0/setup/azure-container.md @@ -68,3 +68,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.17.0/setup/client.md b/docs/versioned_docs/version-2.17.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.17.0/setup/client.md +++ b/docs/versioned_docs/version-2.17.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.17.0/setup/docker.md b/docs/versioned_docs/version-2.17.0/setup/docker.md index ea1671ef1f..8a80874ba0 100644 --- a/docs/versioned_docs/version-2.17.0/setup/docker.md +++ b/docs/versioned_docs/version-2.17.0/setup/docker.md @@ -128,11 +128,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.17.0/setup/ec2.md b/docs/versioned_docs/version-2.17.0/setup/ec2.md index e4cc244db9..1c10b0e918 100644 --- a/docs/versioned_docs/version-2.17.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.17.0/setup/ec2.md @@ -84,4 +84,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.17.0/setup/ecs.md b/docs/versioned_docs/version-2.17.0/setup/ecs.md index c3eb758aa0..b4f3073222 100644 --- a/docs/versioned_docs/version-2.17.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.17.0/setup/ecs.md @@ -228,3 +228,18 @@ Follow the steps below to deploy PostgREST on a ECS cluster. Update ToolJet deployment with the appropriate env variables [here](https://docs.tooljet.com/docs/setup/env-vars/#enable-tooljet-database--optional-) and apply the changes. +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.17.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.17.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.17.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.17.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.17.0/setup/helm.md b/docs/versioned_docs/version-2.17.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.17.0/setup/helm.md +++ b/docs/versioned_docs/version-2.17.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.17.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.17.0/setup/kubernetes-aks.md index 09160b07e7..0ca42d0872 100644 --- a/docs/versioned_docs/version-2.17.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.17.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.17.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.17.0/setup/kubernetes-gke.md index 8071da0ae7..614ac6a485 100644 --- a/docs/versioned_docs/version-2.17.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.17.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.17.0/setup/kubernetes.md b/docs/versioned_docs/version-2.17.0/setup/kubernetes.md index b54428f606..a329ddb9e1 100644 --- a/docs/versioned_docs/version-2.17.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.17.0/setup/kubernetes.md @@ -62,3 +62,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.17.0/setup/openshift.md b/docs/versioned_docs/version-2.17.0/setup/openshift.md index 73f6a7e531..10cebdf7db 100644 --- a/docs/versioned_docs/version-2.17.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.17.0/setup/openshift.md @@ -68,3 +68,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://tooljet-deployments.s3.us-west-1.amazonaws.com/openshift/postgrest.yaml ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.17.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.17.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.17.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.17.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.18.0/setup/azure-container.md b/docs/versioned_docs/version-2.18.0/setup/azure-container.md index 60bdc0aaa5..fe19e718dc 100644 --- a/docs/versioned_docs/version-2.18.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.18.0/setup/azure-container.md @@ -68,3 +68,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.18.0/setup/client.md b/docs/versioned_docs/version-2.18.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.18.0/setup/client.md +++ b/docs/versioned_docs/version-2.18.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.18.0/setup/digitalocean.md b/docs/versioned_docs/version-2.18.0/setup/digitalocean.md index 0030942f83..03c485dcf5 100644 --- a/docs/versioned_docs/version-2.18.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.18.0/setup/digitalocean.md @@ -107,3 +107,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#enable-tooljet-database--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.18.0/setup/docker.md b/docs/versioned_docs/version-2.18.0/setup/docker.md index ea1671ef1f..8a80874ba0 100644 --- a/docs/versioned_docs/version-2.18.0/setup/docker.md +++ b/docs/versioned_docs/version-2.18.0/setup/docker.md @@ -128,11 +128,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.18.0/setup/ec2.md b/docs/versioned_docs/version-2.18.0/setup/ec2.md index e4cc244db9..1c10b0e918 100644 --- a/docs/versioned_docs/version-2.18.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.18.0/setup/ec2.md @@ -84,4 +84,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.18.0/setup/ecs.md b/docs/versioned_docs/version-2.18.0/setup/ecs.md index c3eb758aa0..b4f3073222 100644 --- a/docs/versioned_docs/version-2.18.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.18.0/setup/ecs.md @@ -228,3 +228,18 @@ Follow the steps below to deploy PostgREST on a ECS cluster. Update ToolJet deployment with the appropriate env variables [here](https://docs.tooljet.com/docs/setup/env-vars/#enable-tooljet-database--optional-) and apply the changes. +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.18.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.18.0/setup/google-cloud-run.md index 0431078dcc..3034395e2f 100644 --- a/docs/versioned_docs/version-2.18.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.18.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.18.0/setup/helm.md b/docs/versioned_docs/version-2.18.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.18.0/setup/helm.md +++ b/docs/versioned_docs/version-2.18.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.18.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.18.0/setup/kubernetes-aks.md index 04cc1515d2..35027ad21f 100644 --- a/docs/versioned_docs/version-2.18.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.18.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.18.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.18.0/setup/kubernetes-gke.md index c87a6c36bd..27447189f0 100644 --- a/docs/versioned_docs/version-2.18.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.18.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.18.0/setup/kubernetes.md b/docs/versioned_docs/version-2.18.0/setup/kubernetes.md index 10441ef99d..4155bcae09 100644 --- a/docs/versioned_docs/version-2.18.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.18.0/setup/kubernetes.md @@ -62,3 +62,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.18.0/setup/openshift.md b/docs/versioned_docs/version-2.18.0/setup/openshift.md index 73f6a7e531..10cebdf7db 100644 --- a/docs/versioned_docs/version-2.18.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.18.0/setup/openshift.md @@ -68,3 +68,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://tooljet-deployments.s3.us-west-1.amazonaws.com/openshift/postgrest.yaml ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.18.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.18.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.18.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.18.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.19.0/setup/azure-container.md b/docs/versioned_docs/version-2.19.0/setup/azure-container.md index 60bdc0aaa5..fe19e718dc 100644 --- a/docs/versioned_docs/version-2.19.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.19.0/setup/azure-container.md @@ -68,3 +68,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.19.0/setup/client.md b/docs/versioned_docs/version-2.19.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.19.0/setup/client.md +++ b/docs/versioned_docs/version-2.19.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.19.0/setup/digitalocean.md b/docs/versioned_docs/version-2.19.0/setup/digitalocean.md index 0030942f83..03c485dcf5 100644 --- a/docs/versioned_docs/version-2.19.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.19.0/setup/digitalocean.md @@ -107,3 +107,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#enable-tooljet-database--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.19.0/setup/docker.md b/docs/versioned_docs/version-2.19.0/setup/docker.md index ea1671ef1f..8a80874ba0 100644 --- a/docs/versioned_docs/version-2.19.0/setup/docker.md +++ b/docs/versioned_docs/version-2.19.0/setup/docker.md @@ -128,11 +128,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.19.0/setup/ec2.md b/docs/versioned_docs/version-2.19.0/setup/ec2.md index e4cc244db9..1c10b0e918 100644 --- a/docs/versioned_docs/version-2.19.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.19.0/setup/ec2.md @@ -84,4 +84,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.19.0/setup/ecs.md b/docs/versioned_docs/version-2.19.0/setup/ecs.md index c3eb758aa0..b4f3073222 100644 --- a/docs/versioned_docs/version-2.19.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.19.0/setup/ecs.md @@ -228,3 +228,18 @@ Follow the steps below to deploy PostgREST on a ECS cluster. Update ToolJet deployment with the appropriate env variables [here](https://docs.tooljet.com/docs/setup/env-vars/#enable-tooljet-database--optional-) and apply the changes. +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.19.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.19.0/setup/google-cloud-run.md index 0431078dcc..3034395e2f 100644 --- a/docs/versioned_docs/version-2.19.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.19.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.19.0/setup/helm.md b/docs/versioned_docs/version-2.19.0/setup/helm.md index e14232f0a4..9062825d83 100644 --- a/docs/versioned_docs/version-2.19.0/setup/helm.md +++ b/docs/versioned_docs/version-2.19.0/setup/helm.md @@ -34,3 +34,19 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.19.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.19.0/setup/kubernetes-aks.md index 04cc1515d2..35027ad21f 100644 --- a/docs/versioned_docs/version-2.19.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.19.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.19.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.19.0/setup/kubernetes-gke.md index c87a6c36bd..27447189f0 100644 --- a/docs/versioned_docs/version-2.19.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.19.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.19.0/setup/kubernetes.md b/docs/versioned_docs/version-2.19.0/setup/kubernetes.md index 10441ef99d..4155bcae09 100644 --- a/docs/versioned_docs/version-2.19.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.19.0/setup/kubernetes.md @@ -62,3 +62,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.19.0/setup/openshift.md b/docs/versioned_docs/version-2.19.0/setup/openshift.md index 73f6a7e531..10cebdf7db 100644 --- a/docs/versioned_docs/version-2.19.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.19.0/setup/openshift.md @@ -68,3 +68,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://tooljet-deployments.s3.us-west-1.amazonaws.com/openshift/postgrest.yaml ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.19.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.19.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.19.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.19.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.2.0/setup/azure-container.md b/docs/versioned_docs/version-2.2.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.2.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.2.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.2.0/setup/client.md b/docs/versioned_docs/version-2.2.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.2.0/setup/client.md +++ b/docs/versioned_docs/version-2.2.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.2.0/setup/digitalocean.md b/docs/versioned_docs/version-2.2.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.2.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.2.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.2.0/setup/docker.md b/docs/versioned_docs/version-2.2.0/setup/docker.md index 7215a1bb59..a5abea0646 100644 --- a/docs/versioned_docs/version-2.2.0/setup/docker.md +++ b/docs/versioned_docs/version-2.2.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.2.0/setup/ec2.md b/docs/versioned_docs/version-2.2.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.2.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.2.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.2.0/setup/ecs.md b/docs/versioned_docs/version-2.2.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.2.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.2.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.2.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.2.0/setup/google-cloud-run.md index 0aba9f1854..8fae7cf56e 100644 --- a/docs/versioned_docs/version-2.2.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.2.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.2.0/setup/helm.md b/docs/versioned_docs/version-2.2.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.2.0/setup/helm.md +++ b/docs/versioned_docs/version-2.2.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.2.0/setup/heroku.md b/docs/versioned_docs/version-2.2.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.2.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.2.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.2.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.2.0/setup/kubernetes-aks.md index db2ffea0cb..d5c263bae3 100644 --- a/docs/versioned_docs/version-2.2.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.2.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://github.com/ToolJet/ToolJet/blob/chore/main/kubernetes/GKE/deployment.yaml#L62) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.2.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.2.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.2.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.2.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.2.0/setup/kubernetes.md b/docs/versioned_docs/version-2.2.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.2.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.2.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.2.0/setup/openshift.md b/docs/versioned_docs/version-2.2.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.2.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.2.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.2.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.2.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.2.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.2.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.22.0/setup/azure-container.md b/docs/versioned_docs/version-2.22.0/setup/azure-container.md index 60bdc0aaa5..fe19e718dc 100644 --- a/docs/versioned_docs/version-2.22.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.22.0/setup/azure-container.md @@ -68,3 +68,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.22.0/setup/client.md b/docs/versioned_docs/version-2.22.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.22.0/setup/client.md +++ b/docs/versioned_docs/version-2.22.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.22.0/setup/digitalocean.md b/docs/versioned_docs/version-2.22.0/setup/digitalocean.md index 0030942f83..03c485dcf5 100644 --- a/docs/versioned_docs/version-2.22.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.22.0/setup/digitalocean.md @@ -107,3 +107,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#enable-tooljet-database--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.22.0/setup/docker.md b/docs/versioned_docs/version-2.22.0/setup/docker.md index ea1671ef1f..8a80874ba0 100644 --- a/docs/versioned_docs/version-2.22.0/setup/docker.md +++ b/docs/versioned_docs/version-2.22.0/setup/docker.md @@ -128,11 +128,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.22.0/setup/ec2.md b/docs/versioned_docs/version-2.22.0/setup/ec2.md index e4cc244db9..1c10b0e918 100644 --- a/docs/versioned_docs/version-2.22.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.22.0/setup/ec2.md @@ -84,4 +84,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.22.0/setup/ecs.md b/docs/versioned_docs/version-2.22.0/setup/ecs.md index c3eb758aa0..b4f3073222 100644 --- a/docs/versioned_docs/version-2.22.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.22.0/setup/ecs.md @@ -228,3 +228,18 @@ Follow the steps below to deploy PostgREST on a ECS cluster. Update ToolJet deployment with the appropriate env variables [here](https://docs.tooljet.com/docs/setup/env-vars/#enable-tooljet-database--optional-) and apply the changes. +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.22.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.22.0/setup/google-cloud-run.md index 0431078dcc..3034395e2f 100644 --- a/docs/versioned_docs/version-2.22.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.22.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.22.0/setup/helm.md b/docs/versioned_docs/version-2.22.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.22.0/setup/helm.md +++ b/docs/versioned_docs/version-2.22.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.22.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.22.0/setup/kubernetes-aks.md index 04cc1515d2..35027ad21f 100644 --- a/docs/versioned_docs/version-2.22.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.22.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.22.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.22.0/setup/kubernetes-gke.md index c87a6c36bd..27447189f0 100644 --- a/docs/versioned_docs/version-2.22.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.22.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.22.0/setup/kubernetes.md b/docs/versioned_docs/version-2.22.0/setup/kubernetes.md index 10441ef99d..4155bcae09 100644 --- a/docs/versioned_docs/version-2.22.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.22.0/setup/kubernetes.md @@ -62,3 +62,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.22.0/setup/openshift.md b/docs/versioned_docs/version-2.22.0/setup/openshift.md index 73f6a7e531..10cebdf7db 100644 --- a/docs/versioned_docs/version-2.22.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.22.0/setup/openshift.md @@ -68,3 +68,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://tooljet-deployments.s3.us-west-1.amazonaws.com/openshift/postgrest.yaml ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.22.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.22.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.22.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.22.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.23.0/setup/azure-container.md b/docs/versioned_docs/version-2.23.0/setup/azure-container.md index 60bdc0aaa5..fe19e718dc 100644 --- a/docs/versioned_docs/version-2.23.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.23.0/setup/azure-container.md @@ -68,3 +68,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.23.0/setup/client.md b/docs/versioned_docs/version-2.23.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.23.0/setup/client.md +++ b/docs/versioned_docs/version-2.23.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.23.0/setup/digitalocean.md b/docs/versioned_docs/version-2.23.0/setup/digitalocean.md index 0030942f83..03c485dcf5 100644 --- a/docs/versioned_docs/version-2.23.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.23.0/setup/digitalocean.md @@ -107,3 +107,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#enable-tooljet-database--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/setup/docker.md b/docs/versioned_docs/version-2.23.0/setup/docker.md index ea1671ef1f..8a80874ba0 100644 --- a/docs/versioned_docs/version-2.23.0/setup/docker.md +++ b/docs/versioned_docs/version-2.23.0/setup/docker.md @@ -128,11 +128,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.23.0/setup/ec2.md b/docs/versioned_docs/version-2.23.0/setup/ec2.md index 662b4f2d56..ca1e627571 100644 --- a/docs/versioned_docs/version-2.23.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.23.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.23.0/setup/ecs.md b/docs/versioned_docs/version-2.23.0/setup/ecs.md index c3eb758aa0..b4f3073222 100644 --- a/docs/versioned_docs/version-2.23.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.23.0/setup/ecs.md @@ -228,3 +228,18 @@ Follow the steps below to deploy PostgREST on a ECS cluster. Update ToolJet deployment with the appropriate env variables [here](https://docs.tooljet.com/docs/setup/env-vars/#enable-tooljet-database--optional-) and apply the changes. +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.23.0/setup/google-cloud-run.md index 0431078dcc..3034395e2f 100644 --- a/docs/versioned_docs/version-2.23.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.23.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/setup/helm.md b/docs/versioned_docs/version-2.23.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.23.0/setup/helm.md +++ b/docs/versioned_docs/version-2.23.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.23.0/setup/kubernetes-aks.md index 04cc1515d2..35027ad21f 100644 --- a/docs/versioned_docs/version-2.23.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.23.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.23.0/setup/kubernetes-gke.md index c87a6c36bd..27447189f0 100644 --- a/docs/versioned_docs/version-2.23.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.23.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/setup/kubernetes.md b/docs/versioned_docs/version-2.23.0/setup/kubernetes.md index 10441ef99d..4155bcae09 100644 --- a/docs/versioned_docs/version-2.23.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.23.0/setup/kubernetes.md @@ -62,3 +62,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://tooljet-deployments.s3.us-west-1.amazonaws.com/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/setup/openshift.md b/docs/versioned_docs/version-2.23.0/setup/openshift.md index 73f6a7e531..10cebdf7db 100644 --- a/docs/versioned_docs/version-2.23.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.23.0/setup/openshift.md @@ -68,3 +68,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://tooljet-deployments.s3.us-west-1.amazonaws.com/openshift/postgrest.yaml ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.23.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.23.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.23.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.23.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.3.0/setup/azure-container.md b/docs/versioned_docs/version-2.3.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.3.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.3.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.3.0/setup/client.md b/docs/versioned_docs/version-2.3.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.3.0/setup/client.md +++ b/docs/versioned_docs/version-2.3.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.3.0/setup/digitalocean.md b/docs/versioned_docs/version-2.3.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.3.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.3.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.3.0/setup/docker.md b/docs/versioned_docs/version-2.3.0/setup/docker.md index 4b9158169a..5fb0c63e77 100644 --- a/docs/versioned_docs/version-2.3.0/setup/docker.md +++ b/docs/versioned_docs/version-2.3.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.3.0/setup/ec2.md b/docs/versioned_docs/version-2.3.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.3.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.3.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.3.0/setup/ecs.md b/docs/versioned_docs/version-2.3.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.3.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.3.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.3.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.3.0/setup/google-cloud-run.md index bfb2b4c661..76334536e9 100644 --- a/docs/versioned_docs/version-2.3.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.3.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.3.0/setup/helm.md b/docs/versioned_docs/version-2.3.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.3.0/setup/helm.md +++ b/docs/versioned_docs/version-2.3.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.3.0/setup/heroku.md b/docs/versioned_docs/version-2.3.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.3.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.3.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.3.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.3.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.3.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.3.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.3.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.3.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.3.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.3.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.3.0/setup/kubernetes.md b/docs/versioned_docs/version-2.3.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.3.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.3.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.3.0/setup/openshift.md b/docs/versioned_docs/version-2.3.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.3.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.3.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.3.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.3.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.3.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.3.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.4.0/setup/azure-container.md b/docs/versioned_docs/version-2.4.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.4.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.4.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.4.0/setup/client.md b/docs/versioned_docs/version-2.4.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.4.0/setup/client.md +++ b/docs/versioned_docs/version-2.4.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.4.0/setup/digitalocean.md b/docs/versioned_docs/version-2.4.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.4.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.4.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.4.0/setup/docker.md b/docs/versioned_docs/version-2.4.0/setup/docker.md index 64f40ec8d9..5c2faf0db9 100644 --- a/docs/versioned_docs/version-2.4.0/setup/docker.md +++ b/docs/versioned_docs/version-2.4.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.4.0/setup/ec2.md b/docs/versioned_docs/version-2.4.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.4.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.4.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.4.0/setup/ecs.md b/docs/versioned_docs/version-2.4.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.4.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.4.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.4.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.4.0/setup/google-cloud-run.md index 0aba9f1854..8fae7cf56e 100644 --- a/docs/versioned_docs/version-2.4.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.4.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.4.0/setup/helm.md b/docs/versioned_docs/version-2.4.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.4.0/setup/helm.md +++ b/docs/versioned_docs/version-2.4.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.4.0/setup/heroku.md b/docs/versioned_docs/version-2.4.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.4.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.4.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.4.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.4.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.4.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.4.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.4.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.4.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.4.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.4.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.4.0/setup/kubernetes.md b/docs/versioned_docs/version-2.4.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.4.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.4.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.4.0/setup/openshift.md b/docs/versioned_docs/version-2.4.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.4.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.4.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.4.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.4.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.4.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.4.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.5.0/setup/azure-container.md b/docs/versioned_docs/version-2.5.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.5.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.5.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.5.0/setup/client.md b/docs/versioned_docs/version-2.5.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.5.0/setup/client.md +++ b/docs/versioned_docs/version-2.5.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.5.0/setup/digitalocean.md b/docs/versioned_docs/version-2.5.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.5.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.5.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.5.0/setup/docker.md b/docs/versioned_docs/version-2.5.0/setup/docker.md index 31e2f9a0dd..d0d0c3b084 100644 --- a/docs/versioned_docs/version-2.5.0/setup/docker.md +++ b/docs/versioned_docs/version-2.5.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.5.0/setup/ec2.md b/docs/versioned_docs/version-2.5.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.5.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.5.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.5.0/setup/ecs.md b/docs/versioned_docs/version-2.5.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.5.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.5.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.5.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.5.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.5.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.5.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.5.0/setup/helm.md b/docs/versioned_docs/version-2.5.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.5.0/setup/helm.md +++ b/docs/versioned_docs/version-2.5.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.5.0/setup/heroku.md b/docs/versioned_docs/version-2.5.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.5.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.5.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.5.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.5.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.5.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.5.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.5.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.5.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.5.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.5.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.5.0/setup/kubernetes.md b/docs/versioned_docs/version-2.5.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.5.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.5.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.5.0/setup/openshift.md b/docs/versioned_docs/version-2.5.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.5.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.5.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.5.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.5.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.5.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.5.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.6.0/setup/azure-container.md b/docs/versioned_docs/version-2.6.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.6.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.6.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.6.0/setup/client.md b/docs/versioned_docs/version-2.6.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.6.0/setup/client.md +++ b/docs/versioned_docs/version-2.6.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.6.0/setup/digitalocean.md b/docs/versioned_docs/version-2.6.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.6.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.6.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.6.0/setup/docker.md b/docs/versioned_docs/version-2.6.0/setup/docker.md index 28894ee407..7f0e86f170 100644 --- a/docs/versioned_docs/version-2.6.0/setup/docker.md +++ b/docs/versioned_docs/version-2.6.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.6.0/setup/ec2.md b/docs/versioned_docs/version-2.6.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.6.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.6.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.6.0/setup/ecs.md b/docs/versioned_docs/version-2.6.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.6.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.6.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.6.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.6.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.6.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.6.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.6.0/setup/helm.md b/docs/versioned_docs/version-2.6.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.6.0/setup/helm.md +++ b/docs/versioned_docs/version-2.6.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.6.0/setup/heroku.md b/docs/versioned_docs/version-2.6.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.6.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.6.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.6.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.6.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.6.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.6.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.6.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.6.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.6.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.6.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.6.0/setup/kubernetes.md b/docs/versioned_docs/version-2.6.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.6.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.6.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.6.0/setup/openshift.md b/docs/versioned_docs/version-2.6.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.6.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.6.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.6.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.6.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.6.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.6.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.7.0/setup/azure-container.md b/docs/versioned_docs/version-2.7.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.7.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.7.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.7.0/setup/client.md b/docs/versioned_docs/version-2.7.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.7.0/setup/client.md +++ b/docs/versioned_docs/version-2.7.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.7.0/setup/digitalocean.md b/docs/versioned_docs/version-2.7.0/setup/digitalocean.md index 2f7d8f579d..8717c7cf9c 100644 --- a/docs/versioned_docs/version-2.7.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.7.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.7.0/setup/docker.md b/docs/versioned_docs/version-2.7.0/setup/docker.md index ad71163ad9..33f0c763b1 100644 --- a/docs/versioned_docs/version-2.7.0/setup/docker.md +++ b/docs/versioned_docs/version-2.7.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.7.0/setup/ec2.md b/docs/versioned_docs/version-2.7.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.7.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.7.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.7.0/setup/ecs.md b/docs/versioned_docs/version-2.7.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.7.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.7.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.7.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.7.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.7.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.7.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.7.0/setup/helm.md b/docs/versioned_docs/version-2.7.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.7.0/setup/helm.md +++ b/docs/versioned_docs/version-2.7.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.7.0/setup/heroku.md b/docs/versioned_docs/version-2.7.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.7.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.7.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.7.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.7.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.7.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.7.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.7.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.7.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.7.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.7.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.7.0/setup/kubernetes.md b/docs/versioned_docs/version-2.7.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.7.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.7.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.7.0/setup/openshift.md b/docs/versioned_docs/version-2.7.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.7.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.7.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.7.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.7.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.7.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.7.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.8.0/setup/azure-container.md b/docs/versioned_docs/version-2.8.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.8.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.8.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.8.0/setup/client.md b/docs/versioned_docs/version-2.8.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.8.0/setup/client.md +++ b/docs/versioned_docs/version-2.8.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.8.0/setup/digitalocean.md b/docs/versioned_docs/version-2.8.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.8.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.8.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.8.0/setup/docker.md b/docs/versioned_docs/version-2.8.0/setup/docker.md index 30392d6ab0..0f0b056507 100644 --- a/docs/versioned_docs/version-2.8.0/setup/docker.md +++ b/docs/versioned_docs/version-2.8.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.8.0/setup/ec2.md b/docs/versioned_docs/version-2.8.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.8.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.8.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.8.0/setup/ecs.md b/docs/versioned_docs/version-2.8.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.8.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.8.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.8.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.8.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.8.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.8.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.8.0/setup/helm.md b/docs/versioned_docs/version-2.8.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.8.0/setup/helm.md +++ b/docs/versioned_docs/version-2.8.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.8.0/setup/heroku.md b/docs/versioned_docs/version-2.8.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.8.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.8.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.8.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.8.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.8.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.8.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.8.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.8.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.8.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.8.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.8.0/setup/kubernetes.md b/docs/versioned_docs/version-2.8.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.8.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.8.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.8.0/setup/openshift.md b/docs/versioned_docs/version-2.8.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.8.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.8.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.8.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.8.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.8.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.8.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.9.0/setup/azure-container.md b/docs/versioned_docs/version-2.9.0/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.9.0/setup/azure-container.md +++ b/docs/versioned_docs/version-2.9.0/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.9.0/setup/client.md b/docs/versioned_docs/version-2.9.0/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.9.0/setup/client.md +++ b/docs/versioned_docs/version-2.9.0/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.9.0/setup/digitalocean.md b/docs/versioned_docs/version-2.9.0/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.9.0/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.9.0/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.0/setup/docker.md b/docs/versioned_docs/version-2.9.0/setup/docker.md index 4aa5b95d83..6852360ddb 100644 --- a/docs/versioned_docs/version-2.9.0/setup/docker.md +++ b/docs/versioned_docs/version-2.9.0/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.9.0/setup/ec2.md b/docs/versioned_docs/version-2.9.0/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.9.0/setup/ec2.md +++ b/docs/versioned_docs/version-2.9.0/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.9.0/setup/ecs.md b/docs/versioned_docs/version-2.9.0/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.9.0/setup/ecs.md +++ b/docs/versioned_docs/version-2.9.0/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.0/setup/google-cloud-run.md b/docs/versioned_docs/version-2.9.0/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.9.0/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.9.0/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.0/setup/helm.md b/docs/versioned_docs/version-2.9.0/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.9.0/setup/helm.md +++ b/docs/versioned_docs/version-2.9.0/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.0/setup/heroku.md b/docs/versioned_docs/version-2.9.0/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.9.0/setup/heroku.md +++ b/docs/versioned_docs/version-2.9.0/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.0/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.9.0/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.9.0/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.9.0/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.0/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.9.0/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.9.0/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.9.0/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.0/setup/kubernetes.md b/docs/versioned_docs/version-2.9.0/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.9.0/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.9.0/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.0/setup/openshift.md b/docs/versioned_docs/version-2.9.0/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.9.0/setup/openshift.md +++ b/docs/versioned_docs/version-2.9.0/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.0/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.9.0/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.9.0/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.9.0/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + diff --git a/docs/versioned_docs/version-2.9.4/setup/azure-container.md b/docs/versioned_docs/version-2.9.4/setup/azure-container.md index b9e9f9947f..c0d9138d6e 100644 --- a/docs/versioned_docs/version-2.9.4/setup/azure-container.md +++ b/docs/versioned_docs/version-2.9.4/setup/azure-container.md @@ -65,3 +65,19 @@ Please note that you need to set up a PostgreSQL database manually to be used by You can access ToolJet via the application URL provided in the overview tab. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.9.4/setup/client.md b/docs/versioned_docs/version-2.9.4/setup/client.md index ebea627ad9..a29cfb1b60 100644 --- a/docs/versioned_docs/version-2.9.4/setup/client.md +++ b/docs/versioned_docs/version-2.9.4/setup/client.md @@ -96,3 +96,19 @@ Summarising the steps below: ```bash cd tooljet-assets && gcloud app deploy ``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. diff --git a/docs/versioned_docs/version-2.9.4/setup/digitalocean.md b/docs/versioned_docs/version-2.9.4/setup/digitalocean.md index a4143f9e4f..ab64f0b3bd 100644 --- a/docs/versioned_docs/version-2.9.4/setup/digitalocean.md +++ b/docs/versioned_docs/version-2.9.4/setup/digitalocean.md @@ -64,3 +64,19 @@ Follow the steps below to deploy ToolJet Database on DigitalOcean: 4. Add your newly created PostgREST app to the trusted sources of your managed or separate database. 5. Update your existing ToolJet application deployment with [environment variables](/docs/setup/env-vars#tooljet-database-feature-enable--optional-) required for PostgREST. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.4/setup/docker.md b/docs/versioned_docs/version-2.9.4/setup/docker.md index b95c8ab072..d5b8fedf46 100644 --- a/docs/versioned_docs/version-2.9.4/setup/docker.md +++ b/docs/versioned_docs/version-2.9.4/setup/docker.md @@ -126,11 +126,29 @@ Confused about which setup to select? Feel free to ask the community via Slack: `sudo docker-compose up -d` iv. Setup docker to run without root privileges by following the instructions written here https://docs.docker.com/engine/install/linux-postinstall/ - ::: +::: - - - - + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.9.4/setup/ec2.md b/docs/versioned_docs/version-2.9.4/setup/ec2.md index 540b16c50d..55b0cdb563 100644 --- a/docs/versioned_docs/version-2.9.4/setup/ec2.md +++ b/docs/versioned_docs/version-2.9.4/setup/ec2.md @@ -77,4 +77,26 @@ Follow the steps below to deploy ToolJet on AWS EC2 instances. ToolJet AMI comes inbuilt with PostgREST. If you intend to use this feature, you'd only have to setup the environment variables in `~/app/.env` file and run `./setup_app` script. -You can learn more about this feature [here](/docs/tooljet-database). \ No newline at end of file +You can learn more about this feature [here](/docs/tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + + + + + + diff --git a/docs/versioned_docs/version-2.9.4/setup/ecs.md b/docs/versioned_docs/version-2.9.4/setup/ecs.md index b16770014a..a21236d5e0 100644 --- a/docs/versioned_docs/version-2.9.4/setup/ecs.md +++ b/docs/versioned_docs/version-2.9.4/setup/ecs.md @@ -77,3 +77,18 @@ Follow the steps below to deploy ToolJet on a ECS cluster. The setup above is just a template. Feel free to update the task definition and configure parameters for resources and environment variables according to your needs. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.4/setup/google-cloud-run.md b/docs/versioned_docs/version-2.9.4/setup/google-cloud-run.md index fc7dd35617..3d5e7e0344 100644 --- a/docs/versioned_docs/version-2.9.4/setup/google-cloud-run.md +++ b/docs/versioned_docs/version-2.9.4/setup/google-cloud-run.md @@ -151,3 +151,20 @@ Once the Service is created and live, to make the Cloud Service URL public. Ple
    env-for-tooljet
    + + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.4/setup/helm.md b/docs/versioned_docs/version-2.9.4/setup/helm.md index cca63346c1..ce2632a837 100644 --- a/docs/versioned_docs/version-2.9.4/setup/helm.md +++ b/docs/versioned_docs/version-2.9.4/setup/helm.md @@ -33,4 +33,20 @@ For more information about the ToolJet database, you can visit [here](/docs/tool If you plan to use this feature, you need to set up and deploy the PostgREST server, which facilitates querying the ToolJet Database. -To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. \ No newline at end of file +To enable the ToolJet database, please set the environment variable `ENABLE_TOOLJET_DB` to true in the `values.yaml` file. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.4/setup/heroku.md b/docs/versioned_docs/version-2.9.4/setup/heroku.md index 80e14d2c06..eeafb5aa46 100644 --- a/docs/versioned_docs/version-2.9.4/setup/heroku.md +++ b/docs/versioned_docs/version-2.9.4/setup/heroku.md @@ -143,3 +143,19 @@ Please install Heroku CLI on your local machine. Please refer Heroku CLI install Please enter the below env variables in the Tooljet application, under the setting tab. You can also refer environment variable [**here**](/docs/setup/env-vars#tooljet-database). + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.4/setup/kubernetes-aks.md b/docs/versioned_docs/version-2.9.4/setup/kubernetes-aks.md index 7c87caa19d..0dc295d422 100644 --- a/docs/versioned_docs/version-2.9.4/setup/kubernetes-aks.md +++ b/docs/versioned_docs/version-2.9.4/setup/kubernetes-aks.md @@ -53,3 +53,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/AKS/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.4/setup/kubernetes-gke.md b/docs/versioned_docs/version-2.9.4/setup/kubernetes-gke.md index af86339fec..2fd124631d 100644 --- a/docs/versioned_docs/version-2.9.4/setup/kubernetes-gke.md +++ b/docs/versioned_docs/version-2.9.4/setup/kubernetes-gke.md @@ -79,3 +79,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/GKE/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.4/setup/kubernetes.md b/docs/versioned_docs/version-2.9.4/setup/kubernetes.md index f3caf2b871..b3bd0050f2 100644 --- a/docs/versioned_docs/version-2.9.4/setup/kubernetes.md +++ b/docs/versioned_docs/version-2.9.4/setup/kubernetes.md @@ -61,3 +61,19 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` 2. Update ToolJet deployment with the appropriate env variables [here](https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/kubernetes/deployment.yaml) and apply the changes. + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.4/setup/openshift.md b/docs/versioned_docs/version-2.9.4/setup/openshift.md index 1cdb3dd674..28a318e14f 100644 --- a/docs/versioned_docs/version-2.9.4/setup/openshift.md +++ b/docs/versioned_docs/version-2.9.4/setup/openshift.md @@ -67,4 +67,20 @@ If you intend to use this feature, you'd have to set up and deploy PostgREST ser ``` https://raw.githubusercontent.com/ToolJet/ToolJet/main/deploy/openshift/postgrest.yaml -``` \ No newline at end of file +``` + +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. \ No newline at end of file diff --git a/docs/versioned_docs/version-2.9.4/setup/tooljet-subpath.md b/docs/versioned_docs/version-2.9.4/setup/tooljet-subpath.md index e05625d5d6..51c8a438ad 100644 --- a/docs/versioned_docs/version-2.9.4/setup/tooljet-subpath.md +++ b/docs/versioned_docs/version-2.9.4/setup/tooljet-subpath.md @@ -20,4 +20,20 @@ You'll need to setup the following environment variables if ToolJet installation See all **[Environment Variables](/docs/setup/env-vars)** here. ::: +## Upgrading to v2.24.3-ee2.10.2 + +Version v2.24.3-ee2.10.2 includes architectural changes and, hence, comes with new migrations. + +If this is a new installation of the application, you may start directly with version v2.24.3-ee2.10.2. This guide is not required for new installations. + +#### Prerequisites for Upgrading to the Latest Version: + +- It is **crucial to perform a comprehensive backup of your database** before starting the upgrade process to prevent data loss. + +- Ensure that your current version is v2.23.3-ee2.10.2 before upgrading. + +- Users on versions earlier than v2.23.3-ee2.10.2 must first upgrade to this version before proceeding to v2.24.3-ee2.10.2. + +For specific issues or questions, refer to our **[Slack](https://tooljet.slack.com/join/shared_invite/zt-25438diev-mJ6LIZpJevG0LXCEcL0NhQ#)**. + From c970200974358682435d8574da91a3055a876e5b Mon Sep 17 00:00:00 2001 From: Karan Rathod Date: Tue, 5 Dec 2023 14:48:40 +0530 Subject: [PATCH 54/63] add connection string method (#8233) --- docs/docs/data-sources/mongodb.md | 18 ++++++++++++++++-- .../mongo-db/mongodb-connection-string.png | Bin 0 -> 113387 bytes 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 docs/static/img/datasource-reference/mongo-db/mongodb-connection-string.png diff --git a/docs/docs/data-sources/mongodb.md b/docs/docs/data-sources/mongodb.md index 8a4dea7b16..af4c93353c 100644 --- a/docs/docs/data-sources/mongodb.md +++ b/docs/docs/data-sources/mongodb.md @@ -7,11 +7,11 @@ title: MongoDB ToolJet can connect to MongoDB to read and write data. -## Connection +## Manual Connection Please make sure the host/ip of the database is accessible from your VPC if you have self-hosted ToolJet. If you are using ToolJet cloud, please whitelist our IP. -To establish a connection with the MongoDB data source, click on the `+Add new data source` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. +To establish a manual connection with the MongoDB data source, click on the `+Add new data source` button located on the query panel or navigate to the [Data Sources](https://docs.tooljet.com/docs/data-sources/overview) page from the ToolJet dashboard. ToolJet requires the following to connect to your MongoDB. @@ -26,6 +26,20 @@ It is recommended to create a new MongoDB user so that you can control the acces Click on 'Test connection' button to verify if the credentials are correct and that the database is accessible to ToolJet server. Click on 'Save' button to save the data source. +## Connect Using Connecting String + +You can also use a **Connection String** by switching the method from the dropdown. You will be prompted to enter the details of your MongoDB connection. + +The primary piece of information you need here is your MongoDB connection string. The connection string typically looks like this: +`mongodb+srv://${username}:${password}@${cluster}/{database}`. + +For example: `mongodb+srv://tooljettest:fakepassword@cluster0.urul7.mongodb.net/hrms` + +ToolJet - Mongo connection + +Make sure to replace username, password, cluster, and database with your actual MongoDB details. If your MongoDB instance requires additional connection options, you can usually append these options to the connection string. + + ## Querying MongoDB Click on `+` button of the query manager at the bottom panel of the editor and select the database added in the previous step as the data source. Select the operation that you want to perform and click 'Save' to save the query. diff --git a/docs/static/img/datasource-reference/mongo-db/mongodb-connection-string.png b/docs/static/img/datasource-reference/mongo-db/mongodb-connection-string.png new file mode 100644 index 0000000000000000000000000000000000000000..cdd334c0dc3f4d3c9cec7afac694505cb0f71e5b GIT binary patch literal 113387 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�{}S#vF;WRlrxEtRm! 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
    _I+bV9XKnUnAmScTUC+KRDQ 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 Date: Tue, 5 Dec 2023 14:48:53 +0530 Subject: [PATCH 55/63] [docs]:update workspace overview page (#8158) * update workspace overview page * remove outdated points --- .../workspaces/workspace_overview.md | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/docs/docs/org-management/workspaces/workspace_overview.md b/docs/docs/org-management/workspaces/workspace_overview.md index 9f0bcd19e3..6b2eb0a91e 100644 --- a/docs/docs/org-management/workspaces/workspace_overview.md +++ b/docs/docs/org-management/workspaces/workspace_overview.md @@ -5,7 +5,7 @@ title: 'Workspace: Overview' # Workspace: Overview -User can create their own workspaces, user who created workspace will be having admin privileges for the workspace. +The user who creates the workspace will automatically be assigned as its administrator.
    @@ -27,16 +27,15 @@ User can create their own workspaces, user who created workspace will be having Please check the detailed doc on **[Permissions](/docs/org-management/permissions)**. ::: -- The administrator can manage [users and groups](/docs/tutorial/manage-users-groups) of each workspace -- Applications and settings can not be shared between workspaces -- A user authorised to login to ToolJet will not have access to all workspaces, Users should be invited or signed up to a workspace to log-in to it. -- When Multi-Workspace feature is enabled, user should login with username and password to log in to Tooljet. -- Administrator can configure authentication methods for their workspaces. +- Administrators can manage [users and groups](/docs/tutorial/manage-users-groups) of each workspace. +- Applications and settings cannot be shared between workspaces. +- Users authorised to login to ToolJet will not have access to all workspaces. Users must be invited to or sign up for a workspace before they can log in. +- When the Multi-Workspace feature is enabled, users must log in with a username and password. +- Administrators can configure authentication methods for their workspaces. - If password login is enabled, switching to the workspace will happen without any other authorization since the user is already authorized with password login. -- User logged in to Tooljet and trying to switch to a workspace where SSO is enabled and password login is disabled, will be redirected to workspace login page and enabled SSO options will be shown -- User can directly login to a workspace using workspace login URL, Administrator can view the URL **Manage SSO -> General Settings -> Login URL**. +- If a user is logged into ToolJet and switches to a workspace that only uses Single Sign-On (SSO), the user will be sent to a login page to select an SSO option. +- Users can directly login to a workspace using workspace login URL. Administrators can view the URL in the Workspace Settings under **SSO -> General Settings -> Login URL**. -### When disabled (Super Admin) +### Disabling Workspace Creation (Super Admin) - Only **[Super Admins](/docs/Enterprise/superadmin#restrict-creation-of-personal-workspace-of-users)** can disable the option for creating personal workspaces for a user. -- If creating personal workspaces is disabled, Create workspace feature won’t be available. -- No separate login page for workspace and SSO configured for the workspace will be reflected to the main login page/login. \ No newline at end of file +- If the option to make personal workspaces is turned off for a user, the user won't be able to create new workspaces. From 5317466cc548222b235d216735f75327ff1b6057 Mon Sep 17 00:00:00 2001 From: Midhun Kumar E Date: Thu, 7 Dec 2023 17:56:00 +0530 Subject: [PATCH 56/63] Marketplace 1.5 automation fix for Appbuilder (#8257) * Fix labels of component properties * Fix labels of component properties (table) * Fix inspector urlparms creation * Revert button spec changes * Fix table regression --- cypress-tests/cypress/constants/texts/button.js | 4 ++-- cypress-tests/cypress/constants/texts/common.js | 8 ++++---- cypress-tests/cypress/constants/texts/datePicker.js | 2 +- cypress-tests/cypress/constants/texts/multiselect.js | 2 +- .../cypress/e2e/editor/inspectorHappypath.cy.js | 9 +++++++-- .../cypress/e2e/editor/widget/modalHappyPath.cy.js | 2 +- .../cypress/e2e/editor/widget/tableRegression.cy.js | 12 ++++++------ 7 files changed, 22 insertions(+), 17 deletions(-) diff --git a/cypress-tests/cypress/constants/texts/button.js b/cypress-tests/cypress/constants/texts/button.js index 9d2b3e4942..bc1aebacd0 100644 --- a/cypress-tests/cypress/constants/texts/button.js +++ b/cypress-tests/cypress/constants/texts/button.js @@ -1,8 +1,8 @@ export const buttonText = { defaultWidgetText: "Button", defaultWidgetName: "button1", - buttonTextLabel: "Button Text", - loadingState: "Loading State", + buttonTextLabel: "Button text", + loadingState: "Loading state", buttonDocumentationLink: "Read documentation for Button", backgroundColor: "Background Color", textColor: "Text color", diff --git a/cypress-tests/cypress/constants/texts/common.js b/cypress-tests/cypress/constants/texts/common.js index 9e2604e1eb..1faff84416 100644 --- a/cypress-tests/cypress/constants/texts/common.js +++ b/cypress-tests/cypress/constants/texts/common.js @@ -196,13 +196,13 @@ export const commonWidgetText = { parameterShowOnMobile: "Show on mobile", parameterVisibility: "Visibility", parameterDisable: "Disable", - parameterBorderRadius: "Border Radius", + parameterBorderRadius: "Border radius", borderRadiusInput: ["{{", "20}}"], parameterOptionLabels: "Option labels", - parameterBoxShadow: "Box Shadow", + parameterBoxShadow: "Box shadow", boxShadowDefaultValue: "#00000040", parameterOptionvalues: "Option values", - boxShadowColor: "Box Shadow Color", + boxShadowColor: "Box shadow Color", boxShadowFxValue: "-5px 6px 5px 8px #ee121240", codeMirrorLabelTrue: "{{true}}", @@ -213,7 +213,7 @@ export const commonWidgetText = { addEventHandlerLink: "New event handler", inspectorComponentLabel: "components", componentValueLabel: "Value", - labelDefaultValue: "Default Value", + labelDefaultValue: "Default value", parameterLabel: "Label", labelMinimumValue: "Minimum value", labelMaximumValue: "Maximum value", diff --git a/cypress-tests/cypress/constants/texts/datePicker.js b/cypress-tests/cypress/constants/texts/datePicker.js index be2ea22cdc..3234f21a0f 100644 --- a/cypress-tests/cypress/constants/texts/datePicker.js +++ b/cypress-tests/cypress/constants/texts/datePicker.js @@ -7,7 +7,7 @@ export const datePickerText = { }, datepicker1: "datepicker1", - labelDefaultValue: "Default Value", + labelDefaultValue: "Default value", labelformat: "Format", labelEnableDateSection: "Enable date selection?", labelEnableTimeSection: "Enable time selection?", diff --git a/cypress-tests/cypress/constants/texts/multiselect.js b/cypress-tests/cypress/constants/texts/multiselect.js index 6d277e80bb..cf64cd67ec 100644 --- a/cypress-tests/cypress/constants/texts/multiselect.js +++ b/cypress-tests/cypress/constants/texts/multiselect.js @@ -5,5 +5,5 @@ export const multiselectText = { noEventsMessage: "No event handlers", dropdwonOptionSelectAll: "Select All", - enableSelectAllOptions: "Enable select All option", + enableSelectAllOptions: "Enable select all option", }; diff --git a/cypress-tests/cypress/e2e/editor/inspectorHappypath.cy.js b/cypress-tests/cypress/e2e/editor/inspectorHappypath.cy.js index 0008418468..f4ec0c005a 100644 --- a/cypress-tests/cypress/e2e/editor/inspectorHappypath.cy.js +++ b/cypress-tests/cypress/e2e/editor/inspectorHappypath.cy.js @@ -82,9 +82,14 @@ describe("Editor- Inspector", () => { cy.get('[data-cy="switch-page-label-and-input"] > .select-search') .click() .type("home{enter}"); + cy.get('[data-cy="button-add-query-param"]').click(); - cy.wait(1000); - cy.get('[data-cy="button-add-query-param"]').click(); + cy.wait(3000); + cy.get("body").then(($body) => { + if ($body.find('[data-cy="query-param-key-input-field"]').length == 0) { + cy.get('[data-cy="button-add-query-param"]').click(); + } + }); addSupportCSAData("query-param-key", "key"); addSupportCSAData("query-param-value", "value"); diff --git a/cypress-tests/cypress/e2e/editor/widget/modalHappyPath.cy.js b/cypress-tests/cypress/e2e/editor/widget/modalHappyPath.cy.js index 96cf357270..47d0af1451 100644 --- a/cypress-tests/cypress/e2e/editor/widget/modalHappyPath.cy.js +++ b/cypress-tests/cypress/e2e/editor/widget/modalHappyPath.cy.js @@ -326,7 +326,7 @@ describe("Modal", () => { ); cy.get("#inspector-tab-properties").click(); - typeOnFx("Loading State", "{{components.toggleswitch3.value"); + typeOnFx("Loading state", "{{components.toggleswitch3.value"); cy.get("[data-cy='modal-header']").realClick(); typeOnFx("Hide title bar", "{{components.toggleswitch4.value"); diff --git a/cypress-tests/cypress/e2e/editor/widget/tableRegression.cy.js b/cypress-tests/cypress/e2e/editor/widget/tableRegression.cy.js index f08a07b469..df5950f0c0 100644 --- a/cypress-tests/cypress/e2e/editor/widget/tableRegression.cy.js +++ b/cypress-tests/cypress/e2e/editor/widget/tableRegression.cy.js @@ -262,7 +262,7 @@ describe("Table", () => { cy.get('[data-cy="label-action-button-text"]').verifyVisibleElement( "have.text", - "Button Text" + "Button text" ); cy.get('[data-cy="action-button-text-input-field"]').type( "{selectAll}{backspace}FakeName1" @@ -273,7 +273,7 @@ describe("Table", () => { ); cy.get('[data-cy="label-action-button-position"]').verifyVisibleElement( "have.text", - "Button Position" + "Button position" ); // dropdown_type cy.forceClickOnCanvas(); cy.waitForAutoSave(); @@ -351,7 +351,7 @@ describe("Table", () => { cy.get('[data-index="0"]>.select-search-option:eq(1)').realClick(); verifyAndEnterColumnOptionInput("key", "name"); verifyAndEnterColumnOptionInput("Text color", "red"); - verifyAndEnterColumnOptionInput("Cell Background Color", "yellow"); + verifyAndEnterColumnOptionInput("Cell Background color", "yellow"); cy.get( '[data-cy="input-and-label-cell-background-color"] > .form-label' ).click(); @@ -647,7 +647,7 @@ describe("Table", () => { // cy.get("[data-cy='border-radius-fx-button']:eq(1)").click(); verifyAndModifyParameter( - "Action Button Radius", + "Action button radius", commonWidgetText.borderRadiusInput ); @@ -668,7 +668,7 @@ describe("Table", () => { cy.get(commonWidgetSelector.buttonStylesEditorSideBar).click(); verifyAndModifyParameter( - "Border Radius", + "Border radius", commonWidgetText.borderRadiusInput ); cy.get(commonWidgetSelector.buttonCloseEditorSideBar).click(); @@ -844,7 +844,7 @@ describe("Table", () => { // cy.get('[data-cy="show-search-box-toggle-button"]').click(); // verifyAndModifyToggleFx("Server-side search", " ", true); - verifyAndModifyToggleFx("Loading State", "{{false}}", true); + verifyAndModifyToggleFx("Loading state", "{{false}}", true); }); it("should verify download", () => { From 5b5b354842fb0c0aa0aabe862065bb84bf1d2eaa Mon Sep 17 00:00:00 2001 From: Akshay Date: Thu, 7 Dec 2023 18:00:35 +0530 Subject: [PATCH 57/63] Chore: Snowflake sdk update (#8179) * update snowflake sdk --- plugins/package-lock.json | 5109 ++++++++++++++--------- plugins/packages/snowflake/lib/index.ts | 10 +- plugins/packages/snowflake/package.json | 4 +- 3 files changed, 3081 insertions(+), 2042 deletions(-) diff --git a/plugins/package-lock.json b/plugins/package-lock.json index 9492e0a4a8..30ca9b0f36 100644 --- a/plugins/package-lock.json +++ b/plugins/package-lock.json @@ -188,33 +188,6 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, - "node_modules/@aws-sdk/chunked-blob-reader": { - "version": "3.188.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader/-/chunked-blob-reader-3.188.0.tgz", - "integrity": "sha512-zkPRFZZPL3eH+kH86LDYYXImiClA1/sW60zYOjse9Pgka+eDJlvBN6hcYxwDEKjcwATYiSRR1aVQHcfCinlGXg==", - "dependencies": { - "tslib": "^2.3.1" - } - }, - "node_modules/@aws-sdk/chunked-blob-reader-native": { - "version": "3.208.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.208.0.tgz", - "integrity": "sha512-JeOZ95PW+fJ6bbuqPySYqLqHk1n4+4ueEEraJsiUrPBV0S1ZtyvOGHcnGztKUjr2PYNaiexmpWuvUve9K12HRA==", - "dependencies": { - "@aws-sdk/util-base64": "3.208.0", - "tslib": "^2.3.1" - } - }, - "node_modules/@aws-sdk/chunked-blob-reader-native/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/@aws-sdk/chunked-blob-reader/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, "node_modules/@aws-sdk/client-cognito-identity": { "version": "3.289.0", "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.289.0.tgz", @@ -1005,69 +978,524 @@ } }, "node_modules/@aws-sdk/client-s3": { - "version": "3.264.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.264.0.tgz", - "integrity": "sha512-YhpbK+vlqvhIpoBLl/e/qL2f7KOE8WZ2Wq/Nyj7/aGhSz9MRqXCOQ7HPeox6szym705JYC29jwHqvIEr3ybE2Q==", + "version": "3.454.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.454.0.tgz", + "integrity": "sha512-vBx4iB1c4mEz+twMnl6angC1/IpnmXaT8L6Kl9uNiurFsb6N4tCyrJ24kECdsOSTM7ePXvE1fKst8zAh6MW5ZA==", "dependencies": { "@aws-crypto/sha1-browser": "3.0.0", "@aws-crypto/sha256-browser": "3.0.0", "@aws-crypto/sha256-js": "3.0.0", - "@aws-sdk/client-sts": "3.264.0", - "@aws-sdk/config-resolver": "3.259.0", - "@aws-sdk/credential-provider-node": "3.264.0", - "@aws-sdk/eventstream-serde-browser": "3.258.0", - "@aws-sdk/eventstream-serde-config-resolver": "3.257.0", - "@aws-sdk/eventstream-serde-node": "3.258.0", - "@aws-sdk/fetch-http-handler": "3.257.0", - "@aws-sdk/hash-blob-browser": "3.257.0", - "@aws-sdk/hash-node": "3.257.0", - "@aws-sdk/hash-stream-node": "3.257.0", - "@aws-sdk/invalid-dependency": "3.257.0", - "@aws-sdk/md5-js": "3.258.0", - "@aws-sdk/middleware-bucket-endpoint": "3.259.0", - "@aws-sdk/middleware-content-length": "3.257.0", - "@aws-sdk/middleware-endpoint": "3.264.0", - "@aws-sdk/middleware-expect-continue": "3.257.0", - "@aws-sdk/middleware-flexible-checksums": "3.259.0", - "@aws-sdk/middleware-host-header": "3.257.0", - "@aws-sdk/middleware-location-constraint": "3.257.0", - "@aws-sdk/middleware-logger": "3.257.0", - "@aws-sdk/middleware-recursion-detection": "3.257.0", - "@aws-sdk/middleware-retry": "3.259.0", - "@aws-sdk/middleware-sdk-s3": "3.257.0", - "@aws-sdk/middleware-serde": "3.257.0", - "@aws-sdk/middleware-signing": "3.257.0", - "@aws-sdk/middleware-ssec": "3.257.0", - "@aws-sdk/middleware-stack": "3.257.0", - "@aws-sdk/middleware-user-agent": "3.257.0", - "@aws-sdk/node-config-provider": "3.259.0", - "@aws-sdk/node-http-handler": "3.257.0", - "@aws-sdk/protocol-http": "3.257.0", - "@aws-sdk/signature-v4-multi-region": "3.264.0", - "@aws-sdk/smithy-client": "3.261.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/url-parser": "3.257.0", - "@aws-sdk/util-base64": "3.208.0", - "@aws-sdk/util-body-length-browser": "3.188.0", - "@aws-sdk/util-body-length-node": "3.208.0", - "@aws-sdk/util-defaults-mode-browser": "3.261.0", - "@aws-sdk/util-defaults-mode-node": "3.261.0", - "@aws-sdk/util-endpoints": "3.257.0", - "@aws-sdk/util-retry": "3.257.0", - "@aws-sdk/util-stream-browser": "3.258.0", - "@aws-sdk/util-stream-node": "3.257.0", - "@aws-sdk/util-user-agent-browser": "3.257.0", - "@aws-sdk/util-user-agent-node": "3.259.0", - "@aws-sdk/util-utf8": "3.254.0", - "@aws-sdk/util-waiter": "3.257.0", - "@aws-sdk/xml-builder": "3.201.0", - "fast-xml-parser": "4.0.11", - "tslib": "^2.3.1" + "@aws-sdk/client-sts": "3.454.0", + "@aws-sdk/core": "3.451.0", + "@aws-sdk/credential-provider-node": "3.451.0", + "@aws-sdk/middleware-bucket-endpoint": "3.451.0", + "@aws-sdk/middleware-expect-continue": "3.451.0", + "@aws-sdk/middleware-flexible-checksums": "3.451.0", + "@aws-sdk/middleware-host-header": "3.451.0", + "@aws-sdk/middleware-location-constraint": "3.451.0", + "@aws-sdk/middleware-logger": "3.451.0", + "@aws-sdk/middleware-recursion-detection": "3.451.0", + "@aws-sdk/middleware-sdk-s3": "3.451.0", + "@aws-sdk/middleware-signing": "3.451.0", + "@aws-sdk/middleware-ssec": "3.451.0", + "@aws-sdk/middleware-user-agent": "3.451.0", + "@aws-sdk/region-config-resolver": "3.451.0", + "@aws-sdk/signature-v4-multi-region": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-endpoints": "3.451.0", + "@aws-sdk/util-user-agent-browser": "3.451.0", + "@aws-sdk/util-user-agent-node": "3.451.0", + "@aws-sdk/xml-builder": "3.310.0", + "@smithy/config-resolver": "^2.0.18", + "@smithy/eventstream-serde-browser": "^2.0.13", + "@smithy/eventstream-serde-config-resolver": "^2.0.13", + "@smithy/eventstream-serde-node": "^2.0.13", + "@smithy/fetch-http-handler": "^2.2.6", + "@smithy/hash-blob-browser": "^2.0.14", + "@smithy/hash-node": "^2.0.15", + "@smithy/hash-stream-node": "^2.0.15", + "@smithy/invalid-dependency": "^2.0.13", + "@smithy/md5-js": "^2.0.15", + "@smithy/middleware-content-length": "^2.0.15", + "@smithy/middleware-endpoint": "^2.2.0", + "@smithy/middleware-retry": "^2.0.20", + "@smithy/middleware-serde": "^2.0.13", + "@smithy/middleware-stack": "^2.0.7", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/node-http-handler": "^2.1.9", + "@smithy/protocol-http": "^3.0.9", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "@smithy/util-base64": "^2.0.1", + "@smithy/util-body-length-browser": "^2.0.0", + "@smithy/util-body-length-node": "^2.1.0", + "@smithy/util-defaults-mode-browser": "^2.0.19", + "@smithy/util-defaults-mode-node": "^2.0.25", + "@smithy/util-endpoints": "^1.0.4", + "@smithy/util-retry": "^2.0.6", + "@smithy/util-stream": "^2.0.20", + "@smithy/util-utf8": "^2.0.2", + "@smithy/util-waiter": "^2.0.13", + "fast-xml-parser": "4.2.5", + "tslib": "^2.5.0" }, "engines": { "node": ">=14.0.0" } }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/client-sso": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.451.0.tgz", + "integrity": "sha512-KkYSke3Pdv3MfVH/5fT528+MKjMyPKlcLcd4zQb0x6/7Bl7EHrPh1JZYjzPLHelb+UY5X0qN8+cb8iSu1eiwIQ==", + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.451.0", + "@aws-sdk/middleware-host-header": "3.451.0", + "@aws-sdk/middleware-logger": "3.451.0", + "@aws-sdk/middleware-recursion-detection": "3.451.0", + "@aws-sdk/middleware-user-agent": "3.451.0", + "@aws-sdk/region-config-resolver": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-endpoints": "3.451.0", + "@aws-sdk/util-user-agent-browser": "3.451.0", + "@aws-sdk/util-user-agent-node": "3.451.0", + "@smithy/config-resolver": "^2.0.18", + "@smithy/fetch-http-handler": "^2.2.6", + "@smithy/hash-node": "^2.0.15", + "@smithy/invalid-dependency": "^2.0.13", + "@smithy/middleware-content-length": "^2.0.15", + "@smithy/middleware-endpoint": "^2.2.0", + "@smithy/middleware-retry": "^2.0.20", + "@smithy/middleware-serde": "^2.0.13", + "@smithy/middleware-stack": "^2.0.7", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/node-http-handler": "^2.1.9", + "@smithy/protocol-http": "^3.0.9", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "@smithy/util-base64": "^2.0.1", + "@smithy/util-body-length-browser": "^2.0.0", + "@smithy/util-body-length-node": "^2.1.0", + "@smithy/util-defaults-mode-browser": "^2.0.19", + "@smithy/util-defaults-mode-node": "^2.0.25", + "@smithy/util-endpoints": "^1.0.4", + "@smithy/util-retry": "^2.0.6", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/client-sts": { + "version": "3.454.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.454.0.tgz", + "integrity": "sha512-0fDvr8WeB6IYO8BUCzcivWmahgGl/zDbaYfakzGnt4mrl5ztYaXE875WI6b7+oFcKMRvN+KLvwu5TtyFuNY+GQ==", + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.451.0", + "@aws-sdk/credential-provider-node": "3.451.0", + "@aws-sdk/middleware-host-header": "3.451.0", + "@aws-sdk/middleware-logger": "3.451.0", + "@aws-sdk/middleware-recursion-detection": "3.451.0", + "@aws-sdk/middleware-sdk-sts": "3.451.0", + "@aws-sdk/middleware-signing": "3.451.0", + "@aws-sdk/middleware-user-agent": "3.451.0", + "@aws-sdk/region-config-resolver": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-endpoints": "3.451.0", + "@aws-sdk/util-user-agent-browser": "3.451.0", + "@aws-sdk/util-user-agent-node": "3.451.0", + "@smithy/config-resolver": "^2.0.18", + "@smithy/fetch-http-handler": "^2.2.6", + "@smithy/hash-node": "^2.0.15", + "@smithy/invalid-dependency": "^2.0.13", + "@smithy/middleware-content-length": "^2.0.15", + "@smithy/middleware-endpoint": "^2.2.0", + "@smithy/middleware-retry": "^2.0.20", + "@smithy/middleware-serde": "^2.0.13", + "@smithy/middleware-stack": "^2.0.7", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/node-http-handler": "^2.1.9", + "@smithy/protocol-http": "^3.0.9", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "@smithy/util-base64": "^2.0.1", + "@smithy/util-body-length-browser": "^2.0.0", + "@smithy/util-body-length-node": "^2.1.0", + "@smithy/util-defaults-mode-browser": "^2.0.19", + "@smithy/util-defaults-mode-node": "^2.0.25", + "@smithy/util-endpoints": "^1.0.4", + "@smithy/util-retry": "^2.0.6", + "@smithy/util-utf8": "^2.0.2", + "fast-xml-parser": "4.2.5", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/credential-provider-env": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.451.0.tgz", + "integrity": "sha512-9dAav7DcRgaF7xCJEQR5ER9ErXxnu/tdnVJ+UPmb1NPeIZdESv1A3lxFDEq1Fs8c4/lzAj9BpshGyJVIZwZDKg==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.451.0.tgz", + "integrity": "sha512-TySt64Ci5/ZbqFw1F9Z0FIGvYx5JSC9e6gqDnizIYd8eMnn8wFRUscRrD7pIHKfrhvVKN5h0GdYovmMO/FMCBw==", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.451.0", + "@aws-sdk/credential-provider-process": "3.451.0", + "@aws-sdk/credential-provider-sso": "3.451.0", + "@aws-sdk/credential-provider-web-identity": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@smithy/credential-provider-imds": "^2.0.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/shared-ini-file-loader": "^2.0.6", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.451.0.tgz", + "integrity": "sha512-AEwM1WPyxUdKrKyUsKyFqqRFGU70e4qlDyrtBxJnSU9NRLZI8tfEZ67bN7fHSxBUBODgDXpMSlSvJiBLh5/3pw==", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.451.0", + "@aws-sdk/credential-provider-ini": "3.451.0", + "@aws-sdk/credential-provider-process": "3.451.0", + "@aws-sdk/credential-provider-sso": "3.451.0", + "@aws-sdk/credential-provider-web-identity": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@smithy/credential-provider-imds": "^2.0.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/shared-ini-file-loader": "^2.0.6", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/credential-provider-process": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.451.0.tgz", + "integrity": "sha512-HQywSdKeD5PErcLLnZfSyCJO+6T+ZyzF+Lm/QgscSC+CbSUSIPi//s15qhBRVely/3KBV6AywxwNH+5eYgt4lQ==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/shared-ini-file-loader": "^2.0.6", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.451.0.tgz", + "integrity": "sha512-Usm/N51+unOt8ID4HnQzxIjUJDrkAQ1vyTOC0gSEEJ7h64NSSPGD5yhN7il5WcErtRd3EEtT1a8/GTC5TdBctg==", + "dependencies": { + "@aws-sdk/client-sso": "3.451.0", + "@aws-sdk/token-providers": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/shared-ini-file-loader": "^2.0.6", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.451.0.tgz", + "integrity": "sha512-Xtg3Qw65EfDjWNG7o2xD6sEmumPfsy3WDGjk2phEzVg8s7hcZGxf5wYwe6UY7RJvlEKrU0rFA+AMn6Hfj5oOzg==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.451.0.tgz", + "integrity": "sha512-j8a5jAfhWmsK99i2k8oR8zzQgXrsJtgrLxc3js6U+525mcZytoiDndkWTmD5fjJ1byU1U2E5TaPq+QJeDip05Q==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-logger": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.451.0.tgz", + "integrity": "sha512-0kHrYEyVeB2QBfP6TfbI240aRtatLZtcErJbhpiNUb+CQPgEL3crIjgVE8yYiJumZ7f0jyjo8HLPkwD1/2APaw==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.451.0.tgz", + "integrity": "sha512-J6jL6gJ7orjHGM70KDRcCP7so/J2SnkN4vZ9YRLTeeZY6zvBuHDjX8GCIgSqPn/nXFXckZO8XSnA7u6+3TAT0w==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-sdk-s3": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.451.0.tgz", + "integrity": "sha512-XF4Cw8HrYUwGLKOqKtWs6ss1WXoxvQUcgGLACGSqn9a0p51446NiS5671x7qJUsfBuygdKlIKcOc8pPr9a+5Ow==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-arn-parser": "3.310.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-sdk-sts": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.451.0.tgz", + "integrity": "sha512-UJ6UfVUEgp0KIztxpAeelPXI5MLj9wUtUCqYeIMP7C1ZhoEMNm3G39VLkGN43dNhBf1LqjsV9jkKMZbVfYXuwg==", + "dependencies": { + "@aws-sdk/middleware-signing": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-signing": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.451.0.tgz", + "integrity": "sha512-s5ZlcIoLNg1Huj4Qp06iKniE8nJt/Pj1B/fjhWc6cCPCM7XJYUCejCnRh6C5ZJoBEYodjuwZBejPc1Wh3j+znA==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/signature-v4": "^2.0.0", + "@smithy/types": "^2.5.0", + "@smithy/util-middleware": "^2.0.6", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/middleware-user-agent": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.451.0.tgz", + "integrity": "sha512-8NM/0JiKLNvT9wtAQVl1DFW0cEO7OvZyLSUBLNLTHqyvOZxKaZ8YFk7d8PL6l76LeUKRxq4NMxfZQlUIRe0eSA==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-endpoints": "3.451.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/signature-v4-multi-region": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.451.0.tgz", + "integrity": "sha512-qQKY7/txeNUTLyRL3WxUWEwaZ5sf76EIZgu9kLaR96cAYSxwQi/qQB3ijbfD6u7sJIA8aROMxeYK0VmRsQg0CA==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/signature-v4": "^2.0.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/token-providers": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.451.0.tgz", + "integrity": "sha512-ij1L5iUbn6CwxVOT1PG4NFjsrsKN9c4N1YEM0lkl6DwmaNOscjLKGSNyj9M118vSWsOs1ZDbTwtj++h0O/BWrQ==", + "dependencies": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/middleware-host-header": "3.451.0", + "@aws-sdk/middleware-logger": "3.451.0", + "@aws-sdk/middleware-recursion-detection": "3.451.0", + "@aws-sdk/middleware-user-agent": "3.451.0", + "@aws-sdk/region-config-resolver": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-endpoints": "3.451.0", + "@aws-sdk/util-user-agent-browser": "3.451.0", + "@aws-sdk/util-user-agent-node": "3.451.0", + "@smithy/config-resolver": "^2.0.18", + "@smithy/fetch-http-handler": "^2.2.6", + "@smithy/hash-node": "^2.0.15", + "@smithy/invalid-dependency": "^2.0.13", + "@smithy/middleware-content-length": "^2.0.15", + "@smithy/middleware-endpoint": "^2.2.0", + "@smithy/middleware-retry": "^2.0.20", + "@smithy/middleware-serde": "^2.0.13", + "@smithy/middleware-stack": "^2.0.7", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/node-http-handler": "^2.1.9", + "@smithy/property-provider": "^2.0.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/shared-ini-file-loader": "^2.0.6", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "@smithy/util-base64": "^2.0.1", + "@smithy/util-body-length-browser": "^2.0.0", + "@smithy/util-body-length-node": "^2.1.0", + "@smithy/util-defaults-mode-browser": "^2.0.19", + "@smithy/util-defaults-mode-node": "^2.0.25", + "@smithy/util-endpoints": "^1.0.4", + "@smithy/util-retry": "^2.0.6", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/util-arn-parser": { + "version": "3.310.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.310.0.tgz", + "integrity": "sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/util-endpoints": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.451.0.tgz", + "integrity": "sha512-giqLGBTnRIcKkDqwU7+GQhKbtJ5Ku35cjGQIfMyOga6pwTBUbaK0xW1Sdd8sBQ1GhApscnChzI9o/R9x0368vw==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/util-endpoints": "^1.0.4", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.451.0.tgz", + "integrity": "sha512-Ws5mG3J0TQifH7OTcMrCTexo7HeSAc3cBgjfhS/ofzPUzVCtsyg0G7I6T7wl7vJJETix2Kst2cpOsxygPgPD9w==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/types": "^2.5.0", + "bowser": "^2.11.0", + "tslib": "^2.5.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.451.0.tgz", + "integrity": "sha512-TBzm6P+ql4mkGFAjPlO1CI+w3yUT+NulaiALjl/jNX/nnUp6HsJsVxJf4nVFQTG5KRV0iqMypcs7I3KIhH+LmA==", + "dependencies": { + "@aws-sdk/types": "3.451.0", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/fast-xml-parser": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz", + "integrity": "sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==", + "funding": [ + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + }, + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ], + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, "node_modules/@aws-sdk/client-s3/node_modules/tslib": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", @@ -1288,6 +1716,23 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, + "node_modules/@aws-sdk/core": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.451.0.tgz", + "integrity": "sha512-SamWW2zHEf1ZKe3j1w0Piauryl8BQIlej0TBS18A4ACzhjhWXhCs13bO1S88LvPR5mBFXok3XOT6zPOnKDFktw==", + "dependencies": { + "@smithy/smithy-client": "^2.1.15", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/core/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, "node_modules/@aws-sdk/credential-provider-cognito-identity": { "version": "3.289.0", "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.289.0.tgz", @@ -2244,93 +2689,6 @@ "uuid": "dist/bin/uuid" } }, - "node_modules/@aws-sdk/eventstream-codec": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-codec/-/eventstream-codec-3.258.0.tgz", - "integrity": "sha512-DTd6aggICXOH74tBQEliwLbeoXRbQ3uROBWYl7DdrbAemzHACDFzPCXXa9MTJMZcq3Tva8/E/3bv1fXuU/xkAA==", - "dependencies": { - "@aws-crypto/crc32": "3.0.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-hex-encoding": "3.201.0", - "tslib": "^2.3.1" - } - }, - "node_modules/@aws-sdk/eventstream-codec/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/@aws-sdk/eventstream-serde-browser": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.258.0.tgz", - "integrity": "sha512-bRcNxDrBFd0UsrLh88kwpvGDHjVupZP3gPJ5b7wseCuuWJzp56/7hNI97IywgARta91rcaf4K147VxFkSNaVlw==", - "dependencies": { - "@aws-sdk/eventstream-serde-universal": "3.258.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/eventstream-serde-browser/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/@aws-sdk/eventstream-serde-config-resolver": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.257.0.tgz", - "integrity": "sha512-YbUETgkcFqPJmwcBozHbx3Xloh7mPk9SunNB+Ndy8egwV3L/jNZnEzZnPOtWbD10AXSuJvSbGQ8+l4FblRqZqw==", - "dependencies": { - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/eventstream-serde-config-resolver/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/@aws-sdk/eventstream-serde-node": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.258.0.tgz", - "integrity": "sha512-KvuitKB3fK1ZjWcB+U6d8JNv0WJtE1zvW5DXI/OabzaIR4i/LNis7469EwTsEkTqG3mV3wUa6cBA6kBSJWTVeA==", - "dependencies": { - "@aws-sdk/eventstream-serde-universal": "3.258.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/eventstream-serde-node/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/@aws-sdk/eventstream-serde-universal": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.258.0.tgz", - "integrity": "sha512-woHNrBp8YSIaf3mcRJA0SyKFnjeLX2fRudLZq9wd555Zz/U7f45AuZOpXlU66tIZiYJI1xm32VRSIYfpIwXI+A==", - "dependencies": { - "@aws-sdk/eventstream-codec": "3.258.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/eventstream-serde-universal/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, "node_modules/@aws-sdk/fetch-http-handler": { "version": "3.257.0", "resolved": "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.257.0.tgz", @@ -2348,22 +2706,6 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, - "node_modules/@aws-sdk/hash-blob-browser": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.257.0.tgz", - "integrity": "sha512-3Nrcci3pCCc0ZILMGa/oUMq9le6nhvgCoVxFy5skYs/mQu4QnA8HcK0u4bTueW41rBj0ZW6BHLk/2SmigIkjCQ==", - "dependencies": { - "@aws-sdk/chunked-blob-reader": "3.188.0", - "@aws-sdk/chunked-blob-reader-native": "3.208.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - } - }, - "node_modules/@aws-sdk/hash-blob-browser/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, "node_modules/@aws-sdk/hash-node": { "version": "3.257.0", "resolved": "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.257.0.tgz", @@ -2383,24 +2725,6 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, - "node_modules/@aws-sdk/hash-stream-node": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.257.0.tgz", - "integrity": "sha512-A24+EI0sO+IYO78sQPY4vVx7vzToc6XAobQqowmBJ6GXXILK72d3MR3NVbm0lmcS4Dh6MVZEFQD/DCyKvj2C7g==", - "dependencies": { - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-utf8": "3.254.0", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/hash-stream-node/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, "node_modules/@aws-sdk/invalid-dependency": { "version": "3.257.0", "resolved": "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.257.0.tgz", @@ -2431,40 +2755,50 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, - "node_modules/@aws-sdk/md5-js": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.258.0.tgz", - "integrity": "sha512-aLdZ43sEiT68p7YYPHwKsWU1WDC8Wf8UQfb4pzbvhYNgr5VxN46AtbWTKxLAqK2adKS4FnbyX2i66fINg2dHdw==", + "node_modules/@aws-sdk/middleware-bucket-endpoint": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.451.0.tgz", + "integrity": "sha512-KWyZ1JGnYz2QbHuJtYTP1BVnMOfVopR8rP8dTinVb/JR5HfAYz4imICJlJUbOYRjN7wpA3PrRI8dNRjrSBjWJg==", "dependencies": { - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-utf8": "3.254.0", - "tslib": "^2.3.1" + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-arn-parser": "3.310.0", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "@smithy/util-config-provider": "^2.0.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@aws-sdk/md5-js/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/@aws-sdk/middleware-bucket-endpoint": { - "version": "3.259.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.259.0.tgz", - "integrity": "sha512-eY4Bf7ZeiYK2c2XQ5IU0TDneEYSnZbaFk+ysgAkNmGoLKBhybXiKy7Dh8djB3uXeNtsZ+fZaazWmsU2kxf6Ntg==", + "node_modules/@aws-sdk/middleware-bucket-endpoint/node_modules/@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", "dependencies": { - "@aws-sdk/protocol-http": "3.257.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-arn-parser": "3.208.0", - "@aws-sdk/util-config-provider": "3.208.0", - "tslib": "^2.3.1" + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/middleware-bucket-endpoint/node_modules/@aws-sdk/util-arn-parser": { + "version": "3.310.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.310.0.tgz", + "integrity": "sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==", + "dependencies": { + "tslib": "^2.5.0" }, "engines": { "node": ">=14.0.0" } }, "node_modules/@aws-sdk/middleware-bucket-endpoint/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/@aws-sdk/middleware-content-length": { "version": "3.257.0", @@ -2508,44 +2842,70 @@ "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, "node_modules/@aws-sdk/middleware-expect-continue": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.257.0.tgz", - "integrity": "sha512-7HSRA2Ta0fTq9Ewznp6fYG7CYOoqr5TeqEhKL1HyFb5i6YmsCiz88JKNJTllD5O7uFcd7Td/fJ66pK4JttfaaQ==", + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.451.0.tgz", + "integrity": "sha512-vwG8o2Uk6biLDlOZnqXemsO4dS2HvrprUdxyouwu6hlzLFskg8nL122butn19JqXJKgcVLuSSLzT+xwqBWy2Rg==", "dependencies": { - "@aws-sdk/protocol-http": "3.257.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" + "@aws-sdk/types": "3.451.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/middleware-expect-continue/node_modules/@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" }, "engines": { "node": ">=14.0.0" } }, "node_modules/@aws-sdk/middleware-expect-continue/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/@aws-sdk/middleware-flexible-checksums": { - "version": "3.259.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.259.0.tgz", - "integrity": "sha512-DwY3+cWaONvzJSVYQncfX+ZnoPnLVA7LfgR0mrgcvVZJFrqCr1lJeUmJOmE2/kcOQefPfSbKB/L4BP6vg2EUMQ==", + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.451.0.tgz", + "integrity": "sha512-eOkpcC2zgAvqs1w7Yp5nsk9LBIj6qLU5kaZuZEBOiFbNKIrTnPo6dQuhgvDcKHD6Y5W/cUjSBiFMs/ROb5aoug==", "dependencies": { "@aws-crypto/crc32": "3.0.0", "@aws-crypto/crc32c": "3.0.0", - "@aws-sdk/is-array-buffer": "3.201.0", - "@aws-sdk/protocol-http": "3.257.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-utf8": "3.254.0", - "tslib": "^2.3.1" + "@aws-sdk/types": "3.451.0", + "@smithy/is-array-buffer": "^2.0.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/middleware-flexible-checksums/node_modules/@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" }, "engines": { "node": ">=14.0.0" } }, "node_modules/@aws-sdk/middleware-flexible-checksums/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/@aws-sdk/middleware-host-header": { "version": "3.257.0", @@ -2566,21 +2926,34 @@ "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, "node_modules/@aws-sdk/middleware-location-constraint": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.257.0.tgz", - "integrity": "sha512-pmm5rJR5aatXG0kC0KPBxkgoNn/ePcyVIYHGMEuJXRJm3ENy569QAH9UZeMFjprp3uuAbkqItQbY3MP8TYvuYA==", + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.451.0.tgz", + "integrity": "sha512-R4U2G7mybP0BMiQBJWTcB47g49F4PSXTiCsvMDp5WOEhpWvGQuO1ZIhTxCl5s5lgTSne063Os8W6KSdK2yG2TQ==", "dependencies": { - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" + "@aws-sdk/types": "3.451.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/middleware-location-constraint/node_modules/@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" }, "engines": { "node": ">=14.0.0" } }, "node_modules/@aws-sdk/middleware-location-constraint/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/@aws-sdk/middleware-logger": { "version": "3.257.0", @@ -2726,21 +3099,34 @@ "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, "node_modules/@aws-sdk/middleware-ssec": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.257.0.tgz", - "integrity": "sha512-YcZrKeZk/0bsFvnTqp2rcF+6BSmeLTA65ZtyNNP2hh7Imaxg3kAQcueOJBeK4YP/5nU7a1mtt/4Q8BqbIjc41g==", + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.451.0.tgz", + "integrity": "sha512-hDkeBUiRsvuDbvsPha0/uJHE680WDzjAOoE6ZnLBoWsw7ry+Bw1ULMj0sCmpBVrQ7Gpivi/6zbezhClVmt3ITw==", "dependencies": { - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" + "@aws-sdk/types": "3.451.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/middleware-ssec/node_modules/@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" }, "engines": { "node": ">=14.0.0" } }, "node_modules/@aws-sdk/middleware-ssec/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/@aws-sdk/middleware-stack": { "version": "3.257.0", @@ -2884,6 +3270,26 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, + "node_modules/@aws-sdk/region-config-resolver": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.451.0.tgz", + "integrity": "sha512-3iMf4OwzrFb4tAAmoROXaiORUk2FvSejnHIw/XHvf/jjR4EqGGF95NZP/n/MeFZMizJWVssrwS412GmoEyoqhg==", + "dependencies": { + "@smithy/node-config-provider": "^2.1.5", + "@smithy/types": "^2.5.0", + "@smithy/util-config-provider": "^2.0.0", + "@smithy/util-middleware": "^2.0.6", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/region-config-resolver/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, "node_modules/@aws-sdk/s3-request-presigner": { "version": "3.264.0", "resolved": "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.264.0.tgz", @@ -3306,43 +3712,6 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, - "node_modules/@aws-sdk/util-stream-browser": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.258.0.tgz", - "integrity": "sha512-MCAxHL3Hz/+eU4LZk0ZbLWAIUueH/jHpSbrloxZ3Dil2RL3w6NSJd5gE8zS7gs1B/eMcE600Brf5xSDR8kA5HA==", - "dependencies": { - "@aws-sdk/fetch-http-handler": "3.257.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-base64": "3.208.0", - "@aws-sdk/util-hex-encoding": "3.201.0", - "@aws-sdk/util-utf8": "3.254.0", - "tslib": "^2.3.1" - } - }, - "node_modules/@aws-sdk/util-stream-browser/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, - "node_modules/@aws-sdk/util-stream-node": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.257.0.tgz", - "integrity": "sha512-UlLEerQCNejNulYmGXm/4X463n8n21foA2d6kgJ4AUSMWWhoRBjfwrM4gI7tA30zh9U81d6xbUtoOQTqKVtMTw==", - "dependencies": { - "@aws-sdk/node-http-handler": "3.257.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-buffer-from": "3.208.0", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/util-stream-node/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, "node_modules/@aws-sdk/util-uri-escape": { "version": "3.201.0", "resolved": "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.201.0.tgz", @@ -3430,39 +3799,21 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" }, - "node_modules/@aws-sdk/util-waiter": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.257.0.tgz", - "integrity": "sha512-Fr6of3EDOcXVDs5534o7VsJMXdybB0uLy2LzeFAVSwGOY3geKhIquBAiUDqCVu9B+iTldrC0rQ9NIM7ZSpPG8w==", - "dependencies": { - "@aws-sdk/abort-controller": "3.257.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/util-waiter/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - }, "node_modules/@aws-sdk/xml-builder": { - "version": "3.201.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.201.0.tgz", - "integrity": "sha512-brRdB1wwMgjWEnOQsv7zSUhIQuh7DEicrfslAqHop4S4FtSI3GQAShpQqgOpMTNFYcpaWKmE/Y1MJmNY7xLCnw==", + "version": "3.310.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.310.0.tgz", + "integrity": "sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==", "dependencies": { - "tslib": "^2.3.1" + "tslib": "^2.5.0" }, "engines": { "node": ">=14.0.0" } }, "node_modules/@aws-sdk/xml-builder/node_modules/tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/@azure/abort-controller": { "version": "1.1.0", @@ -6780,6 +7131,870 @@ "@sinonjs/commons": "^1.7.0" } }, + "node_modules/@smithy/abort-controller": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.0.13.tgz", + "integrity": "sha512-eeOPD+GF9BzF/Mjy3PICLePx4l0f3rG/nQegQHRLTloN5p1lSJJNZsyn+FzDnW8P2AduragZqJdtKNCxXozB1Q==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/abort-controller/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/chunked-blob-reader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader/-/chunked-blob-reader-2.0.0.tgz", + "integrity": "sha512-k+J4GHJsMSAIQPChGBrjEmGS+WbPonCXesoqP9fynIqjn7rdOThdH8FAeCmokP9mxTYKQAKoHCLPzNlm6gh7Wg==", + "dependencies": { + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/chunked-blob-reader-native": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-2.0.1.tgz", + "integrity": "sha512-N2oCZRglhWKm7iMBu7S6wDzXirjAofi7tAd26cxmgibRYOBS4D3hGfmkwCpHdASZzwZDD8rluh0Rcqw1JeZDRw==", + "dependencies": { + "@smithy/util-base64": "^2.0.1", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/chunked-blob-reader-native/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/chunked-blob-reader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/config-resolver": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.0.18.tgz", + "integrity": "sha512-761sJSgNbvsqcsKW6/WZbrZr4H+0Vp/QKKqwyrxCPwD8BsiPEXNHyYnqNgaeK9xRWYswjon0Uxbpe3DWQo0j/g==", + "dependencies": { + "@smithy/node-config-provider": "^2.1.5", + "@smithy/types": "^2.5.0", + "@smithy/util-config-provider": "^2.0.0", + "@smithy/util-middleware": "^2.0.6", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/config-resolver/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/credential-provider-imds": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.1.1.tgz", + "integrity": "sha512-gw5G3FjWC6sNz8zpOJgPpH5HGKrpoVFQpToNAwLwJVyI/LJ2jDJRjSKEsM6XI25aRpYjMSE/Qptxx305gN1vHw==", + "dependencies": { + "@smithy/node-config-provider": "^2.1.5", + "@smithy/property-provider": "^2.0.14", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/credential-provider-imds/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/eventstream-codec": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.0.13.tgz", + "integrity": "sha512-CExbelIYp+DxAHG8RIs0l9QL7ElqhG4ym9BNoSpkPa4ptBQfzJdep3LbOSVJIE2VUdBAeObdeL6EDB3Jo85n3g==", + "dependencies": { + "@aws-crypto/crc32": "3.0.0", + "@smithy/types": "^2.5.0", + "@smithy/util-hex-encoding": "^2.0.0", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/eventstream-codec/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/eventstream-serde-browser": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.0.13.tgz", + "integrity": "sha512-OJ/2g/VxkzA+mYZxV102oX3CsiE+igTSmqq/ir3oEVG2kSIdRC00ryttj/lmL14W06ExNi0ysmfLxQkL8XrAZQ==", + "dependencies": { + "@smithy/eventstream-serde-universal": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/eventstream-serde-browser/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/eventstream-serde-config-resolver": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.0.13.tgz", + "integrity": "sha512-2BI1CbnYuEvAYoWSeWJtPNygbIKiWeSLxCmDLnyM6wQV32Of7VptiQlaFXPxXp4zqn/rs3ocZ/T29rxE4s4Gsg==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/eventstream-serde-config-resolver/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/eventstream-serde-node": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.0.13.tgz", + "integrity": "sha512-7NbFwPafb924elFxCBDvm48jy/DeSrpFbFQN0uN2ThuY5HrEeubikS0t7WMva4Z4EnRoivpbuT0scb9vUIJKoA==", + "dependencies": { + "@smithy/eventstream-serde-universal": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/eventstream-serde-node/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/eventstream-serde-universal": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.0.13.tgz", + "integrity": "sha512-j0yFd5UfftM+ia9dxLRbheJDCkCZBHpcEzCsPO8BxVOTbdcX/auVJCv6ov/yvpCKsf4Hv3mOqi0Is1YogM2g3Q==", + "dependencies": { + "@smithy/eventstream-codec": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/eventstream-serde-universal/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/fetch-http-handler": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.2.6.tgz", + "integrity": "sha512-PStY3XO1Ksjwn3wMKye5U6m6zxXpXrXZYqLy/IeCbh3nM9QB3Jgw/B0PUSLUWKdXg4U8qgEu300e3ZoBvZLsDg==", + "dependencies": { + "@smithy/protocol-http": "^3.0.9", + "@smithy/querystring-builder": "^2.0.13", + "@smithy/types": "^2.5.0", + "@smithy/util-base64": "^2.0.1", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/fetch-http-handler/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/hash-blob-browser": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-2.0.14.tgz", + "integrity": "sha512-yWdghyPJIEqLYsaE7YVgd3YhM7jN4Pv6eJQvTomnMsz5K2qRBlpjUx3T9fKlElp1qdeQ7DNc3sAat4i9CUBO7Q==", + "dependencies": { + "@smithy/chunked-blob-reader": "^2.0.0", + "@smithy/chunked-blob-reader-native": "^2.0.1", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/hash-blob-browser/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/hash-node": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.0.15.tgz", + "integrity": "sha512-t/qjEJZu/G46A22PAk1k/IiJZT4ncRkG5GOCNWN9HPPy5rCcSZUbh7gwp7CGKgJJ7ATMMg+0Td7i9o1lQTwOfQ==", + "dependencies": { + "@smithy/types": "^2.5.0", + "@smithy/util-buffer-from": "^2.0.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/hash-node/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/hash-stream-node": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-2.0.15.tgz", + "integrity": "sha512-ZZ6kC/pHt5Dc2goXIIyC8uA7A4GUMSzdCynAabnZ3CSSaV6ctP8mlvVkqjPph0O3XzHlx/80gdLrNqi1GDPUsA==", + "dependencies": { + "@smithy/types": "^2.5.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/hash-stream-node/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/invalid-dependency": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.0.13.tgz", + "integrity": "sha512-XsGYhVhvEikX1Yz0kyIoLssJf2Rs6E0U2w2YuKdT4jSra5A/g8V2oLROC1s56NldbgnpesTYB2z55KCHHbKyjw==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/invalid-dependency/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/is-array-buffer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.0.0.tgz", + "integrity": "sha512-z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/is-array-buffer/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/md5-js": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-2.0.15.tgz", + "integrity": "sha512-pAZaokib56XvhU0t/R9vAcr3L3bMhIakhF25X7EMSQ7LAURiLfce/tgON8I3x/dIbnZUyeRi8f2cx2azu6ATew==", + "dependencies": { + "@smithy/types": "^2.5.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/md5-js/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/middleware-content-length": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.0.15.tgz", + "integrity": "sha512-xH4kRBw01gJgWiU+/mNTrnyFXeozpZHw39gLb3JKGsFDVmSrJZ8/tRqu27tU/ki1gKkxr2wApu+dEYjI3QwV1Q==", + "dependencies": { + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-content-length/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/middleware-endpoint": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.2.0.tgz", + "integrity": "sha512-tddRmaig5URk2106PVMiNX6mc5BnKIKajHHDxb7K0J5MLdcuQluHMGnjkv18iY9s9O0tF+gAcPd/pDXA5L9DZw==", + "dependencies": { + "@smithy/middleware-serde": "^2.0.13", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/shared-ini-file-loader": "^2.2.4", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "@smithy/util-middleware": "^2.0.6", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-endpoint/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/middleware-retry": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.0.20.tgz", + "integrity": "sha512-X2yrF/SHDk2WDd8LflRNS955rlzQ9daz9UWSp15wW8KtzoTXg3bhHM78HbK1cjr48/FWERSJKh9AvRUUGlIawg==", + "dependencies": { + "@smithy/node-config-provider": "^2.1.5", + "@smithy/protocol-http": "^3.0.9", + "@smithy/service-error-classification": "^2.0.6", + "@smithy/types": "^2.5.0", + "@smithy/util-middleware": "^2.0.6", + "@smithy/util-retry": "^2.0.6", + "tslib": "^2.5.0", + "uuid": "^8.3.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-retry/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/middleware-retry/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/@smithy/middleware-serde": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.0.13.tgz", + "integrity": "sha512-tBGbeXw+XsE6pPr4UaXOh+UIcXARZeiA8bKJWxk2IjJcD1icVLhBSUQH9myCIZLNNzJIH36SDjUX8Wqk4xJCJg==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-serde/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/middleware-stack": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-2.0.7.tgz", + "integrity": "sha512-L1KLAAWkXbGx1t2jjCI/mDJ2dDNq+rp4/ifr/HcC6FHngxho5O7A5bQLpKHGlkfATH6fUnOEx0VICEVFA4sUzw==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/middleware-stack/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/node-config-provider": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.1.5.tgz", + "integrity": "sha512-3Omb5/h4tOCuKRx4p4pkYTvEYRCYoKk52bOYbKUyz/G/8gERbagsN8jFm4FjQubkrcIqQEghTpQaUw6uk+0edw==", + "dependencies": { + "@smithy/property-provider": "^2.0.14", + "@smithy/shared-ini-file-loader": "^2.2.4", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/node-config-provider/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/node-http-handler": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.1.9.tgz", + "integrity": "sha512-+K0q3SlNcocmo9OZj+fz67gY4lwhOCvIJxVbo/xH+hfWObvaxrMTx7JEzzXcluK0thnnLz++K3Qe7Z/8MDUreA==", + "dependencies": { + "@smithy/abort-controller": "^2.0.13", + "@smithy/protocol-http": "^3.0.9", + "@smithy/querystring-builder": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/node-http-handler/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/property-provider": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.0.14.tgz", + "integrity": "sha512-k3D2qp9o6imTrLaXRj6GdLYEJr1sXqS99nLhzq8fYmJjSVOeMg/G+1KVAAc7Oxpu71rlZ2f8SSZxcSxkevuR0A==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/property-provider/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/protocol-http": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-3.0.9.tgz", + "integrity": "sha512-U1wl+FhYu4/BC+rjwh1lg2gcJChQhytiNQSggREgQ9G2FzmoK9sACBZvx7thyWMvRyHQTE22mO2d5UM8gMKDBg==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/protocol-http/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/querystring-builder": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.0.13.tgz", + "integrity": "sha512-JhXKwp3JtsFUe96XLHy/nUPEbaXqn6r7xE4sNaH8bxEyytE5q1fwt0ew/Ke6+vIC7gP87HCHgQpJHg1X1jN2Fw==", + "dependencies": { + "@smithy/types": "^2.5.0", + "@smithy/util-uri-escape": "^2.0.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/querystring-builder/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/querystring-parser": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.0.13.tgz", + "integrity": "sha512-TEiT6o8CPZVxJ44Rly/rrsATTQsE+b/nyBVzsYn2sa75xAaZcurNxsFd8z1haoUysONiyex24JMHoJY6iCfLdA==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/querystring-parser/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/service-error-classification": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-2.0.6.tgz", + "integrity": "sha512-fCQ36frtYra2fqY2/DV8+3/z2d0VB/1D1hXbjRcM5wkxTToxq6xHbIY/NGGY6v4carskMyG8FHACxgxturJ9Pg==", + "dependencies": { + "@smithy/types": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/shared-ini-file-loader": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.2.4.tgz", + "integrity": "sha512-9dRknGgvYlRIsoTcmMJXuoR/3ekhGwhRq4un3ns2/byre4Ql5hyUN4iS0x8eITohjU90YOnUCsbRwZRvCkbRfw==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/shared-ini-file-loader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/signature-v4": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.0.15.tgz", + "integrity": "sha512-SRTEJSEhQYVlBKIIdZ9SZpqW+KFqxqcNnEcBX+8xkDdWx+DItme9VcCDkdN32yTIrICC+irUufnUdV7mmHPjoA==", + "dependencies": { + "@smithy/eventstream-codec": "^2.0.13", + "@smithy/is-array-buffer": "^2.0.0", + "@smithy/types": "^2.5.0", + "@smithy/util-hex-encoding": "^2.0.0", + "@smithy/util-middleware": "^2.0.6", + "@smithy/util-uri-escape": "^2.0.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/signature-v4/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/smithy-client": { + "version": "2.1.15", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.1.15.tgz", + "integrity": "sha512-rngZcQu7Jvs9UbHihK1EI67RMPuzkc3CJmu4MBgB7D7yBnMGuFR86tq5rqHfL2gAkNnMelBN/8kzQVvZjNKefQ==", + "dependencies": { + "@smithy/middleware-stack": "^2.0.7", + "@smithy/types": "^2.5.0", + "@smithy/util-stream": "^2.0.20", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/smithy-client/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/types": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-2.5.0.tgz", + "integrity": "sha512-/a31lYofrMBkJb3BuPlYJTMKDj0hUmKUP6JFZQu6YVuQVoAjubiY0A52U9S0Uysd33n/djexCUSNJ+G9bf3/aA==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/types/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/url-parser": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.0.13.tgz", + "integrity": "sha512-okWx2P/d9jcTsZWTVNnRMpFOE7fMkzloSFyM53fA7nLKJQObxM2T4JlZ5KitKKuXq7pxon9J6SF2kCwtdflIrA==", + "dependencies": { + "@smithy/querystring-parser": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/url-parser/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-base64": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-2.0.1.tgz", + "integrity": "sha512-DlI6XFYDMsIVN+GH9JtcRp3j02JEVuWIn/QOZisVzpIAprdsxGveFed0bjbMRCqmIFe8uetn5rxzNrBtIGrPIQ==", + "dependencies": { + "@smithy/util-buffer-from": "^2.0.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-base64/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-body-length-browser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-2.0.0.tgz", + "integrity": "sha512-JdDuS4ircJt+FDnaQj88TzZY3+njZ6O+D3uakS32f2VNnDo3vyEuNdBOh/oFd8Df1zSZOuH1HEChk2AOYDezZg==", + "dependencies": { + "tslib": "^2.5.0" + } + }, + "node_modules/@smithy/util-body-length-browser/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-body-length-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-2.1.0.tgz", + "integrity": "sha512-/li0/kj/y3fQ3vyzn36NTLGmUwAICb7Jbe/CsWCktW363gh1MOcpEcSO3mJ344Gv2dqz8YJCLQpb6hju/0qOWw==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-body-length-node/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-buffer-from": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.0.0.tgz", + "integrity": "sha512-/YNnLoHsR+4W4Vf2wL5lGv0ksg8Bmk3GEGxn2vEQt52AQaPSCuaO5PM5VM7lP1K9qHRKHwrPGktqVoAHKWHxzw==", + "dependencies": { + "@smithy/is-array-buffer": "^2.0.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-buffer-from/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-config-provider": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-2.0.0.tgz", + "integrity": "sha512-xCQ6UapcIWKxXHEU4Mcs2s7LcFQRiU3XEluM2WcCjjBtQkUN71Tb+ydGmJFPxMUrW/GWMgQEEGipLym4XG0jZg==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-config-provider/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-defaults-mode-browser": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.19.tgz", + "integrity": "sha512-VHP8xdFR7/orpiABJwgoTB0t8Zhhwpf93gXhNfUBiwAE9O0rvsv7LwpQYjgvbOUDDO8JfIYQB2GYJNkqqGWsXw==", + "dependencies": { + "@smithy/property-provider": "^2.0.14", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "bowser": "^2.11.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-defaults-mode-node": { + "version": "2.0.25", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.25.tgz", + "integrity": "sha512-jkmep6/JyWmn2ADw9VULDeGbugR4N/FJCKOt+gYyVswmN1BJOfzF2umaYxQ1HhQDvna3kzm1Dbo1qIfBW4iuHA==", + "dependencies": { + "@smithy/config-resolver": "^2.0.18", + "@smithy/credential-provider-imds": "^2.1.1", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/property-provider": "^2.0.14", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-endpoints": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-1.0.4.tgz", + "integrity": "sha512-FPry8j1xye5yzrdnf4xKUXVnkQErxdN7bUIaqC0OFoGsv2NfD9b2UUMuZSSt+pr9a8XWAqj0HoyVNUfPiZ/PvQ==", + "dependencies": { + "@smithy/node-config-provider": "^2.1.5", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@smithy/util-endpoints/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-hex-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-2.0.0.tgz", + "integrity": "sha512-c5xY+NUnFqG6d7HFh1IFfrm3mGl29lC+vF+geHv4ToiuJCBmIfzx6IeHLg+OgRdPFKDXIw6pvi+p3CsscaMcMA==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-hex-encoding/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-2.0.6.tgz", + "integrity": "sha512-7W4uuwBvSLgKoLC1x4LfeArCVcbuHdtVaC4g30kKsD1erfICyQ45+tFhhs/dZNeQg+w392fhunCm/+oCcb6BSA==", + "dependencies": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-middleware/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-retry": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-2.0.6.tgz", + "integrity": "sha512-PSO41FofOBmyhPQJwBQJ6mVlaD7Sp9Uff9aBbnfBJ9eqXOE/obrqQjn0PNdkfdvViiPXl49BINfnGcFtSP4kYw==", + "dependencies": { + "@smithy/service-error-classification": "^2.0.6", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@smithy/util-retry/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-stream": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.0.20.tgz", + "integrity": "sha512-tT8VASuD8jJu0yjHEMTCPt1o5E3FVzgdsxK6FQLAjXKqVv5V8InCnc0EOsYrijgspbfDqdAJg7r0o2sySfcHVg==", + "dependencies": { + "@smithy/fetch-http-handler": "^2.2.6", + "@smithy/node-http-handler": "^2.1.9", + "@smithy/types": "^2.5.0", + "@smithy/util-base64": "^2.0.1", + "@smithy/util-buffer-from": "^2.0.0", + "@smithy/util-hex-encoding": "^2.0.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-stream/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-uri-escape": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-2.0.0.tgz", + "integrity": "sha512-ebkxsqinSdEooQduuk9CbKcI+wheijxEb3utGXkCoYQkJnwTnLbH1JXGimJtUkQwNQbsbuYwG2+aFVyZf5TLaw==", + "dependencies": { + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-uri-escape/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-utf8": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.0.2.tgz", + "integrity": "sha512-qOiVORSPm6Ce4/Yu6hbSgNHABLP2VMv8QOC3tTDNHHlWY19pPyc++fBTbZPtx6egPXi4HQxKDnMxVxpbtX2GoA==", + "dependencies": { + "@smithy/util-buffer-from": "^2.0.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-utf8/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/@smithy/util-waiter": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-2.0.13.tgz", + "integrity": "sha512-YovIQatiuM7giEsRFotqJa2i3EbU2EE3PgtpXgtLgpx5rXiZMAwPxXYDFVFhuO0lbqvc/Zx4n+ZIisXOHPSqyg==", + "dependencies": { + "@smithy/abort-controller": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-waiter/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, "node_modules/@szmarczak/http-timer": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", @@ -6792,14 +8007,14 @@ } }, "node_modules/@techteamer/ocsp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@techteamer/ocsp/-/ocsp-1.0.0.tgz", - "integrity": "sha512-lNAOoFHaZN+4huo30ukeqVrUmfC+avoEBYQ11QAnAw1PFhnI5oBCg8O/TNiCoEWix7gNGBIEjrQwtPREqKMPog==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@techteamer/ocsp/-/ocsp-1.0.1.tgz", + "integrity": "sha512-q4pW5wAC6Pc3JI8UePwE37CkLQ5gDGZMgjSX4MEEm4D4Di59auDQ8UNIDzC4gRnPNmmcwjpPxozq8p5pjiOmOw==", "dependencies": { "asn1.js": "^5.4.1", "asn1.js-rfc2560": "^5.0.1", "asn1.js-rfc5280": "^3.0.0", - "async": "^3.2.1", + "async": "^3.2.4", "simple-lru-cache": "^0.0.2" } }, @@ -6983,6 +8198,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true, "engines": { "node": ">= 6" } @@ -7183,9 +8399,9 @@ } }, "node_modules/@types/snowflake-sdk": { - "version": "1.6.12", - "resolved": "https://registry.npmjs.org/@types/snowflake-sdk/-/snowflake-sdk-1.6.12.tgz", - "integrity": "sha512-Ndz6x750TkuvHvdRBH8Cb7T8et2anyyY1j8kFChJ+s8FtURNRKut7DWaq9YdseKXZvqwA3ZYZxKaQRwtSq67eg==", + "version": "1.6.17", + "resolved": "https://registry.npmjs.org/@types/snowflake-sdk/-/snowflake-sdk-1.6.17.tgz", + "integrity": "sha512-nvN0EX7Ni10hhowPZ/Tbj8glrsD0TPugtyeoZEUqMvuSRikpYsG7XNVZrQULiWy8+J8nPhLBf/DDLmxHI644GA==", "dependencies": { "@types/node": "*", "generic-pool": "^3.9.0" @@ -7707,11 +8923,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" - }, "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", @@ -7887,22 +9098,6 @@ "node": ">=0.8" } }, - "node_modules/ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ast-types/node_modules/tslib": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", - "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==" - }, "node_modules/astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", @@ -8159,11 +9354,6 @@ "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", "dev": true }, - "node_modules/better-eval": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/better-eval/-/better-eval-1.3.0.tgz", - "integrity": "sha512-rQdKZHTWok2uC3wHyGwoV6mOxhnOyp07iHhyWQlS+U5zkYyhOEOT6Ri4Q0vPThTqCYs6RCbtAfTbPG+lUZkocw==" - }, "node_modules/big-integer": { "version": "1.6.51", "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", @@ -8185,9 +9375,9 @@ } }, "node_modules/bignumber.js": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.1.tgz", - "integrity": "sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==", + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.2.tgz", + "integrity": "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==", "engines": { "node": "*" } @@ -8658,14 +9848,6 @@ "node": ">=10" } }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "engines": { - "node": ">= 0.8" - } - }, "node_modules/cacache": { "version": "15.3.0", "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", @@ -9343,14 +10525,6 @@ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "dev": true }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/conventional-changelog-angular": { "version": "5.0.13", "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", @@ -9531,11 +10705,6 @@ "rimraf": "bin.js" } }, - "node_modules/copy-to": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/copy-to/-/copy-to-2.0.1.tgz", - "integrity": "sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==" - }, "node_modules/core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", @@ -9715,14 +10884,6 @@ "node": ">=0.10" } }, - "node_modules/data-uri-to-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", - "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", - "engines": { - "node": ">= 6" - } - }, "node_modules/data-urls": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", @@ -9874,7 +11035,8 @@ "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==" + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true }, "node_modules/deepmerge": { "version": "4.3.0", @@ -9884,17 +11046,6 @@ "node": ">=0.10.0" } }, - "node_modules/default-user-agent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/default-user-agent/-/default-user-agent-1.0.0.tgz", - "integrity": "sha512-bDF7bg6OSNcSwFWPu4zYKpVkJZQYVrAANMYB8bc9Szem1D0yKdm4sa/rOCs2aC9+2GMqQ7KnwtZRvDhmLF0dXw==", - "dependencies": { - "os-name": "~1.0.3" - }, - "engines": { - "node": ">= 0.10.0" - } - }, "node_modules/defaults": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", @@ -9931,88 +11082,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/degenerator": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-3.0.4.tgz", - "integrity": "sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==", - "dependencies": { - "ast-types": "^0.13.2", - "escodegen": "^1.8.1", - "esprima": "^4.0.0", - "vm2": "^3.9.17" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/degenerator/node_modules/escodegen": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", - "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=4.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/degenerator/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/degenerator/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/degenerator/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/degenerator/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -10059,15 +11128,6 @@ "minimalistic-assert": "^1.0.0" } }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, "node_modules/detect-indent": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", @@ -10129,14 +11189,6 @@ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" }, - "node_modules/digest-header": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/digest-header/-/digest-header-1.1.0.tgz", - "integrity": "sha512-glXVh42vz40yZb9Cq2oMOt70FIoWiv+vxNvdKdU8CwjLad25qHM3trLxhl9bVjdr6WaslIXhWpn0NO8T/67Qjg==", - "engines": { - "node": ">= 8.0.0" - } - }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -10245,11 +11297,6 @@ "safe-buffer": "^5.0.1" } }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, "node_modules/electron-to-chromium": { "version": "1.4.286", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.286.tgz", @@ -10487,11 +11534,6 @@ "node": ">=6" } }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", @@ -10859,6 +11901,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, "engines": { "node": ">=4.0" } @@ -10867,6 +11910,7 @@ "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" } @@ -10974,17 +12018,6 @@ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" }, - "node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/external-editor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", @@ -11041,7 +12074,8 @@ "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==" + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true }, "node_modules/fast-text-encoding": { "version": "1.0.6", @@ -11063,6 +12097,14 @@ "url": "https://paypal.me/naturalintelligence" } }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "engines": { + "node": ">= 4.9.1" + } + }, "node_modules/fastq": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", @@ -11127,14 +12169,6 @@ "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/file-uri-to-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", - "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==", - "engines": { - "node": ">= 6" - } - }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -11283,27 +12317,6 @@ "node": ">= 14.17" } }, - "node_modules/formstream": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/formstream/-/formstream-1.2.0.tgz", - "integrity": "sha512-ef4F+FQLnQLly1/AZ5OGNgGzzlOmp+T7+L/TaXASJ1GrETrpZb78/Mz7z+1Ra5FX3nLZE0WIOInGOoa81LxWew==", - "dependencies": { - "destroy": "^1.0.4", - "mime": "^2.5.2", - "pause-stream": "~0.0.11" - } - }, - "node_modules/formstream/node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4.0.0" - } - }, "node_modules/from2": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", @@ -11430,39 +12443,6 @@ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/ftp": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", - "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", - "dependencies": { - "readable-stream": "1.1.x", - "xregexp": "2.0.0" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/ftp/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" - }, - "node_modules/ftp/node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/ftp/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" - }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", @@ -11761,51 +12741,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-uri": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-3.0.2.tgz", - "integrity": "sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==", - "dependencies": { - "@tootallnate/once": "1", - "data-uri-to-buffer": "3", - "debug": "4", - "file-uri-to-path": "2", - "fs-extra": "^8.1.0", - "ftp": "^0.3.10" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/get-uri/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/get-uri/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/get-uri/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "engines": { - "node": ">= 4.0.0" - } - }, "node_modules/getopts": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/getopts/-/getopts-2.2.5.tgz", @@ -12415,41 +13350,11 @@ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-errors/node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-errors/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "engines": { - "node": ">= 0.8" - } - }, "node_modules/http-proxy-agent": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, "dependencies": { "@tootallnate/once": "1", "agent-base": "6", @@ -12529,6 +13434,7 @@ "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -12918,14 +13824,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -15788,55 +16686,6 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "node_modules/mysql": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/mysql/-/mysql-2.18.1.tgz", - "integrity": "sha512-Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig==", - "dependencies": { - "bignumber.js": "9.0.0", - "readable-stream": "2.3.7", - "safe-buffer": "5.1.2", - "sqlstring": "2.3.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mysql/node_modules/bignumber.js": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz", - "integrity": "sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A==", - "engines": { - "node": "*" - } - }, - "node_modules/mysql/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/mysql/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/mysql/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/mysql2": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.6.0.tgz", @@ -15895,16 +16744,6 @@ "node": ">= 0.6" } }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, "node_modules/named-placeholders": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.3.tgz", @@ -15961,14 +16800,6 @@ "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz", "integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==" }, - "node_modules/netmask": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", - "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/nock": { "version": "13.3.0", "resolved": "https://registry.npmjs.org/nock/-/nock-13.3.0.tgz", @@ -17197,21 +18028,6 @@ "node": ">=0.10.0" } }, - "node_modules/os-name": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/os-name/-/os-name-1.0.3.tgz", - "integrity": "sha512-f5estLO2KN8vgtTRaILIgEGBoBrMnZ3JQ7W9TMZCnOIGwHe8TRGSpcagnWDo+Dfhd/z08k9Xe75hvciJJ8Qaew==", - "dependencies": { - "osx-release": "^1.0.0", - "win-release": "^1.0.0" - }, - "bin": { - "os-name": "cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", @@ -17229,20 +18045,6 @@ "os-tmpdir": "^1.0.0" } }, - "node_modules/osx-release": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/osx-release/-/osx-release-1.1.0.tgz", - "integrity": "sha512-ixCMMwnVxyHFQLQnINhmIpWqXIfS2YOXchwQrk+OFzmo6nDjQ0E4KXAyyUh0T0MZgV4bUhkRrAbVqlE4yLVq4A==", - "dependencies": { - "minimist": "^1.1.0" - }, - "bin": { - "osx-release": "cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/p-cancelable": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", @@ -17393,43 +18195,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pac-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz", - "integrity": "sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==", - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4", - "get-uri": "3", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "5", - "pac-resolver": "^5.0.0", - "raw-body": "^2.2.0", - "socks-proxy-agent": "5" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/pac-resolver": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-5.0.1.tgz", - "integrity": "sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==", - "dependencies": { - "degenerator": "^3.0.2", - "ip": "^1.1.5", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/pac-resolver/node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" - }, "node_modules/package-json": { "version": "6.5.0", "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", @@ -17890,14 +18655,6 @@ "node": ">=8" } }, - "node_modules/pause-stream": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", - "integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==", - "dependencies": { - "through": "~2.3" - } - }, "node_modules/pbkdf2": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", @@ -18313,24 +19070,6 @@ "genfun": "^5.0.0" } }, - "node_modules/proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-5.0.0.tgz", - "integrity": "sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==", - "dependencies": { - "agent-base": "^6.0.0", - "debug": "4", - "http-proxy-agent": "^4.0.0", - "https-proxy-agent": "^5.0.0", - "lru-cache": "^5.1.1", - "pac-proxy-agent": "^5.0.0", - "proxy-from-env": "^1.0.0", - "socks-proxy-agent": "^5.0.0" - }, - "engines": { - "node": ">= 8" - } - }, "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", @@ -18501,20 +19240,6 @@ "safe-buffer": "^5.1.0" } }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, "node_modules/rc": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", @@ -19468,11 +20193,6 @@ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "dev": true }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, "node_modules/sha.js": { "version": "2.4.11", "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", @@ -19649,29 +20369,28 @@ } }, "node_modules/snowflake-sdk": { - "version": "1.6.23", - "resolved": "https://registry.npmjs.org/snowflake-sdk/-/snowflake-sdk-1.6.23.tgz", - "integrity": "sha512-meKcFQ2NggyhItmZ019JJ5UAeQiN0n98P7plAhM9DjVvI04JngvprUsmluu7c6Ujo/IYQC6jC8/7+cmgiMC7Bw==", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/snowflake-sdk/-/snowflake-sdk-1.9.1.tgz", + "integrity": "sha512-gLtIDmGIA5I9F1skotS8vJ7rJXU7pQsFYx9d152mgvrDsAp88HsRFasybuDerFNmc+59ae0o+4lvgDNVz9GFIg==", "dependencies": { + "@aws-sdk/client-s3": "^3.388.0", "@azure/storage-blob": "^12.11.0", "@google-cloud/storage": "^6.9.3", - "@techteamer/ocsp": "1.0.0", + "@techteamer/ocsp": "1.0.1", "agent-base": "^6.0.2", "asn1.js-rfc2560": "^5.0.0", "asn1.js-rfc5280": "^3.0.0", - "async": "^3.2.3", - "aws-sdk": "^2.878.0", - "axios": "^0.27.2", - "better-eval": "^1.3.0", + "axios": "^1.6.0", "big-integer": "^1.6.43", - "bignumber.js": "^2.4.0", + "bignumber.js": "^9.1.2", "binascii": "0.0.2", "bn.js": "^5.2.1", "browser-request": "^0.3.3", "debug": "^3.2.6", "expand-tilde": "^2.0.2", "extend": "^3.0.2", - "fast-xml-parser": "^4.1.3", + "fast-xml-parser": "^4.2.5", + "fastest-levenshtein": "^1.0.16", "generic-pool": "^3.8.2", "glob": "^7.1.6", "https-proxy-agent": "^5.0.1", @@ -19683,11 +20402,12 @@ "open": "^7.3.1", "python-struct": "^1.1.3", "simple-lru-cache": "^0.0.2", - "string-similarity": "^4.0.4", "tmp": "^0.2.1", - "urllib": "^2.38.0", - "uuid": "^3.3.2", + "uuid": "^8.3.2", "winston": "^3.1.0" + }, + "peerDependencies": { + "asn1.js": "^5.4.1" } }, "node_modules/snowflake-sdk/node_modules/@google-cloud/projectify": { @@ -19733,14 +20453,6 @@ "node": ">=12" } }, - "node_modules/snowflake-sdk/node_modules/@google-cloud/storage/node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "bin": { - "uuid": "dist/bin/uuid" - } - }, "node_modules/snowflake-sdk/node_modules/@tootallnate/once": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", @@ -19758,20 +20470,13 @@ } }, "node_modules/snowflake-sdk/node_modules/axios": { - "version": "0.27.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", - "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", "dependencies": { - "follow-redirects": "^1.14.9", - "form-data": "^4.0.0" - } - }, - "node_modules/snowflake-sdk/node_modules/bignumber.js": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-2.4.0.tgz", - "integrity": "sha512-uw4ra6Cv483Op/ebM0GBKKfxZlSmn6NgFRby5L3yGTlunLj53KQgndDlqy2WVFOwgvurocApYkSud0aO+mvrpQ==", - "engines": { - "node": "*" + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, "node_modules/snowflake-sdk/node_modules/debug": { @@ -19783,17 +20488,17 @@ } }, "node_modules/snowflake-sdk/node_modules/fast-xml-parser": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.2.tgz", - "integrity": "sha512-DLzIPtQqmvmdq3VUKR7T6omPK/VCRNqgFlGtbESfyhcH2R4I8EzK1/K6E8PkRCK2EabWrUHK32NjYRbEFnnz0Q==", + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.3.2.tgz", + "integrity": "sha512-rmrXUXwbJedoXkStenj1kkljNF7ugn5ZjR9FJcwmCfcCbtOMDghPajbc+Tck6vE6F5XsDmx+Pr2le9fw8+pXBg==", "funding": [ - { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" - }, { "type": "github", "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" } ], "dependencies": { @@ -20038,6 +20743,14 @@ "node": ">=8.17.0" } }, + "node_modules/snowflake-sdk/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, "node_modules/snowflake-sdk/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -20060,6 +20773,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", + "dev": true, "dependencies": { "agent-base": "^6.0.2", "debug": "4", @@ -20097,7 +20811,7 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "devOptional": true, + "dev": true, "engines": { "node": ">=0.10.0" } @@ -20191,14 +20905,6 @@ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" }, - "node_modules/sqlstring": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.1.tgz", - "integrity": "sha512-ooAzh/7dxIG5+uDik1z/Rd1vli0+38izZhGzSa34FwR7IbelPWCCKSNIl8jlL/F7ERvy8CB2jNeM1E9i9mXMAQ==", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/sshpk": { "version": "1.17.0", "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", @@ -20269,14 +20975,6 @@ "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz", "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==" }, - "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/stoppable": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/stoppable/-/stoppable-1.1.0.tgz", @@ -20342,11 +21040,6 @@ "node": ">=10" } }, - "node_modules/string-similarity": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/string-similarity/-/string-similarity-4.0.4.tgz", - "integrity": "sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==" - }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -20953,25 +21646,6 @@ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, "node_modules/throat": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", @@ -21047,14 +21721,6 @@ "node": ">=8.0" } }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "engines": { - "node": ">=0.6" - } - }, "node_modules/tough-cookie": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", @@ -21359,17 +22025,6 @@ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" }, - "node_modules/unescape": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unescape/-/unescape-1.0.1.tgz", - "integrity": "sha512-O0+af1Gs50lyH1nUu3ZyYS1cRh01Q/kUKatTOkSs7jukXE6/NebucDVxyiDsA9AQ4JC1V1jUH9EO8JX2nMDgGQ==", - "dependencies": { - "extend-shallow": "^2.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/unique-filename": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", @@ -21411,14 +22066,6 @@ "node": ">= 10.0.0" } }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "engines": { - "node": ">= 0.8" - } - }, "node_modules/upath": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", @@ -21674,49 +22321,6 @@ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" }, - "node_modules/urllib": { - "version": "2.40.0", - "resolved": "https://registry.npmjs.org/urllib/-/urllib-2.40.0.tgz", - "integrity": "sha512-XDZjoijtzsbkXTXgM+A/sJM002nwoYsc46YOYr6MNH2jUUw1nCBf2ywT1WaPsVEWJX4Yr+9isGmYj4+yofFn9g==", - "dependencies": { - "any-promise": "^1.3.0", - "content-type": "^1.0.2", - "debug": "^2.6.9", - "default-user-agent": "^1.0.0", - "digest-header": "^1.0.0", - "ee-first": "~1.1.1", - "formstream": "^1.1.0", - "humanize-ms": "^1.2.0", - "iconv-lite": "^0.4.15", - "ip": "^1.1.5", - "proxy-agent": "^5.0.0", - "pump": "^3.0.0", - "qs": "^6.4.0", - "statuses": "^1.3.1", - "utility": "^1.16.1" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/urllib/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/urllib/node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" - }, - "node_modules/urllib/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, "node_modules/util": { "version": "0.12.5", "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", @@ -21743,32 +22347,6 @@ "object.getownpropertydescriptors": "^2.0.3" } }, - "node_modules/utility": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/utility/-/utility-1.18.0.tgz", - "integrity": "sha512-PYxZDA+6QtvRvm//++aGdmKG/cI07jNwbROz0Ql+VzFV1+Z0Dy55NI4zZ7RHc9KKpBePNFwoErqIuqQv/cjiTA==", - "dependencies": { - "copy-to": "^2.0.1", - "escape-html": "^1.0.3", - "mkdirp": "^0.5.1", - "mz": "^2.7.0", - "unescape": "^1.0.1" - }, - "engines": { - "node": ">= 0.12.0" - } - }, - "node_modules/utility/node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, "node_modules/uuid": { "version": "3.4.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", @@ -21837,40 +22415,6 @@ "extsprintf": "^1.2.0" } }, - "node_modules/vm2": { - "version": "3.9.19", - "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.19.tgz", - "integrity": "sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==", - "dependencies": { - "acorn": "^8.7.0", - "acorn-walk": "^8.2.0" - }, - "bin": { - "vm2": "bin/vm2" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/vm2/node_modules/acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/vm2/node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", @@ -22074,25 +22618,6 @@ "node": ">=4" } }, - "node_modules/win-release": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/win-release/-/win-release-1.1.1.tgz", - "integrity": "sha512-iCRnKVvGxOQdsKhcQId2PXV1vV3J/sDPXKA4Oe9+Eti2nb2ESEsYHRYls/UjoUW3bIc5ZDO8dTH50A/5iVN+bw==", - "dependencies": { - "semver": "^5.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/win-release/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "bin": { - "semver": "bin/semver" - } - }, "node_modules/winston": { "version": "3.8.2", "resolved": "https://registry.npmjs.org/winston/-/winston-3.8.2.tgz", @@ -22217,6 +22742,7 @@ "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -22470,14 +22996,6 @@ "node": ">=0.4.0" } }, - "node_modules/xregexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", - "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==", - "engines": { - "node": "*" - } - }, "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", @@ -22992,7 +23510,6 @@ "dependencies": { "@tooljet-plugins/common": "file:../common", "knex": "^0.95.15", - "mysql": "^2.18.1", "mysql2": "^3.6.0", "react": "^17.0.2", "rimraf": "^3.0.2" @@ -23136,9 +23653,9 @@ "version": "1.0.0", "dependencies": { "@tooljet-plugins/common": "file:../common", - "@types/snowflake-sdk": "^1.6.12", + "@types/snowflake-sdk": "^1.6.17", "react": "^17.0.2", - "snowflake-sdk": "^1.6.23" + "snowflake-sdk": "^1.9.1" } }, "packages/stripe": { @@ -23302,37 +23819,6 @@ } } }, - "@aws-sdk/chunked-blob-reader": { - "version": "3.188.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader/-/chunked-blob-reader-3.188.0.tgz", - "integrity": "sha512-zkPRFZZPL3eH+kH86LDYYXImiClA1/sW60zYOjse9Pgka+eDJlvBN6hcYxwDEKjcwATYiSRR1aVQHcfCinlGXg==", - "requires": { - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "@aws-sdk/chunked-blob-reader-native": { - "version": "3.208.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.208.0.tgz", - "integrity": "sha512-JeOZ95PW+fJ6bbuqPySYqLqHk1n4+4ueEEraJsiUrPBV0S1ZtyvOGHcnGztKUjr2PYNaiexmpWuvUve9K12HRA==", - "requires": { - "@aws-sdk/util-base64": "3.208.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, "@aws-sdk/client-cognito-identity": { "version": "3.289.0", "resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.289.0.tgz", @@ -23978,66 +24464,437 @@ } }, "@aws-sdk/client-s3": { - "version": "3.264.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.264.0.tgz", - "integrity": "sha512-YhpbK+vlqvhIpoBLl/e/qL2f7KOE8WZ2Wq/Nyj7/aGhSz9MRqXCOQ7HPeox6szym705JYC29jwHqvIEr3ybE2Q==", + "version": "3.454.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.454.0.tgz", + "integrity": "sha512-vBx4iB1c4mEz+twMnl6angC1/IpnmXaT8L6Kl9uNiurFsb6N4tCyrJ24kECdsOSTM7ePXvE1fKst8zAh6MW5ZA==", "requires": { "@aws-crypto/sha1-browser": "3.0.0", "@aws-crypto/sha256-browser": "3.0.0", "@aws-crypto/sha256-js": "3.0.0", - "@aws-sdk/client-sts": "3.264.0", - "@aws-sdk/config-resolver": "3.259.0", - "@aws-sdk/credential-provider-node": "3.264.0", - "@aws-sdk/eventstream-serde-browser": "3.258.0", - "@aws-sdk/eventstream-serde-config-resolver": "3.257.0", - "@aws-sdk/eventstream-serde-node": "3.258.0", - "@aws-sdk/fetch-http-handler": "3.257.0", - "@aws-sdk/hash-blob-browser": "3.257.0", - "@aws-sdk/hash-node": "3.257.0", - "@aws-sdk/hash-stream-node": "3.257.0", - "@aws-sdk/invalid-dependency": "3.257.0", - "@aws-sdk/md5-js": "3.258.0", - "@aws-sdk/middleware-bucket-endpoint": "3.259.0", - "@aws-sdk/middleware-content-length": "3.257.0", - "@aws-sdk/middleware-endpoint": "3.264.0", - "@aws-sdk/middleware-expect-continue": "3.257.0", - "@aws-sdk/middleware-flexible-checksums": "3.259.0", - "@aws-sdk/middleware-host-header": "3.257.0", - "@aws-sdk/middleware-location-constraint": "3.257.0", - "@aws-sdk/middleware-logger": "3.257.0", - "@aws-sdk/middleware-recursion-detection": "3.257.0", - "@aws-sdk/middleware-retry": "3.259.0", - "@aws-sdk/middleware-sdk-s3": "3.257.0", - "@aws-sdk/middleware-serde": "3.257.0", - "@aws-sdk/middleware-signing": "3.257.0", - "@aws-sdk/middleware-ssec": "3.257.0", - "@aws-sdk/middleware-stack": "3.257.0", - "@aws-sdk/middleware-user-agent": "3.257.0", - "@aws-sdk/node-config-provider": "3.259.0", - "@aws-sdk/node-http-handler": "3.257.0", - "@aws-sdk/protocol-http": "3.257.0", - "@aws-sdk/signature-v4-multi-region": "3.264.0", - "@aws-sdk/smithy-client": "3.261.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/url-parser": "3.257.0", - "@aws-sdk/util-base64": "3.208.0", - "@aws-sdk/util-body-length-browser": "3.188.0", - "@aws-sdk/util-body-length-node": "3.208.0", - "@aws-sdk/util-defaults-mode-browser": "3.261.0", - "@aws-sdk/util-defaults-mode-node": "3.261.0", - "@aws-sdk/util-endpoints": "3.257.0", - "@aws-sdk/util-retry": "3.257.0", - "@aws-sdk/util-stream-browser": "3.258.0", - "@aws-sdk/util-stream-node": "3.257.0", - "@aws-sdk/util-user-agent-browser": "3.257.0", - "@aws-sdk/util-user-agent-node": "3.259.0", - "@aws-sdk/util-utf8": "3.254.0", - "@aws-sdk/util-waiter": "3.257.0", - "@aws-sdk/xml-builder": "3.201.0", - "fast-xml-parser": "4.0.11", - "tslib": "^2.3.1" + "@aws-sdk/client-sts": "3.454.0", + "@aws-sdk/core": "3.451.0", + "@aws-sdk/credential-provider-node": "3.451.0", + "@aws-sdk/middleware-bucket-endpoint": "3.451.0", + "@aws-sdk/middleware-expect-continue": "3.451.0", + "@aws-sdk/middleware-flexible-checksums": "3.451.0", + "@aws-sdk/middleware-host-header": "3.451.0", + "@aws-sdk/middleware-location-constraint": "3.451.0", + "@aws-sdk/middleware-logger": "3.451.0", + "@aws-sdk/middleware-recursion-detection": "3.451.0", + "@aws-sdk/middleware-sdk-s3": "3.451.0", + "@aws-sdk/middleware-signing": "3.451.0", + "@aws-sdk/middleware-ssec": "3.451.0", + "@aws-sdk/middleware-user-agent": "3.451.0", + "@aws-sdk/region-config-resolver": "3.451.0", + "@aws-sdk/signature-v4-multi-region": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-endpoints": "3.451.0", + "@aws-sdk/util-user-agent-browser": "3.451.0", + "@aws-sdk/util-user-agent-node": "3.451.0", + "@aws-sdk/xml-builder": "3.310.0", + "@smithy/config-resolver": "^2.0.18", + "@smithy/eventstream-serde-browser": "^2.0.13", + "@smithy/eventstream-serde-config-resolver": "^2.0.13", + "@smithy/eventstream-serde-node": "^2.0.13", + "@smithy/fetch-http-handler": "^2.2.6", + "@smithy/hash-blob-browser": "^2.0.14", + "@smithy/hash-node": "^2.0.15", + "@smithy/hash-stream-node": "^2.0.15", + "@smithy/invalid-dependency": "^2.0.13", + "@smithy/md5-js": "^2.0.15", + "@smithy/middleware-content-length": "^2.0.15", + "@smithy/middleware-endpoint": "^2.2.0", + "@smithy/middleware-retry": "^2.0.20", + "@smithy/middleware-serde": "^2.0.13", + "@smithy/middleware-stack": "^2.0.7", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/node-http-handler": "^2.1.9", + "@smithy/protocol-http": "^3.0.9", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "@smithy/util-base64": "^2.0.1", + "@smithy/util-body-length-browser": "^2.0.0", + "@smithy/util-body-length-node": "^2.1.0", + "@smithy/util-defaults-mode-browser": "^2.0.19", + "@smithy/util-defaults-mode-node": "^2.0.25", + "@smithy/util-endpoints": "^1.0.4", + "@smithy/util-retry": "^2.0.6", + "@smithy/util-stream": "^2.0.20", + "@smithy/util-utf8": "^2.0.2", + "@smithy/util-waiter": "^2.0.13", + "fast-xml-parser": "4.2.5", + "tslib": "^2.5.0" }, "dependencies": { + "@aws-sdk/client-sso": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.451.0.tgz", + "integrity": "sha512-KkYSke3Pdv3MfVH/5fT528+MKjMyPKlcLcd4zQb0x6/7Bl7EHrPh1JZYjzPLHelb+UY5X0qN8+cb8iSu1eiwIQ==", + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.451.0", + "@aws-sdk/middleware-host-header": "3.451.0", + "@aws-sdk/middleware-logger": "3.451.0", + "@aws-sdk/middleware-recursion-detection": "3.451.0", + "@aws-sdk/middleware-user-agent": "3.451.0", + "@aws-sdk/region-config-resolver": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-endpoints": "3.451.0", + "@aws-sdk/util-user-agent-browser": "3.451.0", + "@aws-sdk/util-user-agent-node": "3.451.0", + "@smithy/config-resolver": "^2.0.18", + "@smithy/fetch-http-handler": "^2.2.6", + "@smithy/hash-node": "^2.0.15", + "@smithy/invalid-dependency": "^2.0.13", + "@smithy/middleware-content-length": "^2.0.15", + "@smithy/middleware-endpoint": "^2.2.0", + "@smithy/middleware-retry": "^2.0.20", + "@smithy/middleware-serde": "^2.0.13", + "@smithy/middleware-stack": "^2.0.7", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/node-http-handler": "^2.1.9", + "@smithy/protocol-http": "^3.0.9", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "@smithy/util-base64": "^2.0.1", + "@smithy/util-body-length-browser": "^2.0.0", + "@smithy/util-body-length-node": "^2.1.0", + "@smithy/util-defaults-mode-browser": "^2.0.19", + "@smithy/util-defaults-mode-node": "^2.0.25", + "@smithy/util-endpoints": "^1.0.4", + "@smithy/util-retry": "^2.0.6", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/client-sts": { + "version": "3.454.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.454.0.tgz", + "integrity": "sha512-0fDvr8WeB6IYO8BUCzcivWmahgGl/zDbaYfakzGnt4mrl5ztYaXE875WI6b7+oFcKMRvN+KLvwu5TtyFuNY+GQ==", + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/core": "3.451.0", + "@aws-sdk/credential-provider-node": "3.451.0", + "@aws-sdk/middleware-host-header": "3.451.0", + "@aws-sdk/middleware-logger": "3.451.0", + "@aws-sdk/middleware-recursion-detection": "3.451.0", + "@aws-sdk/middleware-sdk-sts": "3.451.0", + "@aws-sdk/middleware-signing": "3.451.0", + "@aws-sdk/middleware-user-agent": "3.451.0", + "@aws-sdk/region-config-resolver": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-endpoints": "3.451.0", + "@aws-sdk/util-user-agent-browser": "3.451.0", + "@aws-sdk/util-user-agent-node": "3.451.0", + "@smithy/config-resolver": "^2.0.18", + "@smithy/fetch-http-handler": "^2.2.6", + "@smithy/hash-node": "^2.0.15", + "@smithy/invalid-dependency": "^2.0.13", + "@smithy/middleware-content-length": "^2.0.15", + "@smithy/middleware-endpoint": "^2.2.0", + "@smithy/middleware-retry": "^2.0.20", + "@smithy/middleware-serde": "^2.0.13", + "@smithy/middleware-stack": "^2.0.7", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/node-http-handler": "^2.1.9", + "@smithy/protocol-http": "^3.0.9", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "@smithy/util-base64": "^2.0.1", + "@smithy/util-body-length-browser": "^2.0.0", + "@smithy/util-body-length-node": "^2.1.0", + "@smithy/util-defaults-mode-browser": "^2.0.19", + "@smithy/util-defaults-mode-node": "^2.0.25", + "@smithy/util-endpoints": "^1.0.4", + "@smithy/util-retry": "^2.0.6", + "@smithy/util-utf8": "^2.0.2", + "fast-xml-parser": "4.2.5", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/credential-provider-env": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.451.0.tgz", + "integrity": "sha512-9dAav7DcRgaF7xCJEQR5ER9ErXxnu/tdnVJ+UPmb1NPeIZdESv1A3lxFDEq1Fs8c4/lzAj9BpshGyJVIZwZDKg==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/credential-provider-ini": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.451.0.tgz", + "integrity": "sha512-TySt64Ci5/ZbqFw1F9Z0FIGvYx5JSC9e6gqDnizIYd8eMnn8wFRUscRrD7pIHKfrhvVKN5h0GdYovmMO/FMCBw==", + "requires": { + "@aws-sdk/credential-provider-env": "3.451.0", + "@aws-sdk/credential-provider-process": "3.451.0", + "@aws-sdk/credential-provider-sso": "3.451.0", + "@aws-sdk/credential-provider-web-identity": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@smithy/credential-provider-imds": "^2.0.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/shared-ini-file-loader": "^2.0.6", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/credential-provider-node": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.451.0.tgz", + "integrity": "sha512-AEwM1WPyxUdKrKyUsKyFqqRFGU70e4qlDyrtBxJnSU9NRLZI8tfEZ67bN7fHSxBUBODgDXpMSlSvJiBLh5/3pw==", + "requires": { + "@aws-sdk/credential-provider-env": "3.451.0", + "@aws-sdk/credential-provider-ini": "3.451.0", + "@aws-sdk/credential-provider-process": "3.451.0", + "@aws-sdk/credential-provider-sso": "3.451.0", + "@aws-sdk/credential-provider-web-identity": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@smithy/credential-provider-imds": "^2.0.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/shared-ini-file-loader": "^2.0.6", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/credential-provider-process": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.451.0.tgz", + "integrity": "sha512-HQywSdKeD5PErcLLnZfSyCJO+6T+ZyzF+Lm/QgscSC+CbSUSIPi//s15qhBRVely/3KBV6AywxwNH+5eYgt4lQ==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/shared-ini-file-loader": "^2.0.6", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/credential-provider-sso": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.451.0.tgz", + "integrity": "sha512-Usm/N51+unOt8ID4HnQzxIjUJDrkAQ1vyTOC0gSEEJ7h64NSSPGD5yhN7il5WcErtRd3EEtT1a8/GTC5TdBctg==", + "requires": { + "@aws-sdk/client-sso": "3.451.0", + "@aws-sdk/token-providers": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/shared-ini-file-loader": "^2.0.6", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/credential-provider-web-identity": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.451.0.tgz", + "integrity": "sha512-Xtg3Qw65EfDjWNG7o2xD6sEmumPfsy3WDGjk2phEzVg8s7hcZGxf5wYwe6UY7RJvlEKrU0rFA+AMn6Hfj5oOzg==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/middleware-host-header": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.451.0.tgz", + "integrity": "sha512-j8a5jAfhWmsK99i2k8oR8zzQgXrsJtgrLxc3js6U+525mcZytoiDndkWTmD5fjJ1byU1U2E5TaPq+QJeDip05Q==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/middleware-logger": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.451.0.tgz", + "integrity": "sha512-0kHrYEyVeB2QBfP6TfbI240aRtatLZtcErJbhpiNUb+CQPgEL3crIjgVE8yYiJumZ7f0jyjo8HLPkwD1/2APaw==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/middleware-recursion-detection": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.451.0.tgz", + "integrity": "sha512-J6jL6gJ7orjHGM70KDRcCP7so/J2SnkN4vZ9YRLTeeZY6zvBuHDjX8GCIgSqPn/nXFXckZO8XSnA7u6+3TAT0w==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/middleware-sdk-s3": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.451.0.tgz", + "integrity": "sha512-XF4Cw8HrYUwGLKOqKtWs6ss1WXoxvQUcgGLACGSqn9a0p51446NiS5671x7qJUsfBuygdKlIKcOc8pPr9a+5Ow==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-arn-parser": "3.310.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/middleware-sdk-sts": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.451.0.tgz", + "integrity": "sha512-UJ6UfVUEgp0KIztxpAeelPXI5MLj9wUtUCqYeIMP7C1ZhoEMNm3G39VLkGN43dNhBf1LqjsV9jkKMZbVfYXuwg==", + "requires": { + "@aws-sdk/middleware-signing": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/middleware-signing": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.451.0.tgz", + "integrity": "sha512-s5ZlcIoLNg1Huj4Qp06iKniE8nJt/Pj1B/fjhWc6cCPCM7XJYUCejCnRh6C5ZJoBEYodjuwZBejPc1Wh3j+znA==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/property-provider": "^2.0.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/signature-v4": "^2.0.0", + "@smithy/types": "^2.5.0", + "@smithy/util-middleware": "^2.0.6", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/middleware-user-agent": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.451.0.tgz", + "integrity": "sha512-8NM/0JiKLNvT9wtAQVl1DFW0cEO7OvZyLSUBLNLTHqyvOZxKaZ8YFk7d8PL6l76LeUKRxq4NMxfZQlUIRe0eSA==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-endpoints": "3.451.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/signature-v4-multi-region": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.451.0.tgz", + "integrity": "sha512-qQKY7/txeNUTLyRL3WxUWEwaZ5sf76EIZgu9kLaR96cAYSxwQi/qQB3ijbfD6u7sJIA8aROMxeYK0VmRsQg0CA==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/signature-v4": "^2.0.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/token-providers": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.451.0.tgz", + "integrity": "sha512-ij1L5iUbn6CwxVOT1PG4NFjsrsKN9c4N1YEM0lkl6DwmaNOscjLKGSNyj9M118vSWsOs1ZDbTwtj++h0O/BWrQ==", + "requires": { + "@aws-crypto/sha256-browser": "3.0.0", + "@aws-crypto/sha256-js": "3.0.0", + "@aws-sdk/middleware-host-header": "3.451.0", + "@aws-sdk/middleware-logger": "3.451.0", + "@aws-sdk/middleware-recursion-detection": "3.451.0", + "@aws-sdk/middleware-user-agent": "3.451.0", + "@aws-sdk/region-config-resolver": "3.451.0", + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-endpoints": "3.451.0", + "@aws-sdk/util-user-agent-browser": "3.451.0", + "@aws-sdk/util-user-agent-node": "3.451.0", + "@smithy/config-resolver": "^2.0.18", + "@smithy/fetch-http-handler": "^2.2.6", + "@smithy/hash-node": "^2.0.15", + "@smithy/invalid-dependency": "^2.0.13", + "@smithy/middleware-content-length": "^2.0.15", + "@smithy/middleware-endpoint": "^2.2.0", + "@smithy/middleware-retry": "^2.0.20", + "@smithy/middleware-serde": "^2.0.13", + "@smithy/middleware-stack": "^2.0.7", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/node-http-handler": "^2.1.9", + "@smithy/property-provider": "^2.0.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/shared-ini-file-loader": "^2.0.6", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "@smithy/util-base64": "^2.0.1", + "@smithy/util-body-length-browser": "^2.0.0", + "@smithy/util-body-length-node": "^2.1.0", + "@smithy/util-defaults-mode-browser": "^2.0.19", + "@smithy/util-defaults-mode-node": "^2.0.25", + "@smithy/util-endpoints": "^1.0.4", + "@smithy/util-retry": "^2.0.6", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/util-arn-parser": { + "version": "3.310.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.310.0.tgz", + "integrity": "sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==", + "requires": { + "tslib": "^2.5.0" + } + }, + "@aws-sdk/util-endpoints": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.451.0.tgz", + "integrity": "sha512-giqLGBTnRIcKkDqwU7+GQhKbtJ5Ku35cjGQIfMyOga6pwTBUbaK0xW1Sdd8sBQ1GhApscnChzI9o/R9x0368vw==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/util-endpoints": "^1.0.4", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/util-user-agent-browser": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.451.0.tgz", + "integrity": "sha512-Ws5mG3J0TQifH7OTcMrCTexo7HeSAc3cBgjfhS/ofzPUzVCtsyg0G7I6T7wl7vJJETix2Kst2cpOsxygPgPD9w==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/types": "^2.5.0", + "bowser": "^2.11.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/util-user-agent-node": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.451.0.tgz", + "integrity": "sha512-TBzm6P+ql4mkGFAjPlO1CI+w3yUT+NulaiALjl/jNX/nnUp6HsJsVxJf4nVFQTG5KRV0iqMypcs7I3KIhH+LmA==", + "requires": { + "@aws-sdk/types": "3.451.0", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "fast-xml-parser": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.5.tgz", + "integrity": "sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==", + "requires": { + "strnum": "^1.0.5" + } + }, "tslib": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", @@ -24255,6 +25112,22 @@ } } }, + "@aws-sdk/core": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.451.0.tgz", + "integrity": "sha512-SamWW2zHEf1ZKe3j1w0Piauryl8BQIlej0TBS18A4ACzhjhWXhCs13bO1S88LvPR5mBFXok3XOT6zPOnKDFktw==", + "requires": { + "@smithy/smithy-client": "^2.1.15", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, "@aws-sdk/credential-provider-cognito-identity": { "version": "3.289.0", "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.289.0.tgz", @@ -25052,91 +25925,6 @@ } } }, - "@aws-sdk/eventstream-codec": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-codec/-/eventstream-codec-3.258.0.tgz", - "integrity": "sha512-DTd6aggICXOH74tBQEliwLbeoXRbQ3uROBWYl7DdrbAemzHACDFzPCXXa9MTJMZcq3Tva8/E/3bv1fXuU/xkAA==", - "requires": { - "@aws-crypto/crc32": "3.0.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-hex-encoding": "3.201.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "@aws-sdk/eventstream-serde-browser": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.258.0.tgz", - "integrity": "sha512-bRcNxDrBFd0UsrLh88kwpvGDHjVupZP3gPJ5b7wseCuuWJzp56/7hNI97IywgARta91rcaf4K147VxFkSNaVlw==", - "requires": { - "@aws-sdk/eventstream-serde-universal": "3.258.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "@aws-sdk/eventstream-serde-config-resolver": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.257.0.tgz", - "integrity": "sha512-YbUETgkcFqPJmwcBozHbx3Xloh7mPk9SunNB+Ndy8egwV3L/jNZnEzZnPOtWbD10AXSuJvSbGQ8+l4FblRqZqw==", - "requires": { - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "@aws-sdk/eventstream-serde-node": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.258.0.tgz", - "integrity": "sha512-KvuitKB3fK1ZjWcB+U6d8JNv0WJtE1zvW5DXI/OabzaIR4i/LNis7469EwTsEkTqG3mV3wUa6cBA6kBSJWTVeA==", - "requires": { - "@aws-sdk/eventstream-serde-universal": "3.258.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "@aws-sdk/eventstream-serde-universal": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.258.0.tgz", - "integrity": "sha512-woHNrBp8YSIaf3mcRJA0SyKFnjeLX2fRudLZq9wd555Zz/U7f45AuZOpXlU66tIZiYJI1xm32VRSIYfpIwXI+A==", - "requires": { - "@aws-sdk/eventstream-codec": "3.258.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, "@aws-sdk/fetch-http-handler": { "version": "3.257.0", "resolved": "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.257.0.tgz", @@ -25156,24 +25944,6 @@ } } }, - "@aws-sdk/hash-blob-browser": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.257.0.tgz", - "integrity": "sha512-3Nrcci3pCCc0ZILMGa/oUMq9le6nhvgCoVxFy5skYs/mQu4QnA8HcK0u4bTueW41rBj0ZW6BHLk/2SmigIkjCQ==", - "requires": { - "@aws-sdk/chunked-blob-reader": "3.188.0", - "@aws-sdk/chunked-blob-reader-native": "3.208.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, "@aws-sdk/hash-node": { "version": "3.257.0", "resolved": "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.257.0.tgz", @@ -25192,23 +25962,6 @@ } } }, - "@aws-sdk/hash-stream-node": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.257.0.tgz", - "integrity": "sha512-A24+EI0sO+IYO78sQPY4vVx7vzToc6XAobQqowmBJ6GXXILK72d3MR3NVbm0lmcS4Dh6MVZEFQD/DCyKvj2C7g==", - "requires": { - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-utf8": "3.254.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, "@aws-sdk/invalid-dependency": { "version": "3.257.0", "resolved": "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.257.0.tgz", @@ -25240,39 +25993,41 @@ } } }, - "@aws-sdk/md5-js": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.258.0.tgz", - "integrity": "sha512-aLdZ43sEiT68p7YYPHwKsWU1WDC8Wf8UQfb4pzbvhYNgr5VxN46AtbWTKxLAqK2adKS4FnbyX2i66fINg2dHdw==", - "requires": { - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-utf8": "3.254.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, "@aws-sdk/middleware-bucket-endpoint": { - "version": "3.259.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.259.0.tgz", - "integrity": "sha512-eY4Bf7ZeiYK2c2XQ5IU0TDneEYSnZbaFk+ysgAkNmGoLKBhybXiKy7Dh8djB3uXeNtsZ+fZaazWmsU2kxf6Ntg==", + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.451.0.tgz", + "integrity": "sha512-KWyZ1JGnYz2QbHuJtYTP1BVnMOfVopR8rP8dTinVb/JR5HfAYz4imICJlJUbOYRjN7wpA3PrRI8dNRjrSBjWJg==", "requires": { - "@aws-sdk/protocol-http": "3.257.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-arn-parser": "3.208.0", - "@aws-sdk/util-config-provider": "3.208.0", - "tslib": "^2.3.1" + "@aws-sdk/types": "3.451.0", + "@aws-sdk/util-arn-parser": "3.310.0", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "@smithy/util-config-provider": "^2.0.0", + "tslib": "^2.5.0" }, "dependencies": { + "@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, + "@aws-sdk/util-arn-parser": { + "version": "3.310.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.310.0.tgz", + "integrity": "sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==", + "requires": { + "tslib": "^2.5.0" + } + }, "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" } } }, @@ -25316,40 +26071,60 @@ } }, "@aws-sdk/middleware-expect-continue": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.257.0.tgz", - "integrity": "sha512-7HSRA2Ta0fTq9Ewznp6fYG7CYOoqr5TeqEhKL1HyFb5i6YmsCiz88JKNJTllD5O7uFcd7Td/fJ66pK4JttfaaQ==", + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.451.0.tgz", + "integrity": "sha512-vwG8o2Uk6biLDlOZnqXemsO4dS2HvrprUdxyouwu6hlzLFskg8nL122butn19JqXJKgcVLuSSLzT+xwqBWy2Rg==", "requires": { - "@aws-sdk/protocol-http": "3.257.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" + "@aws-sdk/types": "3.451.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" }, "dependencies": { + "@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" } } }, "@aws-sdk/middleware-flexible-checksums": { - "version": "3.259.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.259.0.tgz", - "integrity": "sha512-DwY3+cWaONvzJSVYQncfX+ZnoPnLVA7LfgR0mrgcvVZJFrqCr1lJeUmJOmE2/kcOQefPfSbKB/L4BP6vg2EUMQ==", + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.451.0.tgz", + "integrity": "sha512-eOkpcC2zgAvqs1w7Yp5nsk9LBIj6qLU5kaZuZEBOiFbNKIrTnPo6dQuhgvDcKHD6Y5W/cUjSBiFMs/ROb5aoug==", "requires": { "@aws-crypto/crc32": "3.0.0", "@aws-crypto/crc32c": "3.0.0", - "@aws-sdk/is-array-buffer": "3.201.0", - "@aws-sdk/protocol-http": "3.257.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-utf8": "3.254.0", - "tslib": "^2.3.1" + "@aws-sdk/types": "3.451.0", + "@smithy/is-array-buffer": "^2.0.0", + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" }, "dependencies": { + "@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" } } }, @@ -25371,18 +26146,28 @@ } }, "@aws-sdk/middleware-location-constraint": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.257.0.tgz", - "integrity": "sha512-pmm5rJR5aatXG0kC0KPBxkgoNn/ePcyVIYHGMEuJXRJm3ENy569QAH9UZeMFjprp3uuAbkqItQbY3MP8TYvuYA==", + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.451.0.tgz", + "integrity": "sha512-R4U2G7mybP0BMiQBJWTcB47g49F4PSXTiCsvMDp5WOEhpWvGQuO1ZIhTxCl5s5lgTSne063Os8W6KSdK2yG2TQ==", "requires": { - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" + "@aws-sdk/types": "3.451.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" }, "dependencies": { + "@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" } } }, @@ -25520,18 +26305,28 @@ } }, "@aws-sdk/middleware-ssec": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.257.0.tgz", - "integrity": "sha512-YcZrKeZk/0bsFvnTqp2rcF+6BSmeLTA65ZtyNNP2hh7Imaxg3kAQcueOJBeK4YP/5nU7a1mtt/4Q8BqbIjc41g==", + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.451.0.tgz", + "integrity": "sha512-hDkeBUiRsvuDbvsPha0/uJHE680WDzjAOoE6ZnLBoWsw7ry+Bw1ULMj0sCmpBVrQ7Gpivi/6zbezhClVmt3ITw==", "requires": { - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" + "@aws-sdk/types": "3.451.0", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" }, "dependencies": { + "@aws-sdk/types": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.451.0.tgz", + "integrity": "sha512-rhK+qeYwCIs+laJfWCcrYEjay2FR/9VABZJ2NRM89jV/fKqGVQR52E5DQqrI+oEIL5JHMhhnr4N4fyECMS35lw==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + } + }, "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" } } }, @@ -25669,6 +26464,25 @@ } } }, + "@aws-sdk/region-config-resolver": { + "version": "3.451.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.451.0.tgz", + "integrity": "sha512-3iMf4OwzrFb4tAAmoROXaiORUk2FvSejnHIw/XHvf/jjR4EqGGF95NZP/n/MeFZMizJWVssrwS412GmoEyoqhg==", + "requires": { + "@smithy/node-config-provider": "^2.1.5", + "@smithy/types": "^2.5.0", + "@smithy/util-config-provider": "^2.0.0", + "@smithy/util-middleware": "^2.0.6", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, "@aws-sdk/s3-request-presigner": { "version": "3.264.0", "resolved": "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.264.0.tgz", @@ -26063,44 +26877,6 @@ } } }, - "@aws-sdk/util-stream-browser": { - "version": "3.258.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-stream-browser/-/util-stream-browser-3.258.0.tgz", - "integrity": "sha512-MCAxHL3Hz/+eU4LZk0ZbLWAIUueH/jHpSbrloxZ3Dil2RL3w6NSJd5gE8zS7gs1B/eMcE600Brf5xSDR8kA5HA==", - "requires": { - "@aws-sdk/fetch-http-handler": "3.257.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-base64": "3.208.0", - "@aws-sdk/util-hex-encoding": "3.201.0", - "@aws-sdk/util-utf8": "3.254.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, - "@aws-sdk/util-stream-node": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-stream-node/-/util-stream-node-3.257.0.tgz", - "integrity": "sha512-UlLEerQCNejNulYmGXm/4X463n8n21foA2d6kgJ4AUSMWWhoRBjfwrM4gI7tA30zh9U81d6xbUtoOQTqKVtMTw==", - "requires": { - "@aws-sdk/node-http-handler": "3.257.0", - "@aws-sdk/types": "3.257.0", - "@aws-sdk/util-buffer-from": "3.208.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, "@aws-sdk/util-uri-escape": { "version": "3.201.0", "resolved": "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.201.0.tgz", @@ -26181,35 +26957,18 @@ } } }, - "@aws-sdk/util-waiter": { - "version": "3.257.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.257.0.tgz", - "integrity": "sha512-Fr6of3EDOcXVDs5534o7VsJMXdybB0uLy2LzeFAVSwGOY3geKhIquBAiUDqCVu9B+iTldrC0rQ9NIM7ZSpPG8w==", - "requires": { - "@aws-sdk/abort-controller": "3.257.0", - "@aws-sdk/types": "3.257.0", - "tslib": "^2.3.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" - } - } - }, "@aws-sdk/xml-builder": { - "version": "3.201.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.201.0.tgz", - "integrity": "sha512-brRdB1wwMgjWEnOQsv7zSUhIQuh7DEicrfslAqHop4S4FtSI3GQAShpQqgOpMTNFYcpaWKmE/Y1MJmNY7xLCnw==", + "version": "3.310.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.310.0.tgz", + "integrity": "sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==", "requires": { - "tslib": "^2.3.1" + "tslib": "^2.5.0" }, "dependencies": { "tslib": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", - "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" } } }, @@ -28944,6 +29703,843 @@ "@sinonjs/commons": "^1.7.0" } }, + "@smithy/abort-controller": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.0.13.tgz", + "integrity": "sha512-eeOPD+GF9BzF/Mjy3PICLePx4l0f3rG/nQegQHRLTloN5p1lSJJNZsyn+FzDnW8P2AduragZqJdtKNCxXozB1Q==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/chunked-blob-reader": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader/-/chunked-blob-reader-2.0.0.tgz", + "integrity": "sha512-k+J4GHJsMSAIQPChGBrjEmGS+WbPonCXesoqP9fynIqjn7rdOThdH8FAeCmokP9mxTYKQAKoHCLPzNlm6gh7Wg==", + "requires": { + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/chunked-blob-reader-native": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@smithy/chunked-blob-reader-native/-/chunked-blob-reader-native-2.0.1.tgz", + "integrity": "sha512-N2oCZRglhWKm7iMBu7S6wDzXirjAofi7tAd26cxmgibRYOBS4D3hGfmkwCpHdASZzwZDD8rluh0Rcqw1JeZDRw==", + "requires": { + "@smithy/util-base64": "^2.0.1", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/config-resolver": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.0.18.tgz", + "integrity": "sha512-761sJSgNbvsqcsKW6/WZbrZr4H+0Vp/QKKqwyrxCPwD8BsiPEXNHyYnqNgaeK9xRWYswjon0Uxbpe3DWQo0j/g==", + "requires": { + "@smithy/node-config-provider": "^2.1.5", + "@smithy/types": "^2.5.0", + "@smithy/util-config-provider": "^2.0.0", + "@smithy/util-middleware": "^2.0.6", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/credential-provider-imds": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.1.1.tgz", + "integrity": "sha512-gw5G3FjWC6sNz8zpOJgPpH5HGKrpoVFQpToNAwLwJVyI/LJ2jDJRjSKEsM6XI25aRpYjMSE/Qptxx305gN1vHw==", + "requires": { + "@smithy/node-config-provider": "^2.1.5", + "@smithy/property-provider": "^2.0.14", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/eventstream-codec": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.0.13.tgz", + "integrity": "sha512-CExbelIYp+DxAHG8RIs0l9QL7ElqhG4ym9BNoSpkPa4ptBQfzJdep3LbOSVJIE2VUdBAeObdeL6EDB3Jo85n3g==", + "requires": { + "@aws-crypto/crc32": "3.0.0", + "@smithy/types": "^2.5.0", + "@smithy/util-hex-encoding": "^2.0.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/eventstream-serde-browser": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.0.13.tgz", + "integrity": "sha512-OJ/2g/VxkzA+mYZxV102oX3CsiE+igTSmqq/ir3oEVG2kSIdRC00ryttj/lmL14W06ExNi0ysmfLxQkL8XrAZQ==", + "requires": { + "@smithy/eventstream-serde-universal": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/eventstream-serde-config-resolver": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.0.13.tgz", + "integrity": "sha512-2BI1CbnYuEvAYoWSeWJtPNygbIKiWeSLxCmDLnyM6wQV32Of7VptiQlaFXPxXp4zqn/rs3ocZ/T29rxE4s4Gsg==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/eventstream-serde-node": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.0.13.tgz", + "integrity": "sha512-7NbFwPafb924elFxCBDvm48jy/DeSrpFbFQN0uN2ThuY5HrEeubikS0t7WMva4Z4EnRoivpbuT0scb9vUIJKoA==", + "requires": { + "@smithy/eventstream-serde-universal": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/eventstream-serde-universal": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.0.13.tgz", + "integrity": "sha512-j0yFd5UfftM+ia9dxLRbheJDCkCZBHpcEzCsPO8BxVOTbdcX/auVJCv6ov/yvpCKsf4Hv3mOqi0Is1YogM2g3Q==", + "requires": { + "@smithy/eventstream-codec": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/fetch-http-handler": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.2.6.tgz", + "integrity": "sha512-PStY3XO1Ksjwn3wMKye5U6m6zxXpXrXZYqLy/IeCbh3nM9QB3Jgw/B0PUSLUWKdXg4U8qgEu300e3ZoBvZLsDg==", + "requires": { + "@smithy/protocol-http": "^3.0.9", + "@smithy/querystring-builder": "^2.0.13", + "@smithy/types": "^2.5.0", + "@smithy/util-base64": "^2.0.1", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/hash-blob-browser": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-2.0.14.tgz", + "integrity": "sha512-yWdghyPJIEqLYsaE7YVgd3YhM7jN4Pv6eJQvTomnMsz5K2qRBlpjUx3T9fKlElp1qdeQ7DNc3sAat4i9CUBO7Q==", + "requires": { + "@smithy/chunked-blob-reader": "^2.0.0", + "@smithy/chunked-blob-reader-native": "^2.0.1", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/hash-node": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.0.15.tgz", + "integrity": "sha512-t/qjEJZu/G46A22PAk1k/IiJZT4ncRkG5GOCNWN9HPPy5rCcSZUbh7gwp7CGKgJJ7ATMMg+0Td7i9o1lQTwOfQ==", + "requires": { + "@smithy/types": "^2.5.0", + "@smithy/util-buffer-from": "^2.0.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/hash-stream-node": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-2.0.15.tgz", + "integrity": "sha512-ZZ6kC/pHt5Dc2goXIIyC8uA7A4GUMSzdCynAabnZ3CSSaV6ctP8mlvVkqjPph0O3XzHlx/80gdLrNqi1GDPUsA==", + "requires": { + "@smithy/types": "^2.5.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/invalid-dependency": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.0.13.tgz", + "integrity": "sha512-XsGYhVhvEikX1Yz0kyIoLssJf2Rs6E0U2w2YuKdT4jSra5A/g8V2oLROC1s56NldbgnpesTYB2z55KCHHbKyjw==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/is-array-buffer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.0.0.tgz", + "integrity": "sha512-z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug==", + "requires": { + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/md5-js": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-2.0.15.tgz", + "integrity": "sha512-pAZaokib56XvhU0t/R9vAcr3L3bMhIakhF25X7EMSQ7LAURiLfce/tgON8I3x/dIbnZUyeRi8f2cx2azu6ATew==", + "requires": { + "@smithy/types": "^2.5.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/middleware-content-length": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.0.15.tgz", + "integrity": "sha512-xH4kRBw01gJgWiU+/mNTrnyFXeozpZHw39gLb3JKGsFDVmSrJZ8/tRqu27tU/ki1gKkxr2wApu+dEYjI3QwV1Q==", + "requires": { + "@smithy/protocol-http": "^3.0.9", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/middleware-endpoint": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.2.0.tgz", + "integrity": "sha512-tddRmaig5URk2106PVMiNX6mc5BnKIKajHHDxb7K0J5MLdcuQluHMGnjkv18iY9s9O0tF+gAcPd/pDXA5L9DZw==", + "requires": { + "@smithy/middleware-serde": "^2.0.13", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/shared-ini-file-loader": "^2.2.4", + "@smithy/types": "^2.5.0", + "@smithy/url-parser": "^2.0.13", + "@smithy/util-middleware": "^2.0.6", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/middleware-retry": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.0.20.tgz", + "integrity": "sha512-X2yrF/SHDk2WDd8LflRNS955rlzQ9daz9UWSp15wW8KtzoTXg3bhHM78HbK1cjr48/FWERSJKh9AvRUUGlIawg==", + "requires": { + "@smithy/node-config-provider": "^2.1.5", + "@smithy/protocol-http": "^3.0.9", + "@smithy/service-error-classification": "^2.0.6", + "@smithy/types": "^2.5.0", + "@smithy/util-middleware": "^2.0.6", + "@smithy/util-retry": "^2.0.6", + "tslib": "^2.5.0", + "uuid": "^8.3.2" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + } + }, + "@smithy/middleware-serde": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.0.13.tgz", + "integrity": "sha512-tBGbeXw+XsE6pPr4UaXOh+UIcXARZeiA8bKJWxk2IjJcD1icVLhBSUQH9myCIZLNNzJIH36SDjUX8Wqk4xJCJg==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/middleware-stack": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-2.0.7.tgz", + "integrity": "sha512-L1KLAAWkXbGx1t2jjCI/mDJ2dDNq+rp4/ifr/HcC6FHngxho5O7A5bQLpKHGlkfATH6fUnOEx0VICEVFA4sUzw==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/node-config-provider": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.1.5.tgz", + "integrity": "sha512-3Omb5/h4tOCuKRx4p4pkYTvEYRCYoKk52bOYbKUyz/G/8gERbagsN8jFm4FjQubkrcIqQEghTpQaUw6uk+0edw==", + "requires": { + "@smithy/property-provider": "^2.0.14", + "@smithy/shared-ini-file-loader": "^2.2.4", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/node-http-handler": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.1.9.tgz", + "integrity": "sha512-+K0q3SlNcocmo9OZj+fz67gY4lwhOCvIJxVbo/xH+hfWObvaxrMTx7JEzzXcluK0thnnLz++K3Qe7Z/8MDUreA==", + "requires": { + "@smithy/abort-controller": "^2.0.13", + "@smithy/protocol-http": "^3.0.9", + "@smithy/querystring-builder": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/property-provider": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.0.14.tgz", + "integrity": "sha512-k3D2qp9o6imTrLaXRj6GdLYEJr1sXqS99nLhzq8fYmJjSVOeMg/G+1KVAAc7Oxpu71rlZ2f8SSZxcSxkevuR0A==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/protocol-http": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-3.0.9.tgz", + "integrity": "sha512-U1wl+FhYu4/BC+rjwh1lg2gcJChQhytiNQSggREgQ9G2FzmoK9sACBZvx7thyWMvRyHQTE22mO2d5UM8gMKDBg==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/querystring-builder": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.0.13.tgz", + "integrity": "sha512-JhXKwp3JtsFUe96XLHy/nUPEbaXqn6r7xE4sNaH8bxEyytE5q1fwt0ew/Ke6+vIC7gP87HCHgQpJHg1X1jN2Fw==", + "requires": { + "@smithy/types": "^2.5.0", + "@smithy/util-uri-escape": "^2.0.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/querystring-parser": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.0.13.tgz", + "integrity": "sha512-TEiT6o8CPZVxJ44Rly/rrsATTQsE+b/nyBVzsYn2sa75xAaZcurNxsFd8z1haoUysONiyex24JMHoJY6iCfLdA==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/service-error-classification": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-2.0.6.tgz", + "integrity": "sha512-fCQ36frtYra2fqY2/DV8+3/z2d0VB/1D1hXbjRcM5wkxTToxq6xHbIY/NGGY6v4carskMyG8FHACxgxturJ9Pg==", + "requires": { + "@smithy/types": "^2.5.0" + } + }, + "@smithy/shared-ini-file-loader": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.2.4.tgz", + "integrity": "sha512-9dRknGgvYlRIsoTcmMJXuoR/3ekhGwhRq4un3ns2/byre4Ql5hyUN4iS0x8eITohjU90YOnUCsbRwZRvCkbRfw==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/signature-v4": { + "version": "2.0.15", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.0.15.tgz", + "integrity": "sha512-SRTEJSEhQYVlBKIIdZ9SZpqW+KFqxqcNnEcBX+8xkDdWx+DItme9VcCDkdN32yTIrICC+irUufnUdV7mmHPjoA==", + "requires": { + "@smithy/eventstream-codec": "^2.0.13", + "@smithy/is-array-buffer": "^2.0.0", + "@smithy/types": "^2.5.0", + "@smithy/util-hex-encoding": "^2.0.0", + "@smithy/util-middleware": "^2.0.6", + "@smithy/util-uri-escape": "^2.0.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/smithy-client": { + "version": "2.1.15", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.1.15.tgz", + "integrity": "sha512-rngZcQu7Jvs9UbHihK1EI67RMPuzkc3CJmu4MBgB7D7yBnMGuFR86tq5rqHfL2gAkNnMelBN/8kzQVvZjNKefQ==", + "requires": { + "@smithy/middleware-stack": "^2.0.7", + "@smithy/types": "^2.5.0", + "@smithy/util-stream": "^2.0.20", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/types": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-2.5.0.tgz", + "integrity": "sha512-/a31lYofrMBkJb3BuPlYJTMKDj0hUmKUP6JFZQu6YVuQVoAjubiY0A52U9S0Uysd33n/djexCUSNJ+G9bf3/aA==", + "requires": { + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/url-parser": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.0.13.tgz", + "integrity": "sha512-okWx2P/d9jcTsZWTVNnRMpFOE7fMkzloSFyM53fA7nLKJQObxM2T4JlZ5KitKKuXq7pxon9J6SF2kCwtdflIrA==", + "requires": { + "@smithy/querystring-parser": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-base64": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-2.0.1.tgz", + "integrity": "sha512-DlI6XFYDMsIVN+GH9JtcRp3j02JEVuWIn/QOZisVzpIAprdsxGveFed0bjbMRCqmIFe8uetn5rxzNrBtIGrPIQ==", + "requires": { + "@smithy/util-buffer-from": "^2.0.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-body-length-browser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-2.0.0.tgz", + "integrity": "sha512-JdDuS4ircJt+FDnaQj88TzZY3+njZ6O+D3uakS32f2VNnDo3vyEuNdBOh/oFd8Df1zSZOuH1HEChk2AOYDezZg==", + "requires": { + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-body-length-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-2.1.0.tgz", + "integrity": "sha512-/li0/kj/y3fQ3vyzn36NTLGmUwAICb7Jbe/CsWCktW363gh1MOcpEcSO3mJ344Gv2dqz8YJCLQpb6hju/0qOWw==", + "requires": { + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-buffer-from": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.0.0.tgz", + "integrity": "sha512-/YNnLoHsR+4W4Vf2wL5lGv0ksg8Bmk3GEGxn2vEQt52AQaPSCuaO5PM5VM7lP1K9qHRKHwrPGktqVoAHKWHxzw==", + "requires": { + "@smithy/is-array-buffer": "^2.0.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-config-provider": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-2.0.0.tgz", + "integrity": "sha512-xCQ6UapcIWKxXHEU4Mcs2s7LcFQRiU3XEluM2WcCjjBtQkUN71Tb+ydGmJFPxMUrW/GWMgQEEGipLym4XG0jZg==", + "requires": { + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-defaults-mode-browser": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.19.tgz", + "integrity": "sha512-VHP8xdFR7/orpiABJwgoTB0t8Zhhwpf93gXhNfUBiwAE9O0rvsv7LwpQYjgvbOUDDO8JfIYQB2GYJNkqqGWsXw==", + "requires": { + "@smithy/property-provider": "^2.0.14", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "bowser": "^2.11.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-defaults-mode-node": { + "version": "2.0.25", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.25.tgz", + "integrity": "sha512-jkmep6/JyWmn2ADw9VULDeGbugR4N/FJCKOt+gYyVswmN1BJOfzF2umaYxQ1HhQDvna3kzm1Dbo1qIfBW4iuHA==", + "requires": { + "@smithy/config-resolver": "^2.0.18", + "@smithy/credential-provider-imds": "^2.1.1", + "@smithy/node-config-provider": "^2.1.5", + "@smithy/property-provider": "^2.0.14", + "@smithy/smithy-client": "^2.1.15", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-endpoints": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-1.0.4.tgz", + "integrity": "sha512-FPry8j1xye5yzrdnf4xKUXVnkQErxdN7bUIaqC0OFoGsv2NfD9b2UUMuZSSt+pr9a8XWAqj0HoyVNUfPiZ/PvQ==", + "requires": { + "@smithy/node-config-provider": "^2.1.5", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-hex-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-2.0.0.tgz", + "integrity": "sha512-c5xY+NUnFqG6d7HFh1IFfrm3mGl29lC+vF+geHv4ToiuJCBmIfzx6IeHLg+OgRdPFKDXIw6pvi+p3CsscaMcMA==", + "requires": { + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-2.0.6.tgz", + "integrity": "sha512-7W4uuwBvSLgKoLC1x4LfeArCVcbuHdtVaC4g30kKsD1erfICyQ45+tFhhs/dZNeQg+w392fhunCm/+oCcb6BSA==", + "requires": { + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-retry": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-2.0.6.tgz", + "integrity": "sha512-PSO41FofOBmyhPQJwBQJ6mVlaD7Sp9Uff9aBbnfBJ9eqXOE/obrqQjn0PNdkfdvViiPXl49BINfnGcFtSP4kYw==", + "requires": { + "@smithy/service-error-classification": "^2.0.6", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-stream": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.0.20.tgz", + "integrity": "sha512-tT8VASuD8jJu0yjHEMTCPt1o5E3FVzgdsxK6FQLAjXKqVv5V8InCnc0EOsYrijgspbfDqdAJg7r0o2sySfcHVg==", + "requires": { + "@smithy/fetch-http-handler": "^2.2.6", + "@smithy/node-http-handler": "^2.1.9", + "@smithy/types": "^2.5.0", + "@smithy/util-base64": "^2.0.1", + "@smithy/util-buffer-from": "^2.0.0", + "@smithy/util-hex-encoding": "^2.0.0", + "@smithy/util-utf8": "^2.0.2", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-uri-escape": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-2.0.0.tgz", + "integrity": "sha512-ebkxsqinSdEooQduuk9CbKcI+wheijxEb3utGXkCoYQkJnwTnLbH1JXGimJtUkQwNQbsbuYwG2+aFVyZf5TLaw==", + "requires": { + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-utf8": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.0.2.tgz", + "integrity": "sha512-qOiVORSPm6Ce4/Yu6hbSgNHABLP2VMv8QOC3tTDNHHlWY19pPyc++fBTbZPtx6egPXi4HQxKDnMxVxpbtX2GoA==", + "requires": { + "@smithy/util-buffer-from": "^2.0.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, + "@smithy/util-waiter": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-2.0.13.tgz", + "integrity": "sha512-YovIQatiuM7giEsRFotqJa2i3EbU2EE3PgtpXgtLgpx5rXiZMAwPxXYDFVFhuO0lbqvc/Zx4n+ZIisXOHPSqyg==", + "requires": { + "@smithy/abort-controller": "^2.0.13", + "@smithy/types": "^2.5.0", + "tslib": "^2.5.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + } + }, "@szmarczak/http-timer": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", @@ -28953,14 +30549,14 @@ } }, "@techteamer/ocsp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@techteamer/ocsp/-/ocsp-1.0.0.tgz", - "integrity": "sha512-lNAOoFHaZN+4huo30ukeqVrUmfC+avoEBYQ11QAnAw1PFhnI5oBCg8O/TNiCoEWix7gNGBIEjrQwtPREqKMPog==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@techteamer/ocsp/-/ocsp-1.0.1.tgz", + "integrity": "sha512-q4pW5wAC6Pc3JI8UePwE37CkLQ5gDGZMgjSX4MEEm4D4Di59auDQ8UNIDzC4gRnPNmmcwjpPxozq8p5pjiOmOw==", "requires": { "asn1.js": "^5.4.1", "asn1.js-rfc2560": "^5.0.1", "asn1.js-rfc5280": "^3.0.0", - "async": "^3.2.1", + "async": "^3.2.4", "simple-lru-cache": "^0.0.2" } }, @@ -29321,7 +30917,6 @@ "requires": { "@tooljet-plugins/common": "file:../common", "knex": "^0.95.15", - "mysql": "^2.18.1", "mysql2": "^3.6.0", "react": "^17.0.2", "rimraf": "^3.0.2" @@ -29447,9 +31042,9 @@ "version": "file:packages/snowflake", "requires": { "@tooljet-plugins/common": "file:../common", - "@types/snowflake-sdk": "^1.6.12", + "@types/snowflake-sdk": "^1.6.17", "react": "^17.0.2", - "snowflake-sdk": "^1.6.23" + "snowflake-sdk": "^1.9.1" } }, "@tooljet-plugins/stripe": { @@ -29498,7 +31093,8 @@ "@tootallnate/once": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true }, "@types/babel__core": { "version": "7.20.0", @@ -29696,9 +31292,9 @@ } }, "@types/snowflake-sdk": { - "version": "1.6.12", - "resolved": "https://registry.npmjs.org/@types/snowflake-sdk/-/snowflake-sdk-1.6.12.tgz", - "integrity": "sha512-Ndz6x750TkuvHvdRBH8Cb7T8et2anyyY1j8kFChJ+s8FtURNRKut7DWaq9YdseKXZvqwA3ZYZxKaQRwtSq67eg==", + "version": "1.6.17", + "resolved": "https://registry.npmjs.org/@types/snowflake-sdk/-/snowflake-sdk-1.6.17.tgz", + "integrity": "sha512-nvN0EX7Ni10hhowPZ/Tbj8glrsD0TPugtyeoZEUqMvuSRikpYsG7XNVZrQULiWy8+J8nPhLBf/DDLmxHI644GA==", "requires": { "@types/node": "*", "generic-pool": "^3.9.0" @@ -30088,11 +31684,6 @@ "color-convert": "^2.0.1" } }, - "any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" - }, "anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", @@ -30248,21 +31839,6 @@ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" }, - "ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", - "requires": { - "tslib": "^2.0.1" - }, - "dependencies": { - "tslib": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", - "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==" - } - } - }, "astral-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", @@ -30464,11 +32040,6 @@ "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", "dev": true }, - "better-eval": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/better-eval/-/better-eval-1.3.0.tgz", - "integrity": "sha512-rQdKZHTWok2uC3wHyGwoV6mOxhnOyp07iHhyWQlS+U5zkYyhOEOT6Ri4Q0vPThTqCYs6RCbtAfTbPG+lUZkocw==" - }, "big-integer": { "version": "1.6.51", "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", @@ -30480,9 +32051,9 @@ "integrity": "sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ==" }, "bignumber.js": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.1.tgz", - "integrity": "sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==" + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.1.2.tgz", + "integrity": "sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==" }, "binascii": { "version": "0.0.2", @@ -30841,11 +32412,6 @@ "integrity": "sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A==", "dev": true }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - }, "cacache": { "version": "15.3.0", "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", @@ -31381,11 +32947,6 @@ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", "dev": true }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - }, "conventional-changelog-angular": { "version": "5.0.13", "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", @@ -31531,11 +33092,6 @@ } } }, - "copy-to": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/copy-to/-/copy-to-2.0.1.tgz", - "integrity": "sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==" - }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", @@ -31691,11 +33247,6 @@ "assert-plus": "^1.0.0" } }, - "data-uri-to-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", - "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" - }, "data-urls": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", @@ -31801,21 +33352,14 @@ "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==" + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true }, "deepmerge": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==" }, - "default-user-agent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/default-user-agent/-/default-user-agent-1.0.0.tgz", - "integrity": "sha512-bDF7bg6OSNcSwFWPu4zYKpVkJZQYVrAANMYB8bc9Szem1D0yKdm4sa/rOCs2aC9+2GMqQ7KnwtZRvDhmLF0dXw==", - "requires": { - "os-name": "~1.0.3" - } - }, "defaults": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", @@ -31840,66 +33384,6 @@ "object-keys": "^1.1.1" } }, - "degenerator": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-3.0.4.tgz", - "integrity": "sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==", - "requires": { - "ast-types": "^0.13.2", - "escodegen": "^1.8.1", - "esprima": "^4.0.0", - "vm2": "^3.9.17" - }, - "dependencies": { - "escodegen": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", - "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", - "requires": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - } - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==" - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "requires": { - "prelude-ls": "~1.1.2" - } - } - } - }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -31937,11 +33421,6 @@ "minimalistic-assert": "^1.0.0" } }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - }, "detect-indent": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", @@ -31993,11 +33472,6 @@ } } }, - "digest-header": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/digest-header/-/digest-header-1.1.0.tgz", - "integrity": "sha512-glXVh42vz40yZb9Cq2oMOt70FIoWiv+vxNvdKdU8CwjLad25qHM3trLxhl9bVjdr6WaslIXhWpn0NO8T/67Qjg==" - }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -32087,11 +33561,6 @@ "safe-buffer": "^5.0.1" } }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, "electron-to-chromium": { "version": "1.4.286", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.286.tgz", @@ -32294,11 +33763,6 @@ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, "escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", @@ -32554,12 +34018,14 @@ "estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true }, "event-target-shim": { "version": "5.0.1", @@ -32640,14 +34106,6 @@ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - }, "external-editor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", @@ -32695,7 +34153,8 @@ "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true }, "fast-text-encoding": { "version": "1.0.6", @@ -32710,6 +34169,11 @@ "strnum": "^1.0.5" } }, + "fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==" + }, "fastq": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", @@ -32764,11 +34228,6 @@ "flat-cache": "^3.0.4" } }, - "file-uri-to-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", - "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==" - }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -32884,23 +34343,6 @@ "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==" }, - "formstream": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/formstream/-/formstream-1.2.0.tgz", - "integrity": "sha512-ef4F+FQLnQLly1/AZ5OGNgGzzlOmp+T7+L/TaXASJ1GrETrpZb78/Mz7z+1Ra5FX3nLZE0WIOInGOoa81LxWew==", - "requires": { - "destroy": "^1.0.4", - "mime": "^2.5.2", - "pause-stream": "~0.0.11" - }, - "dependencies": { - "mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - } - } - }, "from2": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", @@ -33018,38 +34460,6 @@ "dev": true, "optional": true }, - "ftp": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", - "integrity": "sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==", - "requires": { - "readable-stream": "1.1.x", - "xregexp": "2.0.0" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" - }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" - } - } - }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", @@ -33283,44 +34693,6 @@ "get-intrinsic": "^1.1.1" } }, - "get-uri": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-3.0.2.tgz", - "integrity": "sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==", - "requires": { - "@tootallnate/once": "1", - "data-uri-to-buffer": "3", - "debug": "4", - "file-uri-to-path": "2", - "fs-extra": "^8.1.0", - "ftp": "^0.3.10" - }, - "dependencies": { - "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } - } - }, "getopts": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/getopts/-/getopts-2.2.5.tgz", @@ -33784,34 +35156,11 @@ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "dependencies": { - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - } - } - }, "http-proxy-agent": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, "requires": { "@tootallnate/once": "1", "agent-base": "6", @@ -33871,6 +35220,7 @@ "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } @@ -34157,11 +35507,6 @@ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" - }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -36441,51 +37786,6 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "mysql": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/mysql/-/mysql-2.18.1.tgz", - "integrity": "sha512-Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig==", - "requires": { - "bignumber.js": "9.0.0", - "readable-stream": "2.3.7", - "safe-buffer": "5.1.2", - "sqlstring": "2.3.1" - }, - "dependencies": { - "bignumber.js": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz", - "integrity": "sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A==" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, "mysql2": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.6.0.tgz", @@ -36531,16 +37831,6 @@ } } }, - "mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "requires": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, "named-placeholders": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.3.tgz", @@ -36590,11 +37880,6 @@ "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz", "integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==" }, - "netmask": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", - "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==" - }, "nock": { "version": "13.3.0", "resolved": "https://registry.npmjs.org/nock/-/nock-13.3.0.tgz", @@ -37604,15 +38889,6 @@ "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==" }, - "os-name": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/os-name/-/os-name-1.0.3.tgz", - "integrity": "sha512-f5estLO2KN8vgtTRaILIgEGBoBrMnZ3JQ7W9TMZCnOIGwHe8TRGSpcagnWDo+Dfhd/z08k9Xe75hvciJJ8Qaew==", - "requires": { - "osx-release": "^1.0.0", - "win-release": "^1.0.0" - } - }, "os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", @@ -37627,14 +38903,6 @@ "os-tmpdir": "^1.0.0" } }, - "osx-release": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/osx-release/-/osx-release-1.1.0.tgz", - "integrity": "sha512-ixCMMwnVxyHFQLQnINhmIpWqXIfS2YOXchwQrk+OFzmo6nDjQ0E4KXAyyUh0T0MZgV4bUhkRrAbVqlE4yLVq4A==", - "requires": { - "minimist": "^1.1.0" - } - }, "p-cancelable": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", @@ -37728,39 +38996,6 @@ "p-reduce": "^2.0.0" } }, - "pac-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-5.0.0.tgz", - "integrity": "sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==", - "requires": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4", - "get-uri": "3", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "5", - "pac-resolver": "^5.0.0", - "raw-body": "^2.2.0", - "socks-proxy-agent": "5" - } - }, - "pac-resolver": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-5.0.1.tgz", - "integrity": "sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==", - "requires": { - "degenerator": "^3.0.2", - "ip": "^1.1.5", - "netmask": "^2.0.2" - }, - "dependencies": { - "ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" - } - } - }, "package-json": { "version": "6.5.0", "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", @@ -38153,14 +39388,6 @@ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, - "pause-stream": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", - "integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==", - "requires": { - "through": "~2.3" - } - }, "pbkdf2": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", @@ -38472,21 +39699,6 @@ "genfun": "^5.0.0" } }, - "proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-5.0.0.tgz", - "integrity": "sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==", - "requires": { - "agent-base": "^6.0.0", - "debug": "4", - "http-proxy-agent": "^4.0.0", - "https-proxy-agent": "^5.0.0", - "lru-cache": "^5.1.1", - "pac-proxy-agent": "^5.0.0", - "proxy-from-env": "^1.0.0", - "socks-proxy-agent": "^5.0.0" - } - }, "proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", @@ -38619,17 +39831,6 @@ "safe-buffer": "^5.1.0" } }, - "raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, "rc": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", @@ -39377,11 +40578,6 @@ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", "dev": true }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, "sha.js": { "version": "2.4.11", "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", @@ -39501,29 +40697,28 @@ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" }, "snowflake-sdk": { - "version": "1.6.23", - "resolved": "https://registry.npmjs.org/snowflake-sdk/-/snowflake-sdk-1.6.23.tgz", - "integrity": "sha512-meKcFQ2NggyhItmZ019JJ5UAeQiN0n98P7plAhM9DjVvI04JngvprUsmluu7c6Ujo/IYQC6jC8/7+cmgiMC7Bw==", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/snowflake-sdk/-/snowflake-sdk-1.9.1.tgz", + "integrity": "sha512-gLtIDmGIA5I9F1skotS8vJ7rJXU7pQsFYx9d152mgvrDsAp88HsRFasybuDerFNmc+59ae0o+4lvgDNVz9GFIg==", "requires": { + "@aws-sdk/client-s3": "^3.388.0", "@azure/storage-blob": "^12.11.0", "@google-cloud/storage": "^6.9.3", - "@techteamer/ocsp": "1.0.0", + "@techteamer/ocsp": "1.0.1", "agent-base": "^6.0.2", "asn1.js-rfc2560": "^5.0.0", "asn1.js-rfc5280": "^3.0.0", - "async": "^3.2.3", - "aws-sdk": "^2.878.0", - "axios": "^0.27.2", - "better-eval": "^1.3.0", + "axios": "^1.6.0", "big-integer": "^1.6.43", - "bignumber.js": "^2.4.0", + "bignumber.js": "^9.1.2", "binascii": "0.0.2", "bn.js": "^5.2.1", "browser-request": "^0.3.3", "debug": "^3.2.6", "expand-tilde": "^2.0.2", "extend": "^3.0.2", - "fast-xml-parser": "^4.1.3", + "fast-xml-parser": "^4.2.5", + "fastest-levenshtein": "^1.0.16", "generic-pool": "^3.8.2", "glob": "^7.1.6", "https-proxy-agent": "^5.0.1", @@ -39535,10 +40730,8 @@ "open": "^7.3.1", "python-struct": "^1.1.3", "simple-lru-cache": "^0.0.2", - "string-similarity": "^4.0.4", "tmp": "^0.2.1", - "urllib": "^2.38.0", - "uuid": "^3.3.2", + "uuid": "^8.3.2", "winston": "^3.1.0" }, "dependencies": { @@ -39574,13 +40767,6 @@ "retry-request": "^5.0.0", "teeny-request": "^8.0.0", "uuid": "^8.0.0" - }, - "dependencies": { - "uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - } } }, "@tootallnate/once": { @@ -39594,19 +40780,15 @@ "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" }, "axios": { - "version": "0.27.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", - "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", "requires": { - "follow-redirects": "^1.14.9", - "form-data": "^4.0.0" + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, - "bignumber.js": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-2.4.0.tgz", - "integrity": "sha512-uw4ra6Cv483Op/ebM0GBKKfxZlSmn6NgFRby5L3yGTlunLj53KQgndDlqy2WVFOwgvurocApYkSud0aO+mvrpQ==" - }, "debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", @@ -39616,9 +40798,9 @@ } }, "fast-xml-parser": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.2.2.tgz", - "integrity": "sha512-DLzIPtQqmvmdq3VUKR7T6omPK/VCRNqgFlGtbESfyhcH2R4I8EzK1/K6E8PkRCK2EabWrUHK32NjYRbEFnnz0Q==", + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.3.2.tgz", + "integrity": "sha512-rmrXUXwbJedoXkStenj1kkljNF7ugn5ZjR9FJcwmCfcCbtOMDghPajbc+Tck6vE6F5XsDmx+Pr2le9fw8+pXBg==", "requires": { "strnum": "^1.0.5" } @@ -39801,6 +40983,11 @@ "rimraf": "^3.0.0" } }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -39821,6 +41008,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-5.0.1.tgz", "integrity": "sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==", + "dev": true, "requires": { "agent-base": "^6.0.2", "debug": "4", @@ -39848,7 +41036,7 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "devOptional": true + "dev": true }, "source-map-support": { "version": "0.5.21", @@ -39930,11 +41118,6 @@ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" }, - "sqlstring": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.1.tgz", - "integrity": "sha512-ooAzh/7dxIG5+uDik1z/Rd1vli0+38izZhGzSa34FwR7IbelPWCCKSNIl8jlL/F7ERvy8CB2jNeM1E9i9mXMAQ==" - }, "sshpk": { "version": "1.17.0", "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", @@ -39987,11 +41170,6 @@ "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz", "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==" }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - }, "stoppable": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/stoppable/-/stoppable-1.1.0.tgz", @@ -40047,11 +41225,6 @@ "strip-ansi": "^6.0.0" } }, - "string-similarity": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/string-similarity/-/string-similarity-4.0.4.tgz", - "integrity": "sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==" - }, "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -40525,22 +41698,6 @@ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, - "thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "requires": { - "any-promise": "^1.0.0" - } - }, - "thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "requires": { - "thenify": ">= 3.1.0 < 4" - } - }, "throat": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", @@ -40601,11 +41758,6 @@ "is-number": "^7.0.0" } }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - }, "tough-cookie": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", @@ -40823,14 +41975,6 @@ "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" }, - "unescape": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unescape/-/unescape-1.0.1.tgz", - "integrity": "sha512-O0+af1Gs50lyH1nUu3ZyYS1cRh01Q/kUKatTOkSs7jukXE6/NebucDVxyiDsA9AQ4JC1V1jUH9EO8JX2nMDgGQ==", - "requires": { - "extend-shallow": "^2.0.1" - } - }, "unique-filename": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", @@ -40866,11 +42010,6 @@ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - }, "upath": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", @@ -41065,48 +42204,6 @@ "prepend-http": "^2.0.0" } }, - "urllib": { - "version": "2.40.0", - "resolved": "https://registry.npmjs.org/urllib/-/urllib-2.40.0.tgz", - "integrity": "sha512-XDZjoijtzsbkXTXgM+A/sJM002nwoYsc46YOYr6MNH2jUUw1nCBf2ywT1WaPsVEWJX4Yr+9isGmYj4+yofFn9g==", - "requires": { - "any-promise": "^1.3.0", - "content-type": "^1.0.2", - "debug": "^2.6.9", - "default-user-agent": "^1.0.0", - "digest-header": "^1.0.0", - "ee-first": "~1.1.1", - "formstream": "^1.1.0", - "humanize-ms": "^1.2.0", - "iconv-lite": "^0.4.15", - "ip": "^1.1.5", - "proxy-agent": "^5.0.0", - "pump": "^3.0.0", - "qs": "^6.4.0", - "statuses": "^1.3.1", - "utility": "^1.16.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, "util": { "version": "0.12.5", "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", @@ -41133,28 +42230,6 @@ "object.getownpropertydescriptors": "^2.0.3" } }, - "utility": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/utility/-/utility-1.18.0.tgz", - "integrity": "sha512-PYxZDA+6QtvRvm//++aGdmKG/cI07jNwbROz0Ql+VzFV1+Z0Dy55NI4zZ7RHc9KKpBePNFwoErqIuqQv/cjiTA==", - "requires": { - "copy-to": "^2.0.1", - "escape-html": "^1.0.3", - "mkdirp": "^0.5.1", - "mz": "^2.7.0", - "unescape": "^1.0.1" - }, - "dependencies": { - "mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "requires": { - "minimist": "^1.2.6" - } - } - } - }, "uuid": { "version": "3.4.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", @@ -41212,27 +42287,6 @@ "extsprintf": "^1.2.0" } }, - "vm2": { - "version": "3.9.19", - "resolved": "https://registry.npmjs.org/vm2/-/vm2-3.9.19.tgz", - "integrity": "sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==", - "requires": { - "acorn": "^8.7.0", - "acorn-walk": "^8.2.0" - }, - "dependencies": { - "acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==" - }, - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" - } - } - }, "w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", @@ -41396,21 +42450,6 @@ } } }, - "win-release": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/win-release/-/win-release-1.1.1.tgz", - "integrity": "sha512-iCRnKVvGxOQdsKhcQId2PXV1vV3J/sDPXKA4Oe9+Eti2nb2ESEsYHRYls/UjoUW3bIc5ZDO8dTH50A/5iVN+bw==", - "requires": { - "semver": "^5.0.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, "winston": { "version": "3.8.2", "resolved": "https://registry.npmjs.org/winston/-/winston-3.8.2.tgz", @@ -41517,7 +42556,8 @@ "word-wrap": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true }, "wordwrap": { "version": "1.0.0", @@ -41709,11 +42749,6 @@ "resolved": "https://registry.npmjs.org/xpath.js/-/xpath.js-1.1.0.tgz", "integrity": "sha512-jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ==" }, - "xregexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", - "integrity": "sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==" - }, "xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", diff --git a/plugins/packages/snowflake/lib/index.ts b/plugins/packages/snowflake/lib/index.ts index 1ec6c95f05..a7fc47172f 100644 --- a/plugins/packages/snowflake/lib/index.ts +++ b/plugins/packages/snowflake/lib/index.ts @@ -52,9 +52,12 @@ export default class Snowflake implements QueryService { } async testConnection(sourceOptions: SourceOptions): Promise { - await this.getConnection(sourceOptions, {}, false); + const connection = await this.getConnection(sourceOptions, {}, false); + const isConnectionValid = await connection.isValidAsync(); - return { status: 'ok' }; + if (isConnectionValid) return { status: 'ok' }; + + throw new Error('Connection is invalid'); } async connAsync(connection: snowflake.Connection) { @@ -76,6 +79,7 @@ export default class Snowflake implements QueryService { schema: sourceOptions.schema, role: sourceOptions.role, clientSessionKeepAlive: true, + clientSessionKeepAliveHeartbeatFrequency: 900, }); return await this.connAsync(connection); @@ -91,7 +95,7 @@ export default class Snowflake implements QueryService { if (checkCache) { let connection = await getCachedConnection(dataSourceId, dataSourceUpdatedAt); - if (connection) { + if (connection && (await connection.isValidAsync())) { return connection; } else { connection = await this.buildConnection(sourceOptions); diff --git a/plugins/packages/snowflake/package.json b/plugins/packages/snowflake/package.json index 32bd82f51b..5fca7b4b20 100644 --- a/plugins/packages/snowflake/package.json +++ b/plugins/packages/snowflake/package.json @@ -18,8 +18,8 @@ "homepage": "https://github.com/tooljet/tooljet#readme", "dependencies": { "@tooljet-plugins/common": "file:../common", - "@types/snowflake-sdk": "^1.6.12", + "@types/snowflake-sdk": "^1.6.17", "react": "^17.0.2", - "snowflake-sdk": "^1.6.23" + "snowflake-sdk": "^1.9.1" } } From 20f78c7ca1a51da01e7cca460217fa4656370e40 Mon Sep 17 00:00:00 2001 From: Akshay Sasidharan Date: Thu, 7 Dec 2023 18:33:54 +0530 Subject: [PATCH 58/63] update package lock files --- frontend/package-lock.json | 8 ++++---- plugins/package-lock.json | 27 +++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 4 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 7710bfdc04..c64b251548 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -20370,9 +20370,9 @@ "version": "1.0.0", "dependencies": { "@tooljet-plugins/common": "file:../common", - "@types/snowflake-sdk": "^1.6.12", + "@types/snowflake-sdk": "^1.6.17", "react": "^17.0.2", - "snowflake-sdk": "^1.6.23" + "snowflake-sdk": "^1.9.1" } }, "../plugins/packages/stripe": { @@ -68089,9 +68089,9 @@ "version": "file:../plugins/packages/snowflake", "requires": { "@tooljet-plugins/common": "file:../common", - "@types/snowflake-sdk": "^1.6.12", + "@types/snowflake-sdk": "^1.6.17", "react": "^17.0.2", - "snowflake-sdk": "^1.6.23" + "snowflake-sdk": "^1.9.1" } }, "@tooljet-plugins/stripe": { diff --git a/plugins/package-lock.json b/plugins/package-lock.json index 30ca9b0f36..10211813a3 100644 --- a/plugins/package-lock.json +++ b/plugins/package-lock.json @@ -23580,12 +23580,26 @@ "version": "1.0.0", "dependencies": { "@tooljet-plugins/common": "file:../common", + "form-data": "^4.0.0", "got": "^11.8.6", "react": "^17.0.2", "rimraf": "^3.0.2", "url": "^0.11.0" } }, + "packages/restapi/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, "packages/rethinkdb": { "name": "@tooljet-plugins/rethinkdb", "version": "1.0.0", @@ -30978,10 +30992,23 @@ "version": "file:packages/restapi", "requires": { "@tooljet-plugins/common": "file:../common", + "form-data": "^4.0.0", "got": "^11.8.6", "react": "^17.0.2", "rimraf": "^3.0.2", "url": "^0.11.0" + }, + "dependencies": { + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + } } }, "@tooljet-plugins/rethinkdb": { From 83b53c949bb9f9ed0745478499167ba5949b86c0 Mon Sep 17 00:00:00 2001 From: Sherfin Shamsudeen Date: Thu, 7 Dec 2023 19:17:03 +0530 Subject: [PATCH 59/63] [hotfix ]fix: event mapping query race condition (#8258) (#8261) * [hotfix ]fix: event mapping query race condition (#8258) * fix: event mapping query race condition * fixes: duplication dq from lds and gds * Bump version (#8262) --------- Co-authored-by: Arpit --- .version | 2 +- frontend/.version | 2 +- server/.version | 2 +- .../src/services/app_import_export.service.ts | 401 +++++++++--------- server/src/services/apps.service.ts | 108 ++--- 5 files changed, 269 insertions(+), 246 deletions(-) diff --git a/.version b/.version index b71a29b1f9..23a93836ae 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -2.24.4 +2.24.5 diff --git a/frontend/.version b/frontend/.version index b71a29b1f9..23a93836ae 100644 --- a/frontend/.version +++ b/frontend/.version @@ -1 +1 @@ -2.24.4 +2.24.5 diff --git a/server/.version b/server/.version index b71a29b1f9..23a93836ae 100644 --- a/server/.version +++ b/server/.version @@ -1 +1 @@ -2.24.4 +2.24.5 diff --git a/server/src/services/app_import_export.service.ts b/server/src/services/app_import_export.service.ts index 4ba42c298e..0f84d30f85 100644 --- a/server/src/services/app_import_export.service.ts +++ b/server/src/services/app_import_export.service.ts @@ -357,192 +357,203 @@ export class AppImportExportService { appResourceMappings.appDefaultEnvironmentMapping = appDefaultEnvironmentMapping; appResourceMappings.appVersionMapping = appVersionMapping; - appResourceMappings = await this.setupAppVersionAssociations( - manager, - importingAppVersions, - user, - appResourceMappings, - externalResourceMappings, - importingAppEnvironments, - importingDataSources, - importingDataSourceOptions, - importingDataQueries, - importingDefaultAppEnvironmentId, - importingPages, - importingComponents, - importingEvents - ); + /** + * as multiple operations are run within a single transaction using the transaction method provides a convenient way to handle transactions. + * The transaction will automatically committed when the function completes without throwing an error. + * If an error occurs during the function execution, the transaction will rolled back. + */ - if (!isNormalizedAppDefinitionSchema) { - for (const importingAppVersion of importingAppVersions) { - const updatedDefinition = this.replaceDataQueryIdWithinDefinitions( - importingAppVersion.definition, - appResourceMappings.dataQueryMapping - ); + await manager.transaction(async (transactionalEntityManager) => { + appResourceMappings = await this.setupAppVersionAssociations( + transactionalEntityManager, + importingAppVersions, + user, + appResourceMappings, + externalResourceMappings, + importingAppEnvironments, + importingDataSources, + importingDataSourceOptions, + importingDataQueries, + importingDefaultAppEnvironmentId, + importingPages, + importingComponents, + importingEvents + ); - let updateHomepageId = null; + if (!isNormalizedAppDefinitionSchema) { + for (const importingAppVersion of importingAppVersions) { + const updatedDefinition = this.replaceDataQueryIdWithinDefinitions( + importingAppVersion.definition, + appResourceMappings.dataQueryMapping + ); - if (updatedDefinition?.pages) { - for (const pageId of Object.keys(updatedDefinition?.pages)) { - const page = updatedDefinition.pages[pageId]; + let updateHomepageId = null; - const pageEvents = page.events || []; - const componentEvents = []; + if (updatedDefinition?.pages) { + for (const pageId of Object.keys(updatedDefinition?.pages)) { + const page = updatedDefinition.pages[pageId]; - const pagePostionIntheList = Object.keys(updatedDefinition?.pages).indexOf(pageId); + const pageEvents = page.events || []; + const componentEvents = []; - const isHompage = (updatedDefinition['homePageId'] as any) === pageId; + const pagePostionIntheList = Object.keys(updatedDefinition?.pages).indexOf(pageId); - const pageComponents = page.components; + const isHompage = (updatedDefinition['homePageId'] as any) === pageId; - const mappedComponents = transformComponentData( - pageComponents, - componentEvents, - appResourceMappings.componentsMapping, - isNormalizedAppDefinitionSchema - ); + const pageComponents = page.components; - const componentLayouts = []; + const mappedComponents = transformComponentData( + pageComponents, + componentEvents, + appResourceMappings.componentsMapping, + isNormalizedAppDefinitionSchema + ); - const newPage = manager.create(Page, { - name: page.name, - handle: page.handle, - appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], - index: pagePostionIntheList, - disabled: page.disabled || false, - hidden: page.hidden || false, - }); - const pageCreated = await manager.save(newPage); + const componentLayouts = []; - appResourceMappings.pagesMapping[pageId] = pageCreated.id; + const newPage = transactionalEntityManager.create(Page, { + name: page.name, + handle: page.handle, + appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], + index: pagePostionIntheList, + disabled: page.disabled || false, + hidden: page.hidden || false, + }); + const pageCreated = await transactionalEntityManager.save(newPage); - mappedComponents.forEach((component) => { - component.page = pageCreated; - }); + appResourceMappings.pagesMapping[pageId] = pageCreated.id; - const savedComponents = await manager.save(Component, mappedComponents); + mappedComponents.forEach((component) => { + component.page = pageCreated; + }); - for (const componentId in pageComponents) { - const componentLayout = pageComponents[componentId]['layouts']; + const savedComponents = await transactionalEntityManager.save(Component, mappedComponents); - if (componentLayout && appResourceMappings.componentsMapping[componentId]) { - for (const type in componentLayout) { - const layout = componentLayout[type]; - const newLayout = new Layout(); - newLayout.type = type; - newLayout.top = layout.top; - newLayout.left = layout.left; - newLayout.width = layout.width; - newLayout.height = layout.height; - newLayout.componentId = appResourceMappings.componentsMapping[componentId]; + for (const componentId in pageComponents) { + const componentLayout = pageComponents[componentId]['layouts']; - componentLayouts.push(newLayout); + if (componentLayout && appResourceMappings.componentsMapping[componentId]) { + for (const type in componentLayout) { + const layout = componentLayout[type]; + const newLayout = new Layout(); + newLayout.type = type; + newLayout.top = layout.top; + newLayout.left = layout.left; + newLayout.width = layout.width; + newLayout.height = layout.height; + newLayout.componentId = appResourceMappings.componentsMapping[componentId]; + + componentLayouts.push(newLayout); + } } } - } - await manager.save(Layout, componentLayouts); + await transactionalEntityManager.save(Layout, componentLayouts); - //Event handlers + //Event handlers - if (pageEvents.length > 0) { - pageEvents.forEach(async (event, index) => { - const newEvent = { - name: event.eventId, - sourceId: pageCreated.id, - target: Target.page, - event: event, - index: pageEvents.index || index, - appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], - }; + if (pageEvents.length > 0) { + pageEvents.forEach(async (event, index) => { + const newEvent = { + name: event.eventId, + sourceId: pageCreated.id, + target: Target.page, + event: event, + index: pageEvents.index || index, + appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], + }; - await manager.save(EventHandler, newEvent); - }); - } - - componentEvents.forEach((eventObj) => { - if (eventObj.event?.length === 0) return; - - eventObj.event.forEach(async (event, index) => { - const newEvent = await manager.create(EventHandler, { - name: event.eventId, - sourceId: appResourceMappings.componentsMapping[eventObj.componentId], - target: Target.component, - event: event, - index: eventObj.index || index, - appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], + await transactionalEntityManager.save(EventHandler, newEvent); }); - - await manager.save(EventHandler, newEvent); - }); - }); - - savedComponents.forEach(async (component) => { - if (component.type === 'Table') { - const tableActions = component.properties?.actions?.value || []; - const tableColumns = component.properties?.columns?.value || []; - - const tableActionAndColumnEvents = []; - - tableActions.forEach((action) => { - const actionEvents = action.events || []; - - actionEvents.forEach((event, index) => { - tableActionAndColumnEvents.push({ - name: event.eventId, - sourceId: component.id, - target: Target.tableAction, - event: { ...event, ref: action.name }, - index: event.index ?? index, - appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], - }); - }); - }); - - tableColumns.forEach((column) => { - if (column?.columnType !== 'toggle') return; - const columnEvents = column.events || []; - - columnEvents.forEach((event, index) => { - tableActionAndColumnEvents.push({ - name: event.eventId, - sourceId: component.id, - target: Target.tableColumn, - event: { ...event, ref: column.name }, - index: event.index ?? index, - appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], - }); - }); - }); - - await manager.save(EventHandler, tableActionAndColumnEvents); } - }); - if (isHompage) { - updateHomepageId = pageCreated.id; + componentEvents.forEach((eventObj) => { + if (eventObj.event?.length === 0) return; + + eventObj.event.forEach(async (event, index) => { + const newEvent = transactionalEntityManager.create(EventHandler, { + name: event.eventId, + sourceId: appResourceMappings.componentsMapping[eventObj.componentId], + target: Target.component, + event: event, + index: eventObj.index || index, + appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], + }); + + await transactionalEntityManager.save(EventHandler, newEvent); + }); + }); + + savedComponents.forEach(async (component) => { + if (component.type === 'Table') { + const tableActions = component.properties?.actions?.value || []; + const tableColumns = component.properties?.columns?.value || []; + + const tableActionAndColumnEvents = []; + + tableActions.forEach((action) => { + const actionEvents = action.events || []; + + actionEvents.forEach((event, index) => { + tableActionAndColumnEvents.push({ + name: event.eventId, + sourceId: component.id, + target: Target.tableAction, + event: { ...event, ref: action.name }, + index: event.index ?? index, + appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], + }); + }); + }); + + tableColumns.forEach((column) => { + if (column?.columnType !== 'toggle') return; + const columnEvents = column.events || []; + + columnEvents.forEach((event, index) => { + tableActionAndColumnEvents.push({ + name: event.eventId, + sourceId: component.id, + target: Target.tableColumn, + event: { ...event, ref: column.name }, + index: event.index ?? index, + appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], + }); + }); + }); + + await transactionalEntityManager.save(EventHandler, tableActionAndColumnEvents); + } + }); + + if (isHompage) { + updateHomepageId = pageCreated.id; + } } } + + await transactionalEntityManager.update( + AppVersion, + { id: appResourceMappings.appVersionMapping[importingAppVersion.id] }, + { + definition: updatedDefinition, + homePageId: updateHomepageId, + } + ); } - - await manager.update( - AppVersion, - { id: appResourceMappings.appVersionMapping[importingAppVersion.id] }, - { - definition: updatedDefinition, - homePageId: updateHomepageId, - } - ); - - await this.updateEventActionsForNewVersionWithNewMappingIds( - manager, - appResourceMappings.appVersionMapping[importingAppVersion.id], - appResourceMappings.dataQueryMapping, - appResourceMappings.componentsMapping, - appResourceMappings.pagesMapping, - isNormalizedAppDefinitionSchema - ); } + }); + + const appVersionIds = Object.values(appResourceMappings.appVersionMapping); + + for (const appVersionId of appVersionIds) { + await this.updateEventActionsForNewVersionWithNewMappingIds( + manager, + appVersionId, + appResourceMappings.dataQueryMapping, + appResourceMappings.componentsMapping, + appResourceMappings.pagesMapping + ); } await this.setEditingVersionAsLatestVersion(manager, appResourceMappings.appVersionMapping, importingAppVersions); @@ -741,13 +752,14 @@ export class AppImportExportService { if (componentEvents.length > 0) { componentEvents.forEach(async (componentEvent) => { - const newEvent = new EventHandler(); - newEvent.name = componentEvent.name; - newEvent.sourceId = savedComponent.id; - newEvent.target = componentEvent.target; - newEvent.event = componentEvent.event; - newEvent.index = componentEvent.index; - newEvent.appVersionId = appResourceMappings.appVersionMapping[importingAppVersion.id]; + const newEvent = await manager.create(EventHandler, { + name: componentEvent.name, + sourceId: savedComponent.id, + target: componentEvent.target, + event: componentEvent.event, + index: componentEvent.index, + appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], + }); await manager.save(EventHandler, newEvent); }); @@ -759,14 +771,14 @@ export class AppImportExportService { if (pageEvents.length > 0) { pageEvents.forEach(async (pageEvent) => { - const newEvent = { + const newEvent = await manager.create(EventHandler, { name: pageEvent.name, sourceId: pageCreated.id, target: pageEvent.target, event: pageEvent.event, index: pageEvent.index, appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], - }; + }); await manager.save(EventHandler, newEvent); }); @@ -790,14 +802,14 @@ export class AppImportExportService { if (importingQueryEvents.length > 0) { importingQueryEvents.forEach(async (dataQueryEvent) => { - const newEvent = { + const newEvent = await manager.create(EventHandler, { name: dataQueryEvent.name, sourceId: mappedNewDataQuery.id, target: dataQueryEvent.target, event: dataQueryEvent.event, index: dataQueryEvent.index, appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], - }; + }); await manager.save(EventHandler, newEvent); }); @@ -812,14 +824,14 @@ export class AppImportExportService { if (queryEvents.length > 0) { queryEvents.forEach(async (event, index) => { - const newEvent = { + const newEvent = await manager.create(EventHandler, { name: event.eventId, sourceId: mappedNewDataQuery.id, target: Target.dataQuery, event: event, - index: queryEvents.index || index, - appVersionId: mappedNewDataQuery.appVersionId, - }; + index: event.index ?? index, + appVersionId: appResourceMappings.appVersionMapping[importingAppVersion.id], + }); await manager.save(EventHandler, newEvent); }); @@ -838,18 +850,17 @@ export class AppImportExportService { ); } - const appVersionIds = Object.values(appResourceMappings.appVersionMapping); + // const appVersionIds = Object.values(appResourceMappings.appVersionMapping); - for (const appVersionId of appVersionIds) { - await this.updateEventActionsForNewVersionWithNewMappingIds( - manager, - appVersionId, - appResourceMappings.dataQueryMapping, - appResourceMappings.componentsMapping, - appResourceMappings.pagesMapping, - true - ); - } + // for (const appVersionId of appVersionIds) { + // await this.updateEventActionsForNewVersionWithNewMappingIds( + // manager, + // appVersionId, + // appResourceMappings.dataQueryMapping, + // appResourceMappings.componentsMapping, + // appResourceMappings.pagesMapping + // ); + // } return appResourceMappings; } @@ -1513,29 +1524,35 @@ export class AppImportExportService { versionId: string, oldDataQueryToNewMapping: Record, oldComponentToNewComponentMapping: Record, - oldPageToNewPageMapping: Record, - isNormalizedAppDefinitionSchema: boolean + oldPageToNewPageMapping: Record ) { - const allEvents = await manager.find(EventHandler, { - where: { appVersionId: versionId }, - }); + const allEvents = await manager + .createQueryBuilder(EventHandler, 'event') + .where('event.appVersionId = :versionId', { versionId }) + .getMany(); for (const event of allEvents) { const eventDefinition = event.event; - if (isNormalizedAppDefinitionSchema && eventDefinition?.actionId === 'run-query') { + if (eventDefinition?.actionId === 'run-query' && oldDataQueryToNewMapping[eventDefinition.queryId]) { eventDefinition.queryId = oldDataQueryToNewMapping[eventDefinition.queryId]; } - if (eventDefinition?.actionId === 'control-component') { + if ( + eventDefinition?.actionId === 'control-component' && + oldComponentToNewComponentMapping[eventDefinition.componentId] + ) { eventDefinition.componentId = oldComponentToNewComponentMapping[eventDefinition.componentId]; } - if (eventDefinition?.actionId === 'switch-page') { + if (eventDefinition?.actionId === 'switch-page' && oldPageToNewPageMapping[eventDefinition.pageId]) { eventDefinition.pageId = oldPageToNewPageMapping[eventDefinition.pageId]; } - if (eventDefinition?.actionId == 'show-modal' || eventDefinition?.actionId === 'close-modal') { + if ( + (eventDefinition?.actionId == 'show-modal' || eventDefinition?.actionId === 'close-modal') && + oldComponentToNewComponentMapping[eventDefinition.modal] + ) { eventDefinition.modal = oldComponentToNewComponentMapping[eventDefinition.modal]; } diff --git a/server/src/services/apps.service.ts b/server/src/services/apps.service.ts index 4f3727e82b..1dbd7d32d2 100644 --- a/server/src/services/apps.service.ts +++ b/server/src/services/apps.service.ts @@ -685,65 +685,71 @@ export class AppsService { newDataQueries.push(newQuery); } } - } - if (globalQueries?.length > 0) { - for (const globalQuery of globalQueries) { - const dataQueryParams = { - name: globalQuery.name, - options: globalQuery.options, - dataSourceId: globalQuery.dataSourceId, - appVersionId: appVersion.id, - }; + if (globalQueries?.length > 0) { + for (const globalQuery of globalQueries) { + const dataQueryParams = { + name: globalQuery.name, + options: globalQuery.options, + dataSourceId: globalQuery.dataSourceId, + appVersionId: appVersion.id, + }; - const newQuery = await manager.save(manager.create(DataQuery, dataQueryParams)); - const dataQueryEvents = allEvents.filter((event) => event.sourceId === globalQuery.id); + const newQuery = await manager.save(manager.create(DataQuery, dataQueryParams)); + const dataQueryEvents = allEvents.filter((event) => event.sourceId === globalQuery.id); - dataQueryEvents.forEach(async (event, index) => { - const newEvent = new EventHandler(); + dataQueryEvents.forEach(async (event, index) => { + const newEvent = new EventHandler(); - newEvent.id = uuid.v4(); - newEvent.name = event.name; - newEvent.sourceId = newQuery.id; - newEvent.target = event.target; - newEvent.event = event.event; - newEvent.index = event.index ?? index; - newEvent.appVersionId = appVersion.id; + newEvent.id = uuid.v4(); + newEvent.name = event.name; + newEvent.sourceId = newQuery.id; + newEvent.target = event.target; + newEvent.event = event.event; + newEvent.index = event.index ?? index; + newEvent.appVersionId = appVersion.id; - await manager.save(newEvent); - }); - oldDataQueryToNewMapping[globalQuery.id] = newQuery.id; - newDataQueries.push(newQuery); + await manager.save(newEvent); + }); + oldDataQueryToNewMapping[globalQuery.id] = newQuery.id; + newDataQueries.push(newQuery); + } } - } - for (const newQuery of newDataQueries) { - const newOptions = this.replaceDataQueryOptionsWithNewDataQueryIds(newQuery.options, oldDataQueryToNewMapping); - newQuery.options = newOptions; - - await manager.save(newQuery); - } - - appVersion.definition = this.replaceDataQueryIdWithinDefinitions(appVersion.definition, oldDataQueryToNewMapping); - await manager.save(appVersion); - - for (const appEnvironment of appEnvironments) { - for (const dataSource of dataSources) { - const dataSourceOption = await manager.findOneOrFail(DataSourceOptions, { - where: { dataSourceId: dataSource.id, environmentId: appEnvironment.id }, - }); - - const convertedOptions = this.convertToArrayOfKeyValuePairs(dataSourceOption.options); - const newOptions = await this.dataSourcesService.parseOptionsForCreate(convertedOptions, false, manager); - await this.setNewCredentialValueFromOldValue(newOptions, convertedOptions, manager); - - await manager.save( - manager.create(DataSourceOptions, { - options: newOptions, - dataSourceId: dataSourceMapping[dataSource.id], - environmentId: appEnvironment.id, - }) + for (const newQuery of newDataQueries) { + const newOptions = this.replaceDataQueryOptionsWithNewDataQueryIds( + newQuery.options, + oldDataQueryToNewMapping ); + newQuery.options = newOptions; + + await manager.save(newQuery); + } + + appVersion.definition = this.replaceDataQueryIdWithinDefinitions( + appVersion.definition, + oldDataQueryToNewMapping + ); + await manager.save(appVersion); + + for (const appEnvironment of appEnvironments) { + for (const dataSource of dataSources) { + const dataSourceOption = await manager.findOneOrFail(DataSourceOptions, { + where: { dataSourceId: dataSource.id, environmentId: appEnvironment.id }, + }); + + const convertedOptions = this.convertToArrayOfKeyValuePairs(dataSourceOption.options); + const newOptions = await this.dataSourcesService.parseOptionsForCreate(convertedOptions, false, manager); + await this.setNewCredentialValueFromOldValue(newOptions, convertedOptions, manager); + + await manager.save( + manager.create(DataSourceOptions, { + options: newOptions, + dataSourceId: dataSourceMapping[dataSource.id], + environmentId: appEnvironment.id, + }) + ); + } } } } From 96f56ff5c08a5c3c4f5a893113a270123e1a57bb Mon Sep 17 00:00:00 2001 From: Akshay Sasidharan Date: Thu, 7 Dec 2023 19:43:31 +0530 Subject: [PATCH 60/63] bump to v2.25.0 --- .version | 2 +- frontend/.version | 2 +- server/.version | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.version b/.version index 23a93836ae..5c18f9195b 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -2.24.5 +2.25.0 diff --git a/frontend/.version b/frontend/.version index 23a93836ae..5c18f9195b 100644 --- a/frontend/.version +++ b/frontend/.version @@ -1 +1 @@ -2.24.5 +2.25.0 diff --git a/server/.version b/server/.version index 23a93836ae..5c18f9195b 100644 --- a/server/.version +++ b/server/.version @@ -1 +1 @@ -2.24.5 +2.25.0 From 4d627de0c3d75b0665e97b0e34169488476671f8 Mon Sep 17 00:00:00 2001 From: Akshay Sasidharan Date: Fri, 8 Dec 2023 13:10:33 +0530 Subject: [PATCH 61/63] fix import error on test suite --- server/test/test.helper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/test/test.helper.ts b/server/test/test.helper.ts index 261f3c6dba..513744fe85 100644 --- a/server/test/test.helper.ts +++ b/server/test/test.helper.ts @@ -22,7 +22,7 @@ import { ThreadRepository } from 'src/repositories/thread.repository'; import { GroupPermission } from 'src/entities/group_permission.entity'; import { UserGroupPermission } from 'src/entities/user_group_permission.entity'; import { AppGroupPermission } from 'src/entities/app_group_permission.entity'; -import { AllExceptionsFilter } from 'src/all-exceptions-filter'; +import { AllExceptionsFilter } from 'src/filters/all-exceptions-filter'; import { Logger } from 'nestjs-pino'; import { WsAdapter } from '@nestjs/platform-ws'; import { AppsModule } from 'src/modules/apps/apps.module'; From 827a9e333e3a0d44a8e079f07ec07a460120a219 Mon Sep 17 00:00:00 2001 From: Akshay Sasidharan Date: Fri, 8 Dec 2023 18:21:08 +0530 Subject: [PATCH 62/63] update jest and mock for failing specs --- server/package-lock.json | 6522 +++++++---------- server/package.json | 6 +- .../oauth/oauth-git-instance.e2e-spec.ts | 68 +- .../controllers/oauth/oauth-git.e2e-spec.ts | 52 +- .../onboarding/git-sso-auth.e2e-spec.ts | 20 +- .../test/controllers/tooljet_db.e2e-spec.ts | 6 +- 6 files changed, 2753 insertions(+), 3921 deletions(-) diff --git a/server/package-lock.json b/server/package-lock.json index 9c849e112f..e5de7862fd 100644 --- a/server/package-lock.json +++ b/server/package-lock.json @@ -89,12 +89,12 @@ "eslint-plugin-cypress": "^2.12.1", "eslint-plugin-jest": "^24.4.2", "eslint-plugin-prettier": "^3.4.1", - "jest": "^27.0.6", + "jest": "^29.7.0", "prettier": "^2.3.2", "preview-email": "^3.0.19", "rimraf": "^3.0.2", "supertest": "^6.1.3", - "ts-jest": "^27.0.3", + "ts-jest": "^29.1.1", "ts-loader": "^9.2.3", "typescript": "^4.3.5" }, @@ -182,6 +182,19 @@ "rimraf": "^3.0.2" } }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@angular-devkit/core": { "version": "13.2.5", "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.2.5.tgz", @@ -320,44 +333,103 @@ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, "node_modules/@babel/code-frame": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", - "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", "dependencies": { - "@babel/highlight": "^7.16.7" + "@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==", + "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==", + "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==", + "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==" + }, + "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==", + "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==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/compat-data": { - "version": "7.14.7", - "integrity": "sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.14.6", - "integrity": "sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz", + "integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.14.5", - "@babel/helper-compilation-targets": "^7.14.5", - "@babel/helper-module-transforms": "^7.14.5", - "@babel/helpers": "^7.14.6", - "@babel/parser": "^7.14.6", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5", - "convert-source-map": "^1.7.0", + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.5", + "@babel/parser": "^7.23.5", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.5", + "@babel/types": "^7.23.5", + "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -368,8 +440,9 @@ } }, "node_modules/@babel/core/node_modules/debug": { - "version": "4.3.2", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "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" @@ -385,55 +458,131 @@ }, "node_modules/@babel/core/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/@babel/core/node_modules/semver": { - "version": "6.3.0", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, - "node_modules/@babel/core/node_modules/source-map": { - "version": "0.5.7", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/@babel/generator": { - "version": "7.14.5", - "integrity": "sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.5.tgz", + "integrity": "sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==", "dev": true, "dependencies": { - "@babel/types": "^7.14.5", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" + "@babel/types": "^7.23.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/generator/node_modules/source-map": { - "version": "0.5.7", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.14.5", - "integrity": "sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "browserslist": "^4.16.6", - "semver": "^6.3.0" + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -442,180 +591,86 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.14.5", - "integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==", - "dev": true, - "dependencies": { - "@babel/helper-get-function-arity": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/types": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-get-function-arity": { - "version": "7.14.5", - "integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.14.5", - "integrity": "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.14.7", - "integrity": "sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.14.5", - "integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.14.5", - "integrity": "sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA==", - "dev": true, - "dependencies": { - "@babel/helper-module-imports": "^7.14.5", - "@babel/helper-replace-supers": "^7.14.5", - "@babel/helper-simple-access": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/helper-validator-identifier": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.14.5", - "integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.14.5", - "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", "dev": true, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.14.5", - "integrity": "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==", - "dev": true, - "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.14.5", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-simple-access": { - "version": "7.14.5", - "integrity": "sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dev": true, "dependencies": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.14.5", - "integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "dependencies": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", + "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==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.14.5", - "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.14.6", - "integrity": "sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.5.tgz", + "integrity": "sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==", "dev": true, "dependencies": { - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.5", + "@babel/types": "^7.23.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.16.10", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", - "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", "dependencies": { - "@babel/helper-validator-identifier": "^7.16.7", - "chalk": "^2.0.0", + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { @@ -673,8 +728,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.14.7", - "integrity": "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.5.tgz", + "integrity": "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -685,6 +741,7 @@ }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "dependencies": { @@ -696,6 +753,7 @@ }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "dependencies": { @@ -707,6 +765,7 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "dependencies": { @@ -718,6 +777,7 @@ }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "dependencies": { @@ -729,6 +789,7 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "dependencies": { @@ -738,8 +799,24 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "dependencies": { @@ -751,6 +828,7 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "dependencies": { @@ -762,6 +840,7 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "dependencies": { @@ -773,6 +852,7 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "dependencies": { @@ -784,6 +864,7 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "dependencies": { @@ -795,6 +876,7 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "dependencies": { @@ -806,6 +888,7 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "dependencies": { @@ -819,11 +902,12 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.14.5", - "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -833,30 +917,33 @@ } }, "node_modules/@babel/template": { - "version": "7.14.5", - "integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.14.7", - "integrity": "sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.5.tgz", + "integrity": "sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.14.5", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-hoist-variables": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/parser": "^7.14.7", - "@babel/types": "^7.14.5", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.5", + "@babel/types": "^7.23.5", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -865,8 +952,9 @@ } }, "node_modules/@babel/traverse/node_modules/debug": { - "version": "4.3.2", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "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" @@ -882,6 +970,7 @@ }, "node_modules/@babel/traverse/node_modules/globals": { "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, "engines": { @@ -890,15 +979,18 @@ }, "node_modules/@babel/traverse/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/@babel/types": { - "version": "7.14.5", - "integrity": "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.5.tgz", + "integrity": "sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.14.5", + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" }, "engines": { @@ -907,6 +999,7 @@ }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, @@ -1107,6 +1200,7 @@ }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "dependencies": { @@ -1122,6 +1216,7 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "engines": { @@ -1130,6 +1225,7 @@ }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true, "engines": { @@ -1137,81 +1233,59 @@ } }, "node_modules/@jest/console": { - "version": "27.0.6", - "integrity": "sha512-fMlIBocSHPZ3JxgWiDNW/KPj6s+YRd0hicb33IrmelCcjXo/pXPwvuiKFmZz+XuqI/1u7nbUK10zSsWL/1aegg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^27.0.6", - "jest-util": "^27.0.6", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/console/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/console/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/core": { - "version": "27.0.6", - "integrity": "sha512-SsYBm3yhqOn5ZLJCtccaBcvD/ccTLCeuDv8U41WJH/V1MW5eKUkeMHT9U+Pw/v1m1AIWlnIW/eM2XzQr0rEmow==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "dependencies": { - "@jest/console": "^27.0.6", - "@jest/reporters": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "emittery": "^0.8.1", + "ci-info": "^3.2.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-changed-files": "^27.0.6", - "jest-config": "^27.0.6", - "jest-haste-map": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-regex-util": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-resolve-dependencies": "^27.0.6", - "jest-runner": "^27.0.6", - "jest-runtime": "^27.0.6", - "jest-snapshot": "^27.0.6", - "jest-util": "^27.0.6", - "jest-validate": "^27.0.6", - "jest-watcher": "^27.0.6", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "p-each-series": "^2.1.0", - "rimraf": "^3.0.0", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" @@ -1222,173 +1296,152 @@ } } }, - "node_modules/@jest/core/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@jest/core/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@types/yargs-parser": "*" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, "node_modules/@jest/environment": { - "version": "27.0.6", - "integrity": "sha512-4XywtdhwZwCpPJ/qfAkqExRsERW+UaoSRStSHCCiQTUpoYdLukj+YJbQSFrZjhlUDRZeNiU9SFH0u7iNimdiIg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "dependencies": { - "@jest/fake-timers": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^27.0.6" + "jest-mock": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/environment/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/environment/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, "dependencies": { - "@types/yargs-parser": "*" + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils/node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/fake-timers": { - "version": "27.0.6", - "integrity": "sha512-sqd+xTWtZ94l3yWDKnRTdvTeZ+A/V7SSKrxsrOKSqdyddb9CeNRF8fbhAU0D7ZJBpTTW2nbp6MftmKJDZfW2LQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "@sinonjs/fake-timers": "^7.0.2", + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^27.0.6", - "jest-mock": "^27.0.6", - "jest-util": "^27.0.6" + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/fake-timers/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/fake-timers/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/globals": { - "version": "27.0.6", - "integrity": "sha512-DdTGCP606rh9bjkdQ7VvChV18iS7q0IMJVP1piwTWyWskol4iqcVwthZmoJEf7obE1nc34OpIyoVGPeqLC+ryw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "dependencies": { - "@jest/environment": "^27.0.6", - "@jest/types": "^27.0.6", - "expect": "^27.0.6" + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/globals/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/globals/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/reporters": { - "version": "27.0.6", - "integrity": "sha512-TIkBt09Cb2gptji3yJXb3EE+eVltW6BjO7frO7NEfjI9vSIYoISi5R3aI3KpEDXlB1xwB+97NXIqz84qYeYsfA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", "exit": "^0.1.2", - "glob": "^7.1.2", - "graceful-fs": "^4.2.4", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-instrument": "^6.0.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.0.2", - "jest-haste-map": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-util": "^27.0.6", - "jest-worker": "^27.0.6", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", - "source-map": "^0.6.0", "string-length": "^4.0.1", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^8.0.0" + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" @@ -1399,178 +1452,181 @@ } } }, - "node_modules/@jest/reporters/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", + "node_modules/@jest/reporters/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/reporters/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "@types/yargs-parser": "*" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/@jest/reporters/node_modules/source-map": { - "version": "0.6.1", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/source-map": { - "version": "27.0.6", - "integrity": "sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", - "graceful-fs": "^4.2.4", - "source-map": "^0.6.0" + "graceful-fs": "^4.2.9" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/source-map/node_modules/source-map": { - "version": "0.6.1", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/test-result": { - "version": "27.0.6", - "integrity": "sha512-ja/pBOMTufjX4JLEauLxE3LQBPaI2YjGFtXexRAjt1I/MbfNlMx0sytSX3tn5hSLzQsR3Qy2rd0hc1BWojtj9w==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "dependencies": { - "@jest/console": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/test-result/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/test-result/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/test-sequencer": { - "version": "27.0.6", - "integrity": "sha512-bISzNIApazYOlTHDum9PwW22NOyDa6VI31n6JucpjTVM0jD6JDgqEZ9+yn575nDdPF0+4csYDxNNW13NvFQGZA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "dependencies": { - "@jest/test-result": "^27.0.6", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.0.6", - "jest-runtime": "^27.0.6" + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/transform": { - "version": "27.0.6", - "integrity": "sha512-rj5Dw+mtIcntAUnMlW/Vju5mr73u8yg+irnHwzgtgoeI6cCPOvUwQ0D1uQtc/APmWgvRweEb1g05pkUpxH3iCA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.0.6", - "babel-plugin-istanbul": "^6.0.0", + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.0.6", - "jest-regex-util": "^27.0.6", - "jest-util": "^27.0.6", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", - "pirates": "^4.0.1", + "pirates": "^4.0.4", "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" + "write-file-atomic": "^4.0.2" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/transform/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@jest/transform/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@jest/transform/node_modules/source-map": { - "version": "0.6.1", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/@jest/types": { - "version": "26.6.2", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "dependencies": { + "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^15.0.0", + "@types/yargs": "^17.0.8", "chalk": "^4.0.0" }, "engines": { - "node": ">= 10.14.2" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@mapbox/node-pre-gyp": { @@ -2211,6 +2267,12 @@ "version": "2.0.0", "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, "node_modules/@sindresorhus/is": { "version": "4.0.1", "integrity": "sha512-Qm9hBEBu18wt1PO2flE7LPb30BHMQt1eQgbV76YntdNk73XZGpn3izvGTYxbGgzXKgbCjiia0uxTd3aTNQrY/g==", @@ -2222,19 +2284,21 @@ } }, "node_modules/@sinonjs/commons": { - "version": "1.8.3", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", "dev": true, "dependencies": { "type-detect": "4.0.8" } }, "node_modules/@sinonjs/fake-timers": { - "version": "7.1.2", - "integrity": "sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", "dev": true, "dependencies": { - "@sinonjs/commons": "^1.7.0" + "@sinonjs/commons": "^3.0.0" } }, "node_modules/@sqltools/formatter": { @@ -2255,14 +2319,6 @@ "resolved": "../plugins", "link": true }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, "node_modules/@tsconfig/node10": { "version": "1.0.8", "integrity": "sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==" @@ -2280,28 +2336,31 @@ "integrity": "sha512-FTgBI767POY/lKNDNbIzgAX6miIDBs6NTCbdlDb8TrWovHsSvaVIZDlTqym29C6UqhzwcJx4CYr+AlrMywA0cA==" }, "node_modules/@types/babel__core": { - "version": "7.1.15", - "integrity": "sha512-bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "node_modules/@types/babel__generator": { - "version": "7.6.3", - "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", + "version": "7.6.7", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz", + "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==", "dev": true, "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { - "version": "7.4.1", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, "dependencies": { "@babel/parser": "^7.1.0", @@ -2309,11 +2368,12 @@ } }, "node_modules/@types/babel__traverse": { - "version": "7.14.1", - "integrity": "sha512-DomsDK/nX3XXHs6jlQ8/YYE6jZAuhmoGAFfcYi1h1jbBNGS7Efdx74FKLTO3HCCyLqQyLlNbql87xqa7C3M/FQ==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", + "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", "dev": true, "dependencies": { - "@babel/types": "^7.3.0" + "@babel/types": "^7.20.7" } }, "node_modules/@types/body-parser": { @@ -2454,8 +2514,9 @@ } }, "node_modules/@types/graceful-fs": { - "version": "4.1.5", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -2621,11 +2682,6 @@ "@types/node": "*" } }, - "node_modules/@types/prettier": { - "version": "2.3.2", - "integrity": "sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog==", - "dev": true - }, "node_modules/@types/qs": { "version": "6.9.7", "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", @@ -2671,8 +2727,9 @@ } }, "node_modules/@types/stack-utils": { - "version": "2.0.1", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true }, "node_modules/@types/superagent": { @@ -2706,16 +2763,18 @@ } }, "node_modules/@types/yargs": { - "version": "15.0.14", - "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", "dev": true, "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { - "version": "20.2.1", - "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==", + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "dev": true }, "node_modules/@types/zen-observable": { @@ -3103,11 +3162,6 @@ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "peer": true }, - "node_modules/abab": { - "version": "2.0.5", - "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", - "dev": true - }, "node_modules/abbrev": { "version": "1.1.1", "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" @@ -3153,26 +3207,7 @@ "node_modules/acorn": { "version": "8.4.1", "integrity": "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-globals": { - "version": "6.0.0", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", - "dev": true, - "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - } - }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, + "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -3197,14 +3232,6 @@ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/agent-base": { "version": "6.0.2", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", @@ -3563,80 +3590,85 @@ } }, "node_modules/babel-jest": { - "version": "27.0.6", - "integrity": "sha512-iTJyYLNc4wRofASmofpOc5NK9QunwMk+TLFgGXsTFS8uEqmd8wdI7sga0FPe2oVH3b5Agt/EAK1QjPEuKL8VfA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "dependencies": { - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.0.0", - "babel-preset-jest": "^27.0.6", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "slash": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "@babel/core": "^7.8.0" } }, - "node_modules/babel-jest/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/babel-jest/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, "node_modules/babel-plugin-istanbul": { - "version": "6.0.0", - "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^4.0.0", + "istanbul-lib-instrument": "^5.0.4", "test-exclude": "^6.0.0" }, "engines": { "node": ">=8" } }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/babel-plugin-jest-hoist": { - "version": "27.0.6", - "integrity": "sha512-CewFeM9Vv2gM7Yr9n5eyyLVPRSiBnk6lKZRjgwYnGKSl9M14TMn2vkN02wTF04OGuSDLEzlWiMzvjXuW9mB6Gw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", + "@types/babel__core": "^7.1.14", "@types/babel__traverse": "^7.0.6" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/babel-preset-current-node-syntax": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "dependencies": { @@ -3658,15 +3690,16 @@ } }, "node_modules/babel-preset-jest": { - "version": "27.0.6", - "integrity": "sha512-WObA0/Biw2LrVVwZkF/2GqbOdzhKD6Fkdwhoy9ASIrOWr/zodcSpQh72JOkEn6NWyjmnPDjNSqaGN4KnpKzhXw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "dependencies": { - "babel-plugin-jest-hoist": "^27.0.6", + "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "@babel/core": "^7.0.0" @@ -3825,30 +3858,35 @@ "node": ">=8" } }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", - "dev": true - }, "node_modules/browserslist": { - "version": "4.16.6", - "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" }, "bin": { "browserslist": "cli.js" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" } }, "node_modules/bs-logger": { @@ -3864,6 +3902,7 @@ }, "node_modules/bser": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "dependencies": { @@ -3969,6 +4008,7 @@ }, "node_modules/camelcase": { "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, "engines": { @@ -3976,12 +4016,23 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001243", - "integrity": "sha512-vNxw9mkTBtkmLFnJRv/2rhs1yufpDfCkBZexG3Y0xdOH2Z/eE/85E4Dl5j1YUN34nZVsSp6vVRFQRrez9wJMRA==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - } + "version": "1.0.30001566", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz", + "integrity": "sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] }, "node_modules/chalk": { "version": "4.1.2", @@ -4000,6 +4051,7 @@ }, "node_modules/char-regex": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, "engines": { @@ -4077,8 +4129,9 @@ } }, "node_modules/cjs-module-lexer": { - "version": "1.2.1", - "integrity": "sha512-jVamGdJPDeuQilKhvVn1h3knuMOZzr8QDnpk+M9aMlCaMkTDd6fBWPhiDqFvFZ07pL0liqabAiuy8SY4jGHeaw==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", "dev": true }, "node_modules/class-transformer": { @@ -4222,7 +4275,8 @@ }, "node_modules/co": { "version": "4.6.0", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, "engines": { "iojs": ">= 1.0.0", @@ -4237,8 +4291,9 @@ } }, "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true }, "node_modules/color-convert": { @@ -4403,12 +4458,10 @@ } }, "node_modules/convert-source-map": { - "version": "1.8.0", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.1" - } + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true }, "node_modules/cookie": { "version": "0.4.2", @@ -4479,6 +4532,27 @@ "node": ">=10" } }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, "node_modules/create-require": { "version": "1.1.1", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" @@ -4503,40 +4577,6 @@ "node": ">= 8" } }, - "node_modules/cssom": { - "version": "0.4.4", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", - "dev": true - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "dev": true, - "dependencies": { - "cssom": "~0.3.6" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - }, - "node_modules/data-urls": { - "version": "2.0.0", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", - "dev": true, - "dependencies": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/dateformat": { "version": "4.6.3", "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==", @@ -4552,15 +4592,19 @@ "ms": "2.0.0" } }, - "node_modules/decimal.js": { - "version": "10.3.1", - "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", - "dev": true - }, "node_modules/dedent": { - "version": "0.7.0", - "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", - "dev": true + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } }, "node_modules/deep-extend": { "version": "0.6.0", @@ -4777,25 +4821,6 @@ } ] }, - "node_modules/domexception": { - "version": "2.0.1", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", - "dev": true, - "dependencies": { - "webidl-conversions": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "5.0.0", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/domhandler": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.0.tgz", @@ -4847,8 +4872,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "node_modules/electron-to-chromium": { - "version": "1.3.770", - "integrity": "sha512-Kyh8DGK1KfEZuYKIHvuOmrKotsKZQ+qBkDIWHciE3QoFkxXB1KzPP+tfLilSHAfxTON0yYMnFCWkQtUOR7g6KQ==" + "version": "1.4.608", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.608.tgz", + "integrity": "sha512-J2f/3iIIm3Mo0npneITZ2UPe4B1bg8fTNrFjD8715F/k1BvbviRuqYGkET1PgprrczXYTHFvotbBOmUp6KE0uA==" }, "node_modules/emitter-listener": { "version": "1.1.2", @@ -4858,11 +4884,12 @@ } }, "node_modules/emittery": { - "version": "0.8.1", - "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sindresorhus/emittery?sponsor=1" @@ -4958,7 +4985,6 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "peer": true, "dependencies": { "is-arrayish": "^0.2.1" } @@ -5358,91 +5384,6 @@ "node": ">=0.8.0" } }, - "node_modules/escodegen": { - "version": "2.0.0", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", - "dev": true, - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/estraverse": { - "version": "5.2.0", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/escodegen/node_modules/levn": { - "version": "0.3.0", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/optionator": { - "version": "0.8.3", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dev": true, - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/prelude-ls": { - "version": "1.1.2", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/escodegen/node_modules/type-check": { - "version": "0.3.2", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/eslint": { "version": "7.32.0", "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", @@ -5818,68 +5759,36 @@ }, "node_modules/exit": { "version": "0.1.2", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, "engines": { "node": ">= 0.8.0" } }, "node_modules/expect": { - "version": "27.0.6", - "integrity": "sha512-psNLt8j2kwg42jGBDSfAlU49CEZxejN1f1PlANWDZqIhBOVU/c2Pm888FcjWJzFewhIsNWfZJeLjUjtKGiPuSw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "ansi-styles": "^5.0.0", - "jest-get-type": "^27.0.6", - "jest-matcher-utils": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-regex-util": "^27.0.6" + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/expect/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/expect/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/expect/node_modules/ansi-styles": { - "version": "5.2.0", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/expect/node_modules/jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/express": { @@ -6098,8 +6007,9 @@ } }, "node_modules/fb-watchman": { - "version": "2.0.1", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, "dependencies": { "bser": "2.1.1" @@ -6159,6 +6069,7 @@ }, "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": { @@ -6452,6 +6363,7 @@ }, "node_modules/gensync": { "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "engines": { @@ -6479,6 +6391,7 @@ }, "node_modules/get-package-type": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, "engines": { @@ -6840,19 +6753,9 @@ "node": "*" } }, - "node_modules/html-encoding-sniffer": { - "version": "2.0.1", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", - "dev": true, - "dependencies": { - "whatwg-encoding": "^1.0.5" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/html-escaper": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, @@ -6983,40 +6886,6 @@ "node": ">= 0.8" } }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/http-proxy-agent/node_modules/debug": { - "version": "4.3.2", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/http-proxy-agent/node_modules/ms": { - "version": "2.1.2", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, "node_modules/http2-wrapper": { "version": "1.0.3", "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", @@ -7128,8 +6997,9 @@ } }, "node_modules/import-local": { - "version": "3.0.2", - "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "dependencies": { "pkg-dir": "^4.2.0", @@ -7140,6 +7010,9 @@ }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/imurmurhash": { @@ -7278,8 +7151,7 @@ "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "peer": true + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" }, "node_modules/is-binary-path": { "version": "2.1.0", @@ -7293,17 +7165,6 @@ "node": ">=8" } }, - "node_modules/is-ci": { - "version": "3.0.0", - "integrity": "sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ==", - "dev": true, - "dependencies": { - "ci-info": "^3.1.1" - }, - "bin": { - "is-ci": "bin.js" - } - }, "node_modules/is-core-module": { "version": "2.4.0", "integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==", @@ -7364,6 +7225,7 @@ }, "node_modules/is-generator-fn": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, "engines": { @@ -7403,11 +7265,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true - }, "node_modules/is-promise": { "version": "2.2.2", "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", @@ -7435,11 +7292,6 @@ "node": ">=8" } }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "dev": true - }, "node_modules/is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", @@ -7481,51 +7333,63 @@ } }, "node_modules/istanbul-lib-coverage": { - "version": "3.0.0", - "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { - "version": "4.0.3", - "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "dependencies": { - "@babel/core": "^7.7.5", + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.0.0", - "semver": "^6.3.0" + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" }, "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node": ">=10" } }, "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "dependencies": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/istanbul-lib-source-maps": { - "version": "4.0.0", - "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "dependencies": { "debug": "^4.1.1", @@ -7533,12 +7397,13 @@ "source-map": "^0.6.1" }, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/istanbul-lib-source-maps/node_modules/debug": { - "version": "4.3.2", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "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" @@ -7554,11 +7419,13 @@ }, "node_modules/istanbul-lib-source-maps/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/istanbul-lib-source-maps/node_modules/source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "engines": { @@ -7566,8 +7433,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.0.2", - "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -7585,19 +7453,21 @@ } }, "node_modules/jest": { - "version": "27.0.6", - "integrity": "sha512-EjV8aETrsD0wHl7CKMibKwQNQc3gIRBXlTikBmmHUeVMKaPFxdcUIBfoDqTSXDoGJIivAYGqCWVlzCSaVjPQsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "dependencies": { - "@jest/core": "^27.0.6", + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^27.0.6" + "jest-cli": "^29.7.0" }, "bin": { "jest": "bin/jest.js" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" @@ -7609,43 +7479,22 @@ } }, "node_modules/jest-changed-files": { - "version": "27.0.6", - "integrity": "sha512-BuL/ZDauaq5dumYh5y20sn4IISnf1P9A0TDswTxUi84ORGtVa86ApuBHqICL0vepqAnZiY6a7xeSPWv2/yy4eA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", "execa": "^5.0.0", - "throat": "^6.0.1" + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-changed-files/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-changed-files/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-changed-files/node_modules/execa": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "dependencies": { @@ -7668,6 +7517,7 @@ }, "node_modules/jest-changed-files/node_modules/get-stream": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { @@ -7679,6 +7529,7 @@ }, "node_modules/jest-changed-files/node_modules/human-signals": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, "engines": { @@ -7686,59 +7537,39 @@ } }, "node_modules/jest-circus": { - "version": "27.0.6", - "integrity": "sha512-OJlsz6BBeX9qR+7O9lXefWoc2m9ZqcZ5Ohlzz0pTEAG4xMiZUJoacY8f4YDHxgk0oKYxj277AfOk9w6hZYvi1Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "dependencies": { - "@jest/environment": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", - "dedent": "^0.7.0", - "expect": "^27.0.6", + "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^27.0.6", - "jest-matcher-utils": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-runtime": "^27.0.6", - "jest-snapshot": "^27.0.6", - "jest-util": "^27.0.6", - "pretty-format": "^27.0.6", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", "slash": "^3.0.0", - "stack-utils": "^2.0.3", - "throat": "^6.0.1" + "stack-utils": "^2.0.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-circus/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-circus/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-circus/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { @@ -7749,83 +7580,147 @@ } }, "node_modules/jest-circus/node_modules/pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/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==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-cli/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "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/jest-cli/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==", + "dev": true, + "engines": { + "node": ">=12" } }, "node_modules/jest-config": { - "version": "27.0.6", - "integrity": "sha512-JZRR3I1Plr2YxPBhgqRspDE2S5zprbga3swYNrvY3HfQGu7p/GjyLOqwrYad97tX3U3mzT53TPHVmozacfP/3w==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "dependencies": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^27.0.6", - "@jest/types": "^27.0.6", - "babel-jest": "^27.0.6", + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", + "ci-info": "^3.2.0", "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "is-ci": "^3.0.0", - "jest-circus": "^27.0.6", - "jest-environment-jsdom": "^27.0.6", - "jest-environment-node": "^27.0.6", - "jest-get-type": "^27.0.6", - "jest-jasmine2": "^27.0.6", - "jest-regex-util": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-runner": "^27.0.6", - "jest-util": "^27.0.6", - "jest-validate": "^27.0.6", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^27.0.6" + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { + "@types/node": "*", "ts-node": ">=9.0.0" }, "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, "ts-node": { "optional": true } } }, - "node_modules/jest-config/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-config/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, "node_modules/jest-config/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { @@ -7836,27 +7731,34 @@ } }, "node_modules/jest-config/node_modules/jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-config/node_modules/pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-config/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, "node_modules/jest-diff": { "version": "26.6.2", "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", @@ -7872,56 +7774,36 @@ } }, "node_modules/jest-docblock": { - "version": "27.0.6", - "integrity": "sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "dependencies": { "detect-newline": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-each": { - "version": "27.0.6", - "integrity": "sha512-m6yKcV3bkSWrUIjxkE9OC0mhBZZdhovIW5ergBYirqnkLXkyEn3oUUF/QZgyecA1cF1QFyTE8bRRl8Tfg1pfLA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", - "jest-get-type": "^27.0.6", - "jest-util": "^27.0.6", - "pretty-format": "^27.0.6" + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-each/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-each/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-each/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { @@ -7932,104 +7814,49 @@ } }, "node_modules/jest-each/node_modules/jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-each/node_modules/pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-environment-jsdom": { - "version": "27.0.6", - "integrity": "sha512-FvetXg7lnXL9+78H+xUAsra3IeZRTiegA3An01cWeXBspKXUhAwMM9ycIJ4yBaR0L7HkoMPaZsozCLHh4T8fuw==", - "dev": true, - "dependencies": { - "@jest/environment": "^27.0.6", - "@jest/fake-timers": "^27.0.6", - "@jest/types": "^27.0.6", - "@types/node": "*", - "jest-mock": "^27.0.6", - "jest-util": "^27.0.6", - "jsdom": "^16.6.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-environment-jsdom/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-environment-jsdom/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } + "node_modules/jest-each/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true }, "node_modules/jest-environment-node": { - "version": "27.0.6", - "integrity": "sha512-+Vi6yLrPg/qC81jfXx3IBlVnDTI6kmRr08iVa2hFCWmJt4zha0XW7ucQltCAPhSR0FEKEoJ3i+W4E6T0s9is0w==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "dependencies": { - "@jest/environment": "^27.0.6", - "@jest/fake-timers": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^27.0.6", - "jest-util": "^27.0.6" + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-environment-node/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-environment-node/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-get-type": { @@ -8041,166 +7868,76 @@ } }, "node_modules/jest-haste-map": { - "version": "27.0.6", - "integrity": "sha512-4ldjPXX9h8doB2JlRzg9oAZ2p6/GpQUNAeiYXqcpmrKbP0Qev0wdZlxSMOmz8mPOEnt4h6qIzXFLDi8RScX/1w==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "@types/graceful-fs": "^4.1.2", + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.4", - "jest-regex-util": "^27.0.6", - "jest-serializer": "^27.0.6", - "jest-util": "^27.0.6", - "jest-worker": "^27.0.6", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", - "walker": "^1.0.7" + "walker": "^1.0.8" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "optionalDependencies": { "fsevents": "^2.3.2" } }, - "node_modules/jest-haste-map/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", + "node_modules/jest-haste-map/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-haste-map/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "node_modules/jest-haste-map/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest-jasmine2": { - "version": "27.0.6", - "integrity": "sha512-cjpH2sBy+t6dvCeKBsHpW41mjHzXgsavaFMp+VWRf0eR4EW8xASk1acqmljFtK2DgyIECMv2yCdY41r2l1+4iA==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^27.0.6", - "@jest/source-map": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/types": "^27.0.6", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^27.0.6", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.0.6", - "jest-matcher-utils": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-runtime": "^27.0.6", - "jest-snapshot": "^27.0.6", - "jest-util": "^27.0.6", - "pretty-format": "^27.0.6", - "throat": "^6.0.1" + "has-flag": "^4.0.0" }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-jasmine2/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-jasmine2/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest-jasmine2/node_modules/ansi-styles": { - "version": "5.2.0", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-jasmine2/node_modules/pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", - "dev": true, - "dependencies": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/jest-leak-detector": { - "version": "27.0.6", - "integrity": "sha512-2/d6n2wlH5zEcdctX4zdbgX8oM61tb67PQt4Xh8JFAIy6LRKUnX528HulkaG6nD5qDl5vRV1NXejCe1XRCH5gQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "dependencies": { - "jest-get-type": "^27.0.6", - "pretty-format": "^27.0.6" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-leak-detector/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-leak-detector/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-leak-detector/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { @@ -8211,66 +7948,52 @@ } }, "node_modules/jest-leak-detector/node_modules/jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-leak-detector/node_modules/pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-leak-detector/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, "node_modules/jest-matcher-utils": { - "version": "27.0.6", - "integrity": "sha512-OFgF2VCQx9vdPSYTHWJ9MzFCehs20TsyFi6bIHbk5V1u52zJOnvF0Y/65z3GLZHKRuTgVPY4Z6LVePNahaQ+tA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "jest-diff": "^27.0.6", - "jest-get-type": "^27.0.6", - "pretty-format": "^27.0.6" + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { @@ -8281,93 +8004,81 @@ } }, "node_modules/jest-matcher-utils/node_modules/diff-sequences": { - "version": "27.0.6", - "integrity": "sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils/node_modules/jest-diff": { - "version": "27.0.6", - "integrity": "sha512-Z1mqgkTCSYaFgwTlP/NUiRzdqgxmmhzHY1Tq17zL94morOHfHu3K4bgSgl+CR4GLhpV8VxkuOYuIWnQ9LnFqmg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^27.0.6", - "jest-get-type": "^27.0.6", - "pretty-format": "^27.0.6" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils/node_modules/jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-matcher-utils/node_modules/pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, "node_modules/jest-message-util": { - "version": "27.0.6", - "integrity": "sha512-rBxIs2XK7rGy+zGxgi+UJKP6WqQ+KrBbD1YMj517HYN3v2BG66t3Xan3FWqYHKZwjdB700KiAJ+iES9a0M+ixw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "dependencies": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.0.6", + "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^27.0.6", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-message-util/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-message-util/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-message-util/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { @@ -8378,57 +8089,43 @@ } }, "node_modules/jest-message-util/node_modules/pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, "node_modules/jest-mock": { - "version": "27.0.6", - "integrity": "sha512-lzBETUoK8cSxts2NYXSBWT+EJNzmUVtVVwS1sU9GwE1DLCfGsngg+ZVSIe0yd0ZSm+y791esiuo+WSwpXJQ5Bw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "@types/node": "*" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-mock/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "jest-util": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-mock/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-pnp-resolver": { - "version": "1.2.2", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, "engines": { "node": ">=6" @@ -8443,284 +8140,204 @@ } }, "node_modules/jest-regex-util": { - "version": "27.0.6", - "integrity": "sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve": { - "version": "27.0.6", - "integrity": "sha512-yKmIgw2LgTh7uAJtzv8UFHGF7Dm7XfvOe/LQ3Txv101fLM8cx2h1QVwtSJ51Q/SCxpIiKfVn6G2jYYMDNHZteA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", "chalk": "^4.0.0", - "escalade": "^3.1.1", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.0.6", - "jest-validate": "^27.0.6", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", "slash": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-resolve-dependencies": { - "version": "27.0.6", - "integrity": "sha512-mg9x9DS3BPAREWKCAoyg3QucCr0n6S8HEEsqRCKSPjPcu9HzRILzhdzY3imsLoZWeosEbJZz6TKasveczzpJZA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "jest-regex-util": "^27.0.6", - "jest-snapshot": "^27.0.6" + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-resolve-dependencies/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-resolve-dependencies/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest-resolve/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-resolve/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runner": { - "version": "27.0.6", - "integrity": "sha512-W3Bz5qAgaSChuivLn+nKOgjqNxM7O/9JOJoKDCqThPIg2sH/d4A/lzyiaFgnb9V1/w29Le11NpzTJSzga1vyYQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "dependencies": { - "@jest/console": "^27.0.6", - "@jest/environment": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "emittery": "^0.8.1", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-docblock": "^27.0.6", - "jest-environment-jsdom": "^27.0.6", - "jest-environment-node": "^27.0.6", - "jest-haste-map": "^27.0.6", - "jest-leak-detector": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-runtime": "^27.0.6", - "jest-util": "^27.0.6", - "jest-worker": "^27.0.6", - "source-map-support": "^0.5.6", - "throat": "^6.0.1" + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runner/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", + "node_modules/jest-runner/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runner/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "node_modules/jest-runner/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-runner/node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, "dependencies": { - "@types/yargs-parser": "*" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/jest-runtime": { - "version": "27.0.6", - "integrity": "sha512-BhvHLRVfKibYyqqEFkybsznKwhrsu7AWx2F3y9G9L95VSIN3/ZZ9vBpm/XCS2bS+BWz3sSeNGLzI3TVQ0uL85Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "dependencies": { - "@jest/console": "^27.0.6", - "@jest/environment": "^27.0.6", - "@jest/fake-timers": "^27.0.6", - "@jest/globals": "^27.0.6", - "@jest/source-map": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", - "@types/yargs": "^16.0.0", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", "glob": "^7.1.3", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-mock": "^27.0.6", - "jest-regex-util": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-snapshot": "^27.0.6", - "jest-util": "^27.0.6", - "jest-validate": "^27.0.6", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", - "strip-bom": "^4.0.0", - "yargs": "^16.0.3" + "strip-bom": "^4.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-runtime/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-runtime/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-runtime/node_modules/strip-bom": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/jest-serializer": { - "version": "27.0.6", - "integrity": "sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA==", - "dev": true, - "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.4" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, "node_modules/jest-snapshot": { - "version": "27.0.6", - "integrity": "sha512-NTHaz8He+ATUagUgE7C/UtFcRoHqR2Gc+KDfhQIyx+VFgwbeEMjeP+ILpUTLosZn/ZtbNdCF5LkVnN/l+V751A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "dependencies": { - "@babel/core": "^7.7.2", + "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", - "@babel/parser": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", - "@types/babel__traverse": "^7.0.4", - "@types/prettier": "^2.1.5", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^27.0.6", - "graceful-fs": "^4.2.4", - "jest-diff": "^27.0.6", - "jest-get-type": "^27.0.6", - "jest-haste-map": "^27.0.6", - "jest-matcher-utils": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-util": "^27.0.6", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^27.0.6", - "semver": "^7.3.2" + "pretty-format": "^29.7.0", + "semver": "^7.5.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-snapshot/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { @@ -8731,129 +8348,95 @@ } }, "node_modules/jest-snapshot/node_modules/diff-sequences": { - "version": "27.0.6", - "integrity": "sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-snapshot/node_modules/jest-diff": { - "version": "27.0.6", - "integrity": "sha512-Z1mqgkTCSYaFgwTlP/NUiRzdqgxmmhzHY1Tq17zL94morOHfHu3K4bgSgl+CR4GLhpV8VxkuOYuIWnQ9LnFqmg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "dependencies": { "chalk": "^4.0.0", - "diff-sequences": "^27.0.6", - "jest-get-type": "^27.0.6", - "pretty-format": "^27.0.6" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-snapshot/node_modules/jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-snapshot/node_modules/pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-snapshot/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, "node_modules/jest-util": { - "version": "27.0.6", - "integrity": "sha512-1JjlaIh+C65H/F7D11GNkGDDZtDfMEM8EBXsvd+l/cxtgQ6QhxuloOaiayt89DxUvDarbVhqI98HhgrM1yliFQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "is-ci": "^3.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-util/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-util/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-validate": { - "version": "27.0.6", - "integrity": "sha512-yhZZOaMH3Zg6DC83n60pLmdU1DQE46DW+KLozPiPbSbPhlXXaiUTDlhHQhHFpaqIFRrInko1FHXjTRpjWRuWfA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", + "@jest/types": "^29.6.3", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^27.0.6", + "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^27.0.6" + "pretty-format": "^29.7.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-validate/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-validate/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-validate/node_modules/ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "engines": { @@ -8864,8 +8447,9 @@ } }, "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.2.0", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "engines": { "node": ">=10" @@ -8875,70 +8459,57 @@ } }, "node_modules/jest-validate/node_modules/jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-validate/node_modules/pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "dependencies": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/jest-validate/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, "node_modules/jest-watcher": { - "version": "27.0.6", - "integrity": "sha512-/jIoKBhAP00/iMGnTwUBLgvxkn7vsOweDrOTSPzc7X9uOyUtJIDthQBTI1EXz90bdkrxorUZVhJwiB69gcHtYQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "dependencies": { - "@jest/test-result": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "jest-util": "^27.0.6", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", "string-length": "^4.0.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-watcher/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-watcher/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/jest-worker": { "version": "27.0.6", "integrity": "sha512-qupxcj/dRuA3xHPMUd40gr2EaAurFbkwzOh7wfPaeE9id7hyjURRQoqNfHifHK3XjJU6YJJUQKILGUnwGPEOCA==", + "peer": true, "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -8951,6 +8522,7 @@ "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "peer": true, "dependencies": { "has-flag": "^4.0.0" }, @@ -8961,62 +8533,6 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/jest/node_modules/@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest/node_modules/@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest/node_modules/jest-cli": { - "version": "27.0.6", - "integrity": "sha512-qUUVlGb9fdKir3RDE+B10ULI+LQrz+MCflEH2UJyoUjoHHCbxDrMxSzjQAPUMsic4SncI62ofYCcAvW6+6rhhg==", - "dev": true, - "dependencies": { - "@jest/core": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/types": "^27.0.6", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "import-local": "^3.0.2", - "jest-config": "^27.0.6", - "jest-util": "^27.0.6", - "jest-validate": "^27.0.6", - "prompts": "^2.0.1", - "yargs": "^16.0.3" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, "node_modules/jmespath": { "version": "0.15.0", "integrity": "sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc=", @@ -9068,53 +8584,9 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jsdom": { - "version": "16.6.0", - "integrity": "sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg==", - "dev": true, - "dependencies": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.5", - "xml-name-validator": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, "node_modules/jsesc": { "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, "bin": { @@ -9143,8 +8615,7 @@ "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==", - "peer": true + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "node_modules/json-schema-traverse": { "version": "1.0.0", @@ -9161,12 +8632,10 @@ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" }, "node_modules/json5": { - "version": "2.2.0", - "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "dependencies": { - "minimist": "^1.2.5" - }, "bin": { "json5": "lib/cli.js" }, @@ -9266,6 +8735,7 @@ }, "node_modules/kleur": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, "engines": { @@ -9459,6 +8929,7 @@ }, "node_modules/leven": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, "engines": { @@ -9548,8 +9019,7 @@ "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==", - "peer": true + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "node_modules/linkify-it": { "version": "4.0.1", @@ -9570,6 +9040,7 @@ }, "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": { @@ -9668,6 +9139,12 @@ "resolved": "https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz", "integrity": "sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==" }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, "node_modules/lodash.merge": { "version": "4.6.2", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", @@ -9854,11 +9331,12 @@ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" }, "node_modules/makeerror": { - "version": "1.0.11", - "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "dependencies": { - "tmpl": "1.0.x" + "tmpl": "1.0.5" } }, "node_modules/matcher": { @@ -10206,20 +9684,14 @@ }, "node_modules/node-int64": { "version": "0.4.0", - "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true }, - "node_modules/node-modules-regexp": { - "version": "1.0.0", - "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/node-releases": { - "version": "1.1.73", - "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==" + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" }, "node_modules/nodemailer": { "version": "6.9.3", @@ -10286,11 +9758,6 @@ "node": ">=0.10.0" } }, - "node_modules/nwsapi": { - "version": "2.2.0", - "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", - "dev": true - }, "node_modules/object-assign": { "version": "4.1.1", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", @@ -10460,17 +9927,6 @@ "node": ">=8" } }, - "node_modules/p-each-series": { - "version": "2.2.0", - "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/p-event": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz", @@ -10498,7 +9954,6 @@ "node_modules/p-limit": { "version": "3.1.0", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "peer": true, "dependencies": { "yocto-queue": "^0.1.0" }, @@ -10511,6 +9966,7 @@ }, "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": { @@ -10522,6 +9978,7 @@ }, "node_modules/p-locate/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": { @@ -10548,6 +10005,7 @@ }, "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": { @@ -10592,7 +10050,6 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "peer": true, "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -10671,6 +10128,7 @@ }, "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": { @@ -10907,18 +10365,17 @@ } }, "node_modules/pirates": { - "version": "4.0.1", - "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "dev": true, - "dependencies": { - "node-modules-regexp": "^1.0.0" - }, "engines": { "node": ">= 6" } }, "node_modules/pkg-dir": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "dependencies": { @@ -11033,6 +10490,31 @@ "node": ">= 10" } }, + "node_modules/pretty-format/node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/pretty-format/node_modules/@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, "node_modules/preview-email": { "version": "3.0.19", "resolved": "https://registry.npmjs.org/preview-email/-/preview-email-3.0.19.tgz", @@ -11094,8 +10576,9 @@ } }, "node_modules/prompts": { - "version": "2.4.1", - "integrity": "sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "dependencies": { "kleur": "^3.0.3", @@ -11146,11 +10629,6 @@ "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", "optional": true }, - "node_modules/psl": { - "version": "1.8.0", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", - "dev": true - }, "node_modules/pug": { "version": "3.0.2", "integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==", @@ -11278,6 +10756,22 @@ "node": ">=6" } }, + "node_modules/pure-rand": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, "node_modules/qs": { "version": "6.10.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", @@ -11494,6 +10988,7 @@ }, "node_modules/resolve-cwd": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "dependencies": { @@ -11505,6 +11000,7 @@ }, "node_modules/resolve-cwd/node_modules/resolve-from": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "engines": { @@ -11518,6 +11014,15 @@ "node": ">=4" } }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/responselike": { "version": "2.0.0", "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", @@ -11787,17 +11292,6 @@ "version": "1.2.4", "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" }, - "node_modules/saxes": { - "version": "5.0.1", - "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", - "dev": true, - "dependencies": { - "xmlchars": "^2.2.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/schema-utils": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", @@ -12027,11 +11521,13 @@ } }, "node_modules/signal-exit": { - "version": "3.0.3", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, "node_modules/sisteransi": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, @@ -12155,8 +11651,9 @@ "integrity": "sha1-0ZLJ/06moiyUxN1FkXHj8AzqEoU=" }, "node_modules/stack-utils": { - "version": "2.0.3", - "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, "dependencies": { "escape-string-regexp": "^2.0.0" @@ -12167,6 +11664,7 @@ }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, "engines": { @@ -12205,6 +11703,7 @@ }, "node_modules/string-length": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "dependencies": { @@ -12385,18 +11884,6 @@ "node": ">=8" } }, - "node_modules/supports-hyperlinks": { - "version": "2.2.0", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/symbol-observable": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", @@ -12406,11 +11893,6 @@ "node": ">=0.10" } }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true - }, "node_modules/table": { "version": "6.7.1", "integrity": "sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==", @@ -12477,21 +11959,6 @@ "node": ">=10" } }, - "node_modules/terminal-link": { - "version": "2.1.1", - "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/terser": { "version": "5.7.1", "integrity": "sha512-b3e+d5JbHAe/JSjwsC3Zn55wsBIM7AsHLjKxT31kGCldgbpFePaFo+PiddtO6uwRZWRw7sPXmAN8dTW61xmnSg==", @@ -12563,6 +12030,7 @@ }, "node_modules/test-exclude": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, "dependencies": { @@ -12596,11 +12064,6 @@ "node": ">=0.8" } }, - "node_modules/throat": { - "version": "6.0.1", - "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", - "dev": true - }, "node_modules/through": { "version": "2.3.8", "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", @@ -12663,38 +12126,6 @@ "integrity": "sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=", "dev": true }, - "node_modules/tough-cookie": { - "version": "4.0.0", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", - "dev": true, - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.1.2" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.1.2", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/tr46": { - "version": "2.1.0", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", - "dev": true, - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/tree-kill": { "version": "1.2.2", "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", @@ -12704,41 +12135,55 @@ } }, "node_modules/ts-jest": { - "version": "27.0.3", - "integrity": "sha512-U5rdMjnYam9Ucw+h0QvtNDbc5+88nxt7tbIvqaZUhFrfG4+SkWhMXjejCLVGcpILTPuV+H3W/GZDZrnZFpPeXw==", + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", "dev": true, "dependencies": { "bs-logger": "0.x", - "buffer-from": "1.x", "fast-json-stable-stringify": "2.x", - "jest-util": "^27.0.0", - "json5": "2.x", - "lodash": "4.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", "make-error": "1.x", - "mkdirp": "1.x", - "semver": "7.x", - "yargs-parser": "20.x" + "semver": "^7.5.3", + "yargs-parser": "^21.0.1" }, "bin": { "ts-jest": "cli.js" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" }, "peerDependencies": { - "jest": "^27.0.0", - "typescript": ">=3.8 <5.0" + "@babel/core": ">=7.0.0-beta.0 <8", + "@jest/types": "^29.0.0", + "babel-jest": "^29.0.0", + "jest": "^29.0.0", + "typescript": ">=4.3 <6" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "@jest/types": { + "optional": true + }, + "babel-jest": { + "optional": true + }, + "esbuild": { + "optional": true + } } }, - "node_modules/ts-jest/node_modules/mkdirp": { - "version": "1.0.4", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/ts-jest/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==", "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/ts-loader": { @@ -12868,6 +12313,7 @@ }, "node_modules/type-detect": { "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, "engines": { @@ -12901,14 +12347,6 @@ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, "node_modules/typeorm": { "version": "0.2.41", "integrity": "sha512-/d8CLJJxKPgsnrZWiMyPI0rz2MFZnBQrnQ5XP3Vu3mswv2WPexb58QM6BEtmRmlTMYN5KFWUz8SKluze+wS9xw==", @@ -13142,6 +12580,35 @@ "node": ">= 0.8" } }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, "node_modules/uri-js": { "version": "4.4.1", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", @@ -13174,13 +12641,14 @@ "dev": true }, "node_modules/v8-to-istanbul": { - "version": "8.0.0", - "integrity": "sha512-LkmXi8UUNxnCC+JlH7/fsfsKr5AU110l+SYGJimWNkWhxbN5EyeOtm1MJ0hhvqMMOhGwBj1Fp70Yv9i+hX0QAg==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0", - "source-map": "^0.7.3" + "convert-source-map": "^2.0.0" }, "engines": { "node": ">=10.12.0" @@ -13208,31 +12676,13 @@ "node": ">=0.10.0" } }, - "node_modules/w3c-hr-time": { - "version": "1.0.2", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "dev": true, - "dependencies": { - "browser-process-hrtime": "^1.0.0" - } - }, - "node_modules/w3c-xmlserializer": { - "version": "2.0.0", - "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", - "dev": true, - "dependencies": { - "xml-name-validator": "^3.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/walker": { - "version": "1.0.7", - "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "dependencies": { - "makeerror": "1.0.x" + "makeerror": "1.0.12" } }, "node_modules/watchpack": { @@ -13256,14 +12706,6 @@ "defaults": "^1.0.3" } }, - "node_modules/webidl-conversions": { - "version": "6.1.0", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", - "dev": true, - "engines": { - "node": ">=10.4" - } - }, "node_modules/webpack": { "version": "5.66.0", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.66.0.tgz", @@ -13345,32 +12787,6 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/whatwg-encoding": { - "version": "1.0.5", - "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", - "dev": true, - "dependencies": { - "iconv-lite": "0.4.24" - } - }, - "node_modules/whatwg-mimetype": { - "version": "2.3.0", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", - "dev": true - }, - "node_modules/whatwg-url": { - "version": "8.7.0", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", - "dev": true, - "dependencies": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/which": { "version": "2.0.2", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", @@ -13488,14 +12904,16 @@ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "node_modules/write-file-atomic": { - "version": "3.0.3", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, "dependencies": { "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, "node_modules/ws": { @@ -13517,11 +12935,6 @@ } } }, - "node_modules/xml-name-validator": { - "version": "3.0.0", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", - "dev": true - }, "node_modules/xml2js": { "version": "0.4.23", "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", @@ -13540,11 +12953,6 @@ "node": ">=4.0" } }, - "node_modules/xmlchars": { - "version": "2.2.0", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true - }, "node_modules/xtend": { "version": "4.0.2", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", @@ -13681,7 +13089,6 @@ "node_modules/yocto-queue": { "version": "0.1.0", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "peer": true, "engines": { "node": ">=10" }, @@ -13703,6 +13110,16 @@ } }, "dependencies": { + "@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, "@angular-devkit/core": { "version": "13.2.5", "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-13.2.5.tgz", @@ -13808,43 +13225,93 @@ } }, "@babel/code-frame": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", - "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", "requires": { - "@babel/highlight": "^7.16.7" + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "dependencies": { + "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==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "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==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "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==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "@babel/compat-data": { - "version": "7.14.7", - "integrity": "sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", "dev": true }, "@babel/core": { - "version": "7.14.6", - "integrity": "sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.5.tgz", + "integrity": "sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==", "dev": true, "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.14.5", - "@babel/helper-compilation-targets": "^7.14.5", - "@babel/helper-module-transforms": "^7.14.5", - "@babel/helpers": "^7.14.6", - "@babel/parser": "^7.14.6", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5", - "convert-source-map": "^1.7.0", + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.5", + "@babel/parser": "^7.23.5", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.5", + "@babel/types": "^7.23.5", + "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.1.2", - "semver": "^6.3.0", - "source-map": "^0.5.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "dependencies": { "debug": { - "version": "4.3.2", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { "ms": "2.1.2" @@ -13852,180 +13319,172 @@ }, "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 }, "semver": { - "version": "6.3.0", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true } } }, "@babel/generator": { - "version": "7.14.5", - "integrity": "sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.5.tgz", + "integrity": "sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==", "dev": true, "requires": { - "@babel/types": "^7.14.5", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } + "@babel/types": "^7.23.5", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" } }, "@babel/helper-compilation-targets": { - "version": "7.14.5", - "integrity": "sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", "dev": true, "requires": { - "@babel/compat-data": "^7.14.5", - "@babel/helper-validator-option": "^7.14.5", - "browserslist": "^4.16.6", - "semver": "^6.3.0" + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" }, "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, "semver": { - "version": "6.3.0", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true } } }, - "@babel/helper-function-name": { - "version": "7.14.5", - "integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/types": "^7.14.5" - } + "@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true }, - "@babel/helper-get-function-arity": { - "version": "7.14.5", - "integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==", + "@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dev": true, "requires": { - "@babel/types": "^7.14.5" + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" } }, "@babel/helper-hoist-variables": { - "version": "7.14.5", - "integrity": "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, "requires": { - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.14.7", - "integrity": "sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.22.5" } }, "@babel/helper-module-imports": { - "version": "7.14.5", - "integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", "dev": true, "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.22.15" } }, "@babel/helper-module-transforms": { - "version": "7.14.5", - "integrity": "sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.14.5", - "@babel/helper-replace-supers": "^7.14.5", - "@babel/helper-simple-access": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/helper-validator-identifier": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.14.5", - "integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==", - "dev": true, - "requires": { - "@babel/types": "^7.14.5" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" } }, "@babel/helper-plugin-utils": { - "version": "7.14.5", - "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", "dev": true }, - "@babel/helper-replace-supers": { - "version": "7.14.5", - "integrity": "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==", - "dev": true, - "requires": { - "@babel/helper-member-expression-to-functions": "^7.14.5", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" - } - }, "@babel/helper-simple-access": { - "version": "7.14.5", - "integrity": "sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dev": true, "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.22.5" } }, "@babel/helper-split-export-declaration": { - "version": "7.14.5", - "integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.22.5" } }, + "@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true + }, "@babel/helper-validator-identifier": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" + "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==" }, "@babel/helper-validator-option": { - "version": "7.14.5", - "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", "dev": true }, "@babel/helpers": { - "version": "7.14.6", - "integrity": "sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.5.tgz", + "integrity": "sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==", "dev": true, "requires": { - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.5", + "@babel/types": "^7.23.5" } }, "@babel/highlight": { - "version": "7.16.10", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", - "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", "requires": { - "@babel/helper-validator-identifier": "^7.16.7", - "chalk": "^2.0.0", + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "dependencies": { @@ -14070,12 +13529,14 @@ } }, "@babel/parser": { - "version": "7.14.7", - "integrity": "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.5.tgz", + "integrity": "sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==", "dev": true }, "@babel/plugin-syntax-async-generators": { "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "requires": { @@ -14084,6 +13545,7 @@ }, "@babel/plugin-syntax-bigint": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "requires": { @@ -14092,6 +13554,7 @@ }, "@babel/plugin-syntax-class-properties": { "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "requires": { @@ -14100,6 +13563,7 @@ }, "@babel/plugin-syntax-import-meta": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "requires": { @@ -14108,14 +13572,25 @@ }, "@babel/plugin-syntax-json-strings": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.8.0" } }, + "@babel/plugin-syntax-jsx": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, "@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "requires": { @@ -14124,6 +13599,7 @@ }, "@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "requires": { @@ -14132,6 +13608,7 @@ }, "@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "requires": { @@ -14140,6 +13617,7 @@ }, "@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "requires": { @@ -14148,6 +13626,7 @@ }, "@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "requires": { @@ -14156,6 +13635,7 @@ }, "@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "requires": { @@ -14164,6 +13644,7 @@ }, "@babel/plugin-syntax-top-level-await": { "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "requires": { @@ -14171,42 +13652,47 @@ } }, "@babel/plugin-syntax-typescript": { - "version": "7.14.5", - "integrity": "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==", + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/template": { - "version": "7.14.5", - "integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", "dev": true, "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" } }, "@babel/traverse": { - "version": "7.14.7", - "integrity": "sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.5.tgz", + "integrity": "sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==", "dev": true, "requires": { - "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.14.5", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-hoist-variables": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/parser": "^7.14.7", - "@babel/types": "^7.14.5", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.5", + "@babel/types": "^7.23.5", "debug": "^4.1.0", "globals": "^11.1.0" }, "dependencies": { "debug": { - "version": "4.3.2", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { "ms": "2.1.2" @@ -14214,27 +13700,32 @@ }, "globals": { "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true }, "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 } } }, "@babel/types": { - "version": "7.14.5", - "integrity": "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.5.tgz", + "integrity": "sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.14.5", + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" } }, "@bcoe/v8-coverage": { "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, @@ -14397,6 +13888,7 @@ }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "requires": { @@ -14409,6 +13901,7 @@ "dependencies": { "resolve-from": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true } @@ -14416,382 +13909,325 @@ }, "@istanbuljs/schema": { "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", "dev": true }, "@jest/console": { - "version": "27.0.6", - "integrity": "sha512-fMlIBocSHPZ3JxgWiDNW/KPj6s+YRd0hicb33IrmelCcjXo/pXPwvuiKFmZz+XuqI/1u7nbUK10zSsWL/1aegg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, "requires": { - "@jest/types": "^27.0.6", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "jest-message-util": "^27.0.6", - "jest-util": "^27.0.6", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } } }, "@jest/core": { - "version": "27.0.6", - "integrity": "sha512-SsYBm3yhqOn5ZLJCtccaBcvD/ccTLCeuDv8U41WJH/V1MW5eKUkeMHT9U+Pw/v1m1AIWlnIW/eM2XzQr0rEmow==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, "requires": { - "@jest/console": "^27.0.6", - "@jest/reporters": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "emittery": "^0.8.1", + "ci-info": "^3.2.0", "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-changed-files": "^27.0.6", - "jest-config": "^27.0.6", - "jest-haste-map": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-regex-util": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-resolve-dependencies": "^27.0.6", - "jest-runner": "^27.0.6", - "jest-runtime": "^27.0.6", - "jest-snapshot": "^27.0.6", - "jest-util": "^27.0.6", - "jest-validate": "^27.0.6", - "jest-watcher": "^27.0.6", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", "micromatch": "^4.0.4", - "p-each-series": "^2.1.0", - "rimraf": "^3.0.0", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + }, + "pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" } }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true } } }, "@jest/environment": { - "version": "27.0.6", - "integrity": "sha512-4XywtdhwZwCpPJ/qfAkqExRsERW+UaoSRStSHCCiQTUpoYdLukj+YJbQSFrZjhlUDRZeNiU9SFH0u7iNimdiIg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, "requires": { - "@jest/fake-timers": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^27.0.6" + "jest-mock": "^29.7.0" + } + }, + "@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, + "requires": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + } + }, + "@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "requires": { + "jest-get-type": "^29.6.3" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } + "jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true } } }, "@jest/fake-timers": { - "version": "27.0.6", - "integrity": "sha512-sqd+xTWtZ94l3yWDKnRTdvTeZ+A/V7SSKrxsrOKSqdyddb9CeNRF8fbhAU0D7ZJBpTTW2nbp6MftmKJDZfW2LQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "@sinonjs/fake-timers": "^7.0.2", + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", - "jest-message-util": "^27.0.6", - "jest-mock": "^27.0.6", - "jest-util": "^27.0.6" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" } }, "@jest/globals": { - "version": "27.0.6", - "integrity": "sha512-DdTGCP606rh9bjkdQ7VvChV18iS7q0IMJVP1piwTWyWskol4iqcVwthZmoJEf7obE1nc34OpIyoVGPeqLC+ryw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, "requires": { - "@jest/environment": "^27.0.6", - "@jest/types": "^27.0.6", - "expect": "^27.0.6" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" } }, "@jest/reporters": { - "version": "27.0.6", - "integrity": "sha512-TIkBt09Cb2gptji3yJXb3EE+eVltW6BjO7frO7NEfjI9vSIYoISi5R3aI3KpEDXlB1xwB+97NXIqz84qYeYsfA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, "requires": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", "chalk": "^4.0.0", "collect-v8-coverage": "^1.0.0", "exit": "^0.1.2", - "glob": "^7.1.2", - "graceful-fs": "^4.2.4", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-instrument": "^6.0.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.0.2", - "jest-haste-map": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-util": "^27.0.6", - "jest-worker": "^27.0.6", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "slash": "^3.0.0", - "source-map": "^0.6.0", "string-length": "^4.0.1", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^8.0.0" + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", + "jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" } }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "requires": { - "@types/yargs-parser": "*" + "has-flag": "^4.0.0" } - }, - "source-map": { - "version": "0.6.1", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true } } }, + "@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "requires": { + "@sinclair/typebox": "^0.27.8" + } + }, "@jest/source-map": { - "version": "27.0.6", - "integrity": "sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, "requires": { + "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", - "graceful-fs": "^4.2.4", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "graceful-fs": "^4.2.9" } }, "@jest/test-result": { - "version": "27.0.6", - "integrity": "sha512-ja/pBOMTufjX4JLEauLxE3LQBPaI2YjGFtXexRAjt1I/MbfNlMx0sytSX3tn5hSLzQsR3Qy2rd0hc1BWojtj9w==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, "requires": { - "@jest/console": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } } }, "@jest/test-sequencer": { - "version": "27.0.6", - "integrity": "sha512-bISzNIApazYOlTHDum9PwW22NOyDa6VI31n6JucpjTVM0jD6JDgqEZ9+yn575nDdPF0+4csYDxNNW13NvFQGZA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, "requires": { - "@jest/test-result": "^27.0.6", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.0.6", - "jest-runtime": "^27.0.6" + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" } }, "@jest/transform": { - "version": "27.0.6", - "integrity": "sha512-rj5Dw+mtIcntAUnMlW/Vju5mr73u8yg+irnHwzgtgoeI6cCPOvUwQ0D1uQtc/APmWgvRweEb1g05pkUpxH3iCA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, "requires": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.0.6", - "babel-plugin-istanbul": "^6.0.0", + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.0.6", - "jest-regex-util": "^27.0.6", - "jest-util": "^27.0.6", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", "micromatch": "^4.0.4", - "pirates": "^4.0.1", + "pirates": "^4.0.4", "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "source-map": { - "version": "0.6.1", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } + "write-file-atomic": "^4.0.2" } }, "@jest/types": { - "version": "26.6.2", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, "requires": { + "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^15.0.0", + "@types/yargs": "^17.0.8", "chalk": "^4.0.0" } }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, "@mapbox/node-pre-gyp": { "version": "1.0.5", "integrity": "sha512-4srsKPXWlIxp5Vbqz5uLfBN+du2fJChBoYn/f2h991WLdk7jUvcSk/McVLSv/X+xQIPI8eGD5GjrnygdyHnhPA==", @@ -15260,24 +14696,32 @@ "version": "2.0.0", "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" }, + "@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, "@sindresorhus/is": { "version": "4.0.1", "integrity": "sha512-Qm9hBEBu18wt1PO2flE7LPb30BHMQt1eQgbV76YntdNk73XZGpn3izvGTYxbGgzXKgbCjiia0uxTd3aTNQrY/g==" }, "@sinonjs/commons": { - "version": "1.8.3", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", "dev": true, "requires": { "type-detect": "4.0.8" } }, "@sinonjs/fake-timers": { - "version": "7.1.2", - "integrity": "sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", "dev": true, "requires": { - "@sinonjs/commons": "^1.7.0" + "@sinonjs/commons": "^3.0.0" } }, "@sqltools/formatter": { @@ -15354,11 +14798,6 @@ "ts-jest": "^27.1.5" } }, - "@tootallnate/once": { - "version": "1.1.2", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true - }, "@tsconfig/node10": { "version": "1.0.8", "integrity": "sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==" @@ -15376,28 +14815,31 @@ "integrity": "sha512-FTgBI767POY/lKNDNbIzgAX6miIDBs6NTCbdlDb8TrWovHsSvaVIZDlTqym29C6UqhzwcJx4CYr+AlrMywA0cA==" }, "@types/babel__core": { - "version": "7.1.15", - "integrity": "sha512-bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" } }, "@types/babel__generator": { - "version": "7.6.3", - "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", + "version": "7.6.7", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz", + "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==", "dev": true, "requires": { "@babel/types": "^7.0.0" } }, "@types/babel__template": { - "version": "7.4.1", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, "requires": { "@babel/parser": "^7.1.0", @@ -15405,11 +14847,12 @@ } }, "@types/babel__traverse": { - "version": "7.14.1", - "integrity": "sha512-DomsDK/nX3XXHs6jlQ8/YYE6jZAuhmoGAFfcYi1h1jbBNGS7Efdx74FKLTO3HCCyLqQyLlNbql87xqa7C3M/FQ==", + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", + "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", "dev": true, "requires": { - "@babel/types": "^7.3.0" + "@babel/types": "^7.20.7" } }, "@types/body-parser": { @@ -15549,8 +14992,9 @@ } }, "@types/graceful-fs": { - "version": "4.1.5", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, "requires": { "@types/node": "*" @@ -15716,11 +15160,6 @@ "@types/node": "*" } }, - "@types/prettier": { - "version": "2.3.2", - "integrity": "sha512-eI5Yrz3Qv4KPUa/nSIAi0h+qX0XyewOliug5F2QAtuRg6Kjg6jfmxe1GIwoIRhZspD1A0RP8ANrPwvEXXtRFog==", - "dev": true - }, "@types/qs": { "version": "6.9.7", "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", @@ -15766,8 +15205,9 @@ } }, "@types/stack-utils": { - "version": "2.0.1", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true }, "@types/superagent": { @@ -15801,16 +15241,18 @@ } }, "@types/yargs": { - "version": "15.0.14", - "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", "dev": true, "requires": { "@types/yargs-parser": "*" } }, "@types/yargs-parser": { - "version": "20.2.1", - "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==", + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "dev": true }, "@types/zen-observable": { @@ -16106,11 +15548,6 @@ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "peer": true }, - "abab": { - "version": "2.0.5", - "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", - "dev": true - }, "abbrev": { "version": "1.1.1", "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" @@ -16146,23 +15583,8 @@ }, "acorn": { "version": "8.4.1", - "integrity": "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==" - }, - "acorn-globals": { - "version": "6.0.0", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", - "dev": true, - "requires": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - } - } + "integrity": "sha512-asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==", + "peer": true }, "acorn-import-assertions": { "version": "1.8.0", @@ -16177,11 +15599,6 @@ "dev": true, "requires": {} }, - "acorn-walk": { - "version": "7.2.0", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true - }, "agent-base": { "version": "6.0.2", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", @@ -16448,67 +15865,69 @@ "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" }, "babel-jest": { - "version": "27.0.6", - "integrity": "sha512-iTJyYLNc4wRofASmofpOc5NK9QunwMk+TLFgGXsTFS8uEqmd8wdI7sga0FPe2oVH3b5Agt/EAK1QjPEuKL8VfA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, "requires": { - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.0.0", - "babel-preset-jest": "^27.0.6", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "slash": "^3.0.0" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } } }, "babel-plugin-istanbul": { - "version": "6.0.0", - "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^4.0.0", + "istanbul-lib-instrument": "^5.0.4", "test-exclude": "^6.0.0" + }, + "dependencies": { + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, "babel-plugin-jest-hoist": { - "version": "27.0.6", - "integrity": "sha512-CewFeM9Vv2gM7Yr9n5eyyLVPRSiBnk6lKZRjgwYnGKSl9M14TMn2vkN02wTF04OGuSDLEzlWiMzvjXuW9mB6Gw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, "requires": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", + "@types/babel__core": "^7.1.14", "@types/babel__traverse": "^7.0.6" } }, "babel-preset-current-node-syntax": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "requires": { @@ -16527,11 +15946,12 @@ } }, "babel-preset-jest": { - "version": "27.0.6", - "integrity": "sha512-WObA0/Biw2LrVVwZkF/2GqbOdzhKD6Fkdwhoy9ASIrOWr/zodcSpQh72JOkEn6NWyjmnPDjNSqaGN4KnpKzhXw==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, "requires": { - "babel-plugin-jest-hoist": "^27.0.6", + "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" } }, @@ -16639,20 +16059,15 @@ "fill-range": "^7.0.1" } }, - "browser-process-hrtime": { - "version": "1.0.0", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", - "dev": true - }, "browserslist": { - "version": "4.16.6", - "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", "requires": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" } }, "bs-logger": { @@ -16665,6 +16080,7 @@ }, "bser": { "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "requires": { @@ -16735,12 +16151,14 @@ }, "camelcase": { "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, "caniuse-lite": { - "version": "1.0.30001243", - "integrity": "sha512-vNxw9mkTBtkmLFnJRv/2rhs1yufpDfCkBZexG3Y0xdOH2Z/eE/85E4Dl5j1YUN34nZVsSp6vVRFQRrez9wJMRA==" + "version": "1.0.30001566", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz", + "integrity": "sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==" }, "chalk": { "version": "4.1.2", @@ -16753,6 +16171,7 @@ }, "char-regex": { "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true }, @@ -16801,8 +16220,9 @@ "dev": true }, "cjs-module-lexer": { - "version": "1.2.1", - "integrity": "sha512-jVamGdJPDeuQilKhvVn1h3knuMOZzr8QDnpk+M9aMlCaMkTDd6fBWPhiDqFvFZ07pL0liqabAiuy8SY4jGHeaw==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", "dev": true }, "class-transformer": { @@ -16913,7 +16333,8 @@ }, "co": { "version": "4.6.0", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true }, "code-point-at": { @@ -16921,8 +16342,9 @@ "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" }, "collect-v8-coverage": { - "version": "1.0.1", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", "dev": true }, "color-convert": { @@ -17047,12 +16469,10 @@ "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" }, "convert-source-map": { - "version": "1.8.0", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.1" - } + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true }, "cookie": { "version": "0.4.2", @@ -17110,6 +16530,21 @@ "yaml": "^1.10.0" } }, + "create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "requires": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + } + }, "create-require": { "version": "1.1.1", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" @@ -17131,36 +16566,6 @@ "which": "^2.0.1" } }, - "cssom": { - "version": "0.4.4", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", - "dev": true - }, - "cssstyle": { - "version": "2.3.0", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "dev": true, - "requires": { - "cssom": "~0.3.6" - }, - "dependencies": { - "cssom": { - "version": "0.3.8", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - } - } - }, - "data-urls": { - "version": "2.0.0", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", - "dev": true, - "requires": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" - } - }, "dateformat": { "version": "4.6.3", "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==" @@ -17173,15 +16578,12 @@ "ms": "2.0.0" } }, - "decimal.js": { - "version": "10.3.1", - "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", - "dev": true - }, "dedent": { - "version": "0.7.0", - "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", - "dev": true + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "requires": {} }, "deep-extend": { "version": "0.6.0", @@ -17331,21 +16733,6 @@ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" }, - "domexception": { - "version": "2.0.1", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", - "dev": true, - "requires": { - "webidl-conversions": "^5.0.0" - }, - "dependencies": { - "webidl-conversions": { - "version": "5.0.0", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", - "dev": true - } - } - }, "domhandler": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.0.tgz", @@ -17385,8 +16772,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.770", - "integrity": "sha512-Kyh8DGK1KfEZuYKIHvuOmrKotsKZQ+qBkDIWHciE3QoFkxXB1KzPP+tfLilSHAfxTON0yYMnFCWkQtUOR7g6KQ==" + "version": "1.4.608", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.608.tgz", + "integrity": "sha512-J2f/3iIIm3Mo0npneITZ2UPe4B1bg8fTNrFjD8715F/k1BvbviRuqYGkET1PgprrczXYTHFvotbBOmUp6KE0uA==" }, "emitter-listener": { "version": "1.1.2", @@ -17396,8 +16784,9 @@ } }, "emittery": { - "version": "0.8.1", - "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true }, "emoji-regex": { @@ -17469,7 +16858,6 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "peer": true, "requires": { "is-arrayish": "^0.2.1" } @@ -17667,66 +17055,6 @@ "version": "1.0.5", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" }, - "escodegen": { - "version": "2.0.0", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", - "dev": true, - "requires": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - }, - "dependencies": { - "estraverse": { - "version": "5.2.0", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", - "dev": true - }, - "levn": { - "version": "0.3.0", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "optionator": { - "version": "0.8.3", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dev": true, - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "prelude-ls": { - "version": "1.1.2", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "optional": true - }, - "type-check": { - "version": "0.3.2", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2" - } - } - } - }, "eslint": { "version": "7.32.0", "integrity": "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==", @@ -17977,50 +17305,27 @@ }, "exit": { "version": "0.1.2", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true }, "expect": { - "version": "27.0.6", - "integrity": "sha512-psNLt8j2kwg42jGBDSfAlU49CEZxejN1f1PlANWDZqIhBOVU/c2Pm888FcjWJzFewhIsNWfZJeLjUjtKGiPuSw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "ansi-styles": "^5.0.0", - "jest-get-type": "^27.0.6", - "jest-matcher-utils": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-regex-util": "^27.0.6" + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "5.2.0", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true - }, "jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true } } @@ -18209,8 +17514,9 @@ } }, "fb-watchman": { - "version": "2.0.1", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, "requires": { "bser": "2.1.1" @@ -18255,6 +17561,7 @@ }, "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, "requires": { @@ -18465,6 +17772,7 @@ }, "gensync": { "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true }, @@ -18483,6 +17791,7 @@ }, "get-package-type": { "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true }, @@ -18738,16 +18047,9 @@ "version": "10.7.3", "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==" }, - "html-encoding-sniffer": { - "version": "2.0.1", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", - "dev": true, - "requires": { - "whatwg-encoding": "^1.0.5" - } - }, "html-escaper": { "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, @@ -18842,31 +18144,6 @@ "toidentifier": "1.0.1" } }, - "http-proxy-agent": { - "version": "4.0.1", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "requires": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, - "dependencies": { - "debug": { - "version": "4.3.2", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } - }, "http2-wrapper": { "version": "1.0.3", "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", @@ -18937,8 +18214,9 @@ } }, "import-local": { - "version": "3.0.2", - "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "requires": { "pkg-dir": "^4.2.0", @@ -19055,8 +18333,7 @@ "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "peer": true + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" }, "is-binary-path": { "version": "2.1.0", @@ -19067,14 +18344,6 @@ "binary-extensions": "^2.0.0" } }, - "is-ci": { - "version": "3.0.0", - "integrity": "sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ==", - "dev": true, - "requires": { - "ci-info": "^3.1.1" - } - }, "is-core-module": { "version": "2.4.0", "integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==", @@ -19113,6 +18382,7 @@ }, "is-generator-fn": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true }, @@ -19137,11 +18407,6 @@ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" }, - "is-potential-custom-element-name": { - "version": "1.0.1", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true - }, "is-promise": { "version": "2.2.2", "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", @@ -19160,11 +18425,6 @@ "version": "2.0.0", "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" }, - "is-typedarray": { - "version": "1.0.0", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "dev": true - }, "is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", @@ -19193,41 +18453,50 @@ "integrity": "sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==" }, "istanbul-lib-coverage": { - "version": "3.0.0", - "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true }, "istanbul-lib-instrument": { - "version": "4.0.3", - "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", "dev": true, "requires": { - "@babel/core": "^7.7.5", + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.0.0", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" } }, "istanbul-lib-report": { - "version": "3.0.0", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "requires": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" + }, + "dependencies": { + "make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "requires": { + "semver": "^7.5.3" + } + } } }, "istanbul-lib-source-maps": { - "version": "4.0.0", - "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, "requires": { "debug": "^4.1.1", @@ -19236,8 +18505,9 @@ }, "dependencies": { "debug": { - "version": "4.3.2", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { "ms": "2.1.2" @@ -19245,19 +18515,22 @@ }, "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 }, "source-map": { "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true } } }, "istanbul-reports": { - "version": "3.0.2", - "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, "requires": { "html-escaper": "^2.0.0", @@ -19269,88 +18542,31 @@ "integrity": "sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==" }, "jest": { - "version": "27.0.6", - "integrity": "sha512-EjV8aETrsD0wHl7CKMibKwQNQc3gIRBXlTikBmmHUeVMKaPFxdcUIBfoDqTSXDoGJIivAYGqCWVlzCSaVjPQsA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, "requires": { - "@jest/core": "^27.0.6", + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", "import-local": "^3.0.2", - "jest-cli": "^27.0.6" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "jest-cli": { - "version": "27.0.6", - "integrity": "sha512-qUUVlGb9fdKir3RDE+B10ULI+LQrz+MCflEH2UJyoUjoHHCbxDrMxSzjQAPUMsic4SncI62ofYCcAvW6+6rhhg==", - "dev": true, - "requires": { - "@jest/core": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/types": "^27.0.6", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "import-local": "^3.0.2", - "jest-config": "^27.0.6", - "jest-util": "^27.0.6", - "jest-validate": "^27.0.6", - "prompts": "^2.0.1", - "yargs": "^16.0.3" - } - } + "jest-cli": "^29.7.0" } }, "jest-changed-files": { - "version": "27.0.6", - "integrity": "sha512-BuL/ZDauaq5dumYh5y20sn4IISnf1P9A0TDswTxUi84ORGtVa86ApuBHqICL0vepqAnZiY6a7xeSPWv2/yy4eA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, "requires": { - "@jest/types": "^27.0.6", "execa": "^5.0.0", - "throat": "^6.0.1" + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, "execa": { "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "requires": { @@ -19367,148 +18583,182 @@ }, "get-stream": { "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true }, "human-signals": { "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true } } }, "jest-circus": { - "version": "27.0.6", - "integrity": "sha512-OJlsz6BBeX9qR+7O9lXefWoc2m9ZqcZ5Ohlzz0pTEAG4xMiZUJoacY8f4YDHxgk0oKYxj277AfOk9w6hZYvi1Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, "requires": { - "@jest/environment": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", "co": "^4.6.0", - "dedent": "^0.7.0", - "expect": "^27.0.6", + "dedent": "^1.0.0", "is-generator-fn": "^2.0.0", - "jest-each": "^27.0.6", - "jest-matcher-utils": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-runtime": "^27.0.6", - "jest-snapshot": "^27.0.6", - "jest-util": "^27.0.6", - "pretty-format": "^27.0.6", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", "slash": "^3.0.0", - "stack-utils": "^2.0.3", - "throat": "^6.0.1" + "stack-utils": "^2.0.3" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, "ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true }, "pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" } + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + } + } + }, + "jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "requires": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "dependencies": { + "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==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + } + }, + "yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "requires": { + "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" + } + }, + "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==", + "dev": true } } }, "jest-config": { - "version": "27.0.6", - "integrity": "sha512-JZRR3I1Plr2YxPBhgqRspDE2S5zprbga3swYNrvY3HfQGu7p/GjyLOqwrYad97tX3U3mzT53TPHVmozacfP/3w==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, "requires": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^27.0.6", - "@jest/types": "^27.0.6", - "babel-jest": "^27.0.6", + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", "chalk": "^4.0.0", + "ci-info": "^3.2.0", "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.4", - "is-ci": "^3.0.0", - "jest-circus": "^27.0.6", - "jest-environment-jsdom": "^27.0.6", - "jest-environment-node": "^27.0.6", - "jest-get-type": "^27.0.6", - "jest-jasmine2": "^27.0.6", - "jest-regex-util": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-runner": "^27.0.6", - "jest-util": "^27.0.6", - "jest-validate": "^27.0.6", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "micromatch": "^4.0.4", - "pretty-format": "^27.0.6" + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, "ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true }, "jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true }, "pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" } + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true } } }, @@ -19524,137 +18774,70 @@ } }, "jest-docblock": { - "version": "27.0.6", - "integrity": "sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, "requires": { "detect-newline": "^3.0.0" } }, "jest-each": { - "version": "27.0.6", - "integrity": "sha512-m6yKcV3bkSWrUIjxkE9OC0mhBZZdhovIW5ergBYirqnkLXkyEn3oUUF/QZgyecA1cF1QFyTE8bRRl8Tfg1pfLA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, "requires": { - "@jest/types": "^27.0.6", + "@jest/types": "^29.6.3", "chalk": "^4.0.0", - "jest-get-type": "^27.0.6", - "jest-util": "^27.0.6", - "pretty-format": "^27.0.6" + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, "ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true }, "jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true }, "pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - } - } - } - }, - "jest-environment-jsdom": { - "version": "27.0.6", - "integrity": "sha512-FvetXg7lnXL9+78H+xUAsra3IeZRTiegA3An01cWeXBspKXUhAwMM9ycIJ4yBaR0L7HkoMPaZsozCLHh4T8fuw==", - "dev": true, - "requires": { - "@jest/environment": "^27.0.6", - "@jest/fake-timers": "^27.0.6", - "@jest/types": "^27.0.6", - "@types/node": "*", - "jest-mock": "^27.0.6", - "jest-util": "^27.0.6", - "jsdom": "^16.6.0" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "react-is": "^18.0.0" } }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true } } }, "jest-environment-node": { - "version": "27.0.6", - "integrity": "sha512-+Vi6yLrPg/qC81jfXx3IBlVnDTI6kmRr08iVa2hFCWmJt4zha0XW7ucQltCAPhSR0FEKEoJ3i+W4E6T0s9is0w==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, "requires": { - "@jest/environment": "^27.0.6", - "@jest/fake-timers": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", - "jest-mock": "^27.0.6", - "jest-util": "^27.0.6" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" } }, "jest-get-type": { @@ -19663,743 +18846,511 @@ "dev": true }, "jest-haste-map": { - "version": "27.0.6", - "integrity": "sha512-4ldjPXX9h8doB2JlRzg9oAZ2p6/GpQUNAeiYXqcpmrKbP0Qev0wdZlxSMOmz8mPOEnt4h6qIzXFLDi8RScX/1w==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "@types/graceful-fs": "^4.1.2", + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", "fsevents": "^2.3.2", - "graceful-fs": "^4.2.4", - "jest-regex-util": "^27.0.6", - "jest-serializer": "^27.0.6", - "jest-util": "^27.0.6", - "jest-worker": "^27.0.6", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", "micromatch": "^4.0.4", - "walker": "^1.0.7" + "walker": "^1.0.8" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", + "jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" } }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "requires": { - "@types/yargs-parser": "*" - } - } - } - }, - "jest-jasmine2": { - "version": "27.0.6", - "integrity": "sha512-cjpH2sBy+t6dvCeKBsHpW41mjHzXgsavaFMp+VWRf0eR4EW8xASk1acqmljFtK2DgyIECMv2yCdY41r2l1+4iA==", - "dev": true, - "requires": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^27.0.6", - "@jest/source-map": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/types": "^27.0.6", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^27.0.6", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.0.6", - "jest-matcher-utils": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-runtime": "^27.0.6", - "jest-snapshot": "^27.0.6", - "jest-util": "^27.0.6", - "pretty-format": "^27.0.6", - "throat": "^6.0.1" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "5.2.0", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true - }, - "pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", - "dev": true, - "requires": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "has-flag": "^4.0.0" } } } }, "jest-leak-detector": { - "version": "27.0.6", - "integrity": "sha512-2/d6n2wlH5zEcdctX4zdbgX8oM61tb67PQt4Xh8JFAIy6LRKUnX528HulkaG6nD5qDl5vRV1NXejCe1XRCH5gQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, "requires": { - "jest-get-type": "^27.0.6", - "pretty-format": "^27.0.6" + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, "ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true }, "jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true }, "pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" } + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true } } }, "jest-matcher-utils": { - "version": "27.0.6", - "integrity": "sha512-OFgF2VCQx9vdPSYTHWJ9MzFCehs20TsyFi6bIHbk5V1u52zJOnvF0Y/65z3GLZHKRuTgVPY4Z6LVePNahaQ+tA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, "requires": { "chalk": "^4.0.0", - "jest-diff": "^27.0.6", - "jest-get-type": "^27.0.6", - "pretty-format": "^27.0.6" + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, "ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true }, "diff-sequences": { - "version": "27.0.6", - "integrity": "sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true }, "jest-diff": { - "version": "27.0.6", - "integrity": "sha512-Z1mqgkTCSYaFgwTlP/NUiRzdqgxmmhzHY1Tq17zL94morOHfHu3K4bgSgl+CR4GLhpV8VxkuOYuIWnQ9LnFqmg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "requires": { "chalk": "^4.0.0", - "diff-sequences": "^27.0.6", - "jest-get-type": "^27.0.6", - "pretty-format": "^27.0.6" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" } }, "jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true }, "pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" } + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true } } }, "jest-message-util": { - "version": "27.0.6", - "integrity": "sha512-rBxIs2XK7rGy+zGxgi+UJKP6WqQ+KrBbD1YMj517HYN3v2BG66t3Xan3FWqYHKZwjdB700KiAJ+iES9a0M+ixw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, "requires": { "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.0.6", + "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", "micromatch": "^4.0.4", - "pretty-format": "^27.0.6", + "pretty-format": "^29.7.0", "slash": "^3.0.0", "stack-utils": "^2.0.3" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, "ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true }, "pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" } + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true } } }, "jest-mock": { - "version": "27.0.6", - "integrity": "sha512-lzBETUoK8cSxts2NYXSBWT+EJNzmUVtVVwS1sU9GwE1DLCfGsngg+ZVSIe0yd0ZSm+y791esiuo+WSwpXJQ5Bw==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "@types/node": "*" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" } }, "jest-pnp-resolver": { - "version": "1.2.2", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, "requires": {} }, "jest-regex-util": { - "version": "27.0.6", - "integrity": "sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", "dev": true }, "jest-resolve": { - "version": "27.0.6", - "integrity": "sha512-yKmIgw2LgTh7uAJtzv8UFHGF7Dm7XfvOe/LQ3Txv101fLM8cx2h1QVwtSJ51Q/SCxpIiKfVn6G2jYYMDNHZteA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, "requires": { - "@jest/types": "^27.0.6", "chalk": "^4.0.0", - "escalade": "^3.1.1", - "graceful-fs": "^4.2.4", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.0.6", - "jest-validate": "^27.0.6", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", "slash": "^3.0.0" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } } }, "jest-resolve-dependencies": { - "version": "27.0.6", - "integrity": "sha512-mg9x9DS3BPAREWKCAoyg3QucCr0n6S8HEEsqRCKSPjPcu9HzRILzhdzY3imsLoZWeosEbJZz6TKasveczzpJZA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "jest-regex-util": "^27.0.6", - "jest-snapshot": "^27.0.6" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" } }, "jest-runner": { - "version": "27.0.6", - "integrity": "sha512-W3Bz5qAgaSChuivLn+nKOgjqNxM7O/9JOJoKDCqThPIg2sH/d4A/lzyiaFgnb9V1/w29Le11NpzTJSzga1vyYQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, "requires": { - "@jest/console": "^27.0.6", - "@jest/environment": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "emittery": "^0.8.1", - "exit": "^0.1.2", - "graceful-fs": "^4.2.4", - "jest-docblock": "^27.0.6", - "jest-environment-jsdom": "^27.0.6", - "jest-environment-node": "^27.0.6", - "jest-haste-map": "^27.0.6", - "jest-leak-detector": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-runtime": "^27.0.6", - "jest-util": "^27.0.6", - "jest-worker": "^27.0.6", - "source-map-support": "^0.5.6", - "throat": "^6.0.1" + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", + "jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" } }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, "requires": { - "@types/yargs-parser": "*" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" } } } }, "jest-runtime": { - "version": "27.0.6", - "integrity": "sha512-BhvHLRVfKibYyqqEFkybsznKwhrsu7AWx2F3y9G9L95VSIN3/ZZ9vBpm/XCS2bS+BWz3sSeNGLzI3TVQ0uL85Q==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, "requires": { - "@jest/console": "^27.0.6", - "@jest/environment": "^27.0.6", - "@jest/fake-timers": "^27.0.6", - "@jest/globals": "^27.0.6", - "@jest/source-map": "^27.0.6", - "@jest/test-result": "^27.0.6", - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", - "@types/yargs": "^16.0.0", + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", "chalk": "^4.0.0", "cjs-module-lexer": "^1.0.0", "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", "glob": "^7.1.3", - "graceful-fs": "^4.2.4", - "jest-haste-map": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-mock": "^27.0.6", - "jest-regex-util": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-snapshot": "^27.0.6", - "jest-util": "^27.0.6", - "jest-validate": "^27.0.6", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", "slash": "^3.0.0", - "strip-bom": "^4.0.0", - "yargs": "^16.0.3" + "strip-bom": "^4.0.0" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, "strip-bom": { "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true } } }, - "jest-serializer": { - "version": "27.0.6", - "integrity": "sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA==", - "dev": true, - "requires": { - "@types/node": "*", - "graceful-fs": "^4.2.4" - } - }, "jest-snapshot": { - "version": "27.0.6", - "integrity": "sha512-NTHaz8He+ATUagUgE7C/UtFcRoHqR2Gc+KDfhQIyx+VFgwbeEMjeP+ILpUTLosZn/ZtbNdCF5LkVnN/l+V751A==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, "requires": { - "@babel/core": "^7.7.2", + "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", - "@babel/parser": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.0.6", - "@jest/types": "^27.0.6", - "@types/babel__traverse": "^7.0.4", - "@types/prettier": "^2.1.5", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "expect": "^27.0.6", - "graceful-fs": "^4.2.4", - "jest-diff": "^27.0.6", - "jest-get-type": "^27.0.6", - "jest-haste-map": "^27.0.6", - "jest-matcher-utils": "^27.0.6", - "jest-message-util": "^27.0.6", - "jest-resolve": "^27.0.6", - "jest-util": "^27.0.6", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", "natural-compare": "^1.4.0", - "pretty-format": "^27.0.6", - "semver": "^7.3.2" + "pretty-format": "^29.7.0", + "semver": "^7.5.3" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, "ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true }, "diff-sequences": { - "version": "27.0.6", - "integrity": "sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true }, "jest-diff": { - "version": "27.0.6", - "integrity": "sha512-Z1mqgkTCSYaFgwTlP/NUiRzdqgxmmhzHY1Tq17zL94morOHfHu3K4bgSgl+CR4GLhpV8VxkuOYuIWnQ9LnFqmg==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, "requires": { "chalk": "^4.0.0", - "diff-sequences": "^27.0.6", - "jest-get-type": "^27.0.6", - "pretty-format": "^27.0.6" + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" } }, "jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true }, "pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" } + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true } } }, "jest-util": { - "version": "27.0.6", - "integrity": "sha512-1JjlaIh+C65H/F7D11GNkGDDZtDfMEM8EBXsvd+l/cxtgQ6QhxuloOaiayt89DxUvDarbVhqI98HhgrM1yliFQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "requires": { - "@jest/types": "^27.0.6", + "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", - "graceful-fs": "^4.2.4", - "is-ci": "^3.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } } }, "jest-validate": { - "version": "27.0.6", - "integrity": "sha512-yhZZOaMH3Zg6DC83n60pLmdU1DQE46DW+KLozPiPbSbPhlXXaiUTDlhHQhHFpaqIFRrInko1FHXjTRpjWRuWfA==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, "requires": { - "@jest/types": "^27.0.6", + "@jest/types": "^29.6.3", "camelcase": "^6.2.0", "chalk": "^4.0.0", - "jest-get-type": "^27.0.6", + "jest-get-type": "^29.6.3", "leven": "^3.1.0", - "pretty-format": "^27.0.6" + "pretty-format": "^29.7.0" }, "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, "ansi-styles": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true }, "camelcase": { - "version": "6.2.0", - "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true }, "jest-get-type": { - "version": "27.0.6", - "integrity": "sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", "dev": true }, "pretty-format": { - "version": "27.0.6", - "integrity": "sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, "requires": { - "@jest/types": "^27.0.6", - "ansi-regex": "^5.0.0", + "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" + "react-is": "^18.0.0" } + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true } } }, "jest-watcher": { - "version": "27.0.6", - "integrity": "sha512-/jIoKBhAP00/iMGnTwUBLgvxkn7vsOweDrOTSPzc7X9uOyUtJIDthQBTI1EXz90bdkrxorUZVhJwiB69gcHtYQ==", + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, "requires": { - "@jest/test-result": "^27.0.6", - "@jest/types": "^27.0.6", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", "@types/node": "*", "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "jest-util": "^27.0.6", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", "string-length": "^4.0.1" - }, - "dependencies": { - "@jest/types": { - "version": "27.0.6", - "integrity": "sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - } } }, "jest-worker": { "version": "27.0.6", "integrity": "sha512-qupxcj/dRuA3xHPMUd40gr2EaAurFbkwzOh7wfPaeE9id7hyjURRQoqNfHifHK3XjJU6YJJUQKILGUnwGPEOCA==", + "peer": true, "requires": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -20409,6 +19360,7 @@ "supports-color": { "version": "8.1.1", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "peer": true, "requires": { "has-flag": "^4.0.0" } @@ -20457,42 +19409,9 @@ "esprima": "^4.0.0" } }, - "jsdom": { - "version": "16.6.0", - "integrity": "sha512-Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg==", - "dev": true, - "requires": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.5", - "xml-name-validator": "^3.0.0" - } - }, "jsesc": { "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, @@ -20515,8 +19434,7 @@ "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==", - "peer": true + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "json-schema-traverse": { "version": "1.0.0", @@ -20533,12 +19451,10 @@ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" }, "json5": { - "version": "2.2.0", - "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true }, "jsonc-parser": { "version": "3.0.0", @@ -20625,6 +19541,7 @@ }, "kleur": { "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true }, @@ -20765,6 +19682,7 @@ }, "leven": { "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true }, @@ -20842,8 +19760,7 @@ "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==", - "peer": true + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "linkify-it": { "version": "4.0.1", @@ -20861,6 +19778,7 @@ }, "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, "requires": { @@ -20956,6 +19874,12 @@ "resolved": "https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz", "integrity": "sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==" }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, "lodash.merge": { "version": "4.6.2", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", @@ -21112,11 +20036,12 @@ "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" }, "makeerror": { - "version": "1.0.11", - "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "requires": { - "tmpl": "1.0.x" + "tmpl": "1.0.5" } }, "matcher": { @@ -21379,17 +20304,14 @@ }, "node-int64": { "version": "0.4.0", - "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", - "dev": true - }, - "node-modules-regexp": { - "version": "1.0.0", - "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true }, "node-releases": { - "version": "1.1.73", - "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==" + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" }, "nodemailer": { "version": "6.9.3", @@ -21432,11 +20354,6 @@ "version": "1.0.1", "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" }, - "nwsapi": { - "version": "2.2.0", - "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", - "dev": true - }, "object-assign": { "version": "4.1.1", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" @@ -21550,11 +20467,6 @@ "version": "2.1.1", "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" }, - "p-each-series": { - "version": "2.2.0", - "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", - "dev": true - }, "p-event": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz", @@ -21573,13 +20485,13 @@ "p-limit": { "version": "3.1.0", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "peer": true, "requires": { "yocto-queue": "^0.1.0" } }, "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, "requires": { @@ -21588,6 +20500,7 @@ "dependencies": { "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, "requires": { @@ -21607,6 +20520,7 @@ }, "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 }, @@ -21639,7 +20553,6 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "peer": true, "requires": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -21700,6 +20613,7 @@ }, "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 }, @@ -21877,15 +20791,14 @@ "integrity": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==" }, "pirates": { - "version": "4.0.1", - "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", - "dev": true, - "requires": { - "node-modules-regexp": "^1.0.0" - } + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true }, "pkg-dir": { "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "requires": { @@ -21952,6 +20865,30 @@ "ansi-regex": "^5.0.0", "ansi-styles": "^4.0.0", "react-is": "^17.0.1" + }, + "dependencies": { + "@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + } + }, + "@types/yargs": { + "version": "15.0.19", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz", + "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + } } }, "preview-email": { @@ -22005,8 +20942,9 @@ } }, "prompts": { - "version": "2.4.1", - "integrity": "sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "requires": { "kleur": "^3.0.3", @@ -22047,11 +20985,6 @@ "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", "optional": true }, - "psl": { - "version": "1.8.0", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", - "dev": true - }, "pug": { "version": "3.0.2", "integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==", @@ -22176,6 +21109,12 @@ "version": "2.1.1", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" }, + "pure-rand": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", + "dev": true + }, "qs": { "version": "6.10.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", @@ -22329,6 +21268,7 @@ }, "resolve-cwd": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "requires": { @@ -22337,6 +21277,7 @@ "dependencies": { "resolve-from": { "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true } @@ -22346,6 +21287,12 @@ "version": "4.0.0", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" }, + "resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true + }, "responselike": { "version": "2.0.0", "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", @@ -22551,14 +21498,6 @@ "version": "1.2.4", "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" }, - "saxes": { - "version": "5.0.1", - "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", - "dev": true, - "requires": { - "xmlchars": "^2.2.0" - } - }, "schema-utils": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", @@ -22735,11 +21674,13 @@ } }, "signal-exit": { - "version": "3.0.3", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, "sisteransi": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, @@ -22832,8 +21773,9 @@ "integrity": "sha1-0ZLJ/06moiyUxN1FkXHj8AzqEoU=" }, "stack-utils": { - "version": "2.0.3", - "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, "requires": { "escape-string-regexp": "^2.0.0" @@ -22841,6 +21783,7 @@ "dependencies": { "escape-string-regexp": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true } @@ -22872,6 +21815,7 @@ }, "string-length": { "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "requires": { @@ -22990,26 +21934,12 @@ "has-flag": "^4.0.0" } }, - "supports-hyperlinks": { - "version": "2.2.0", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", - "dev": true, - "requires": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - } - }, "symbol-observable": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", "peer": true }, - "symbol-tree": { - "version": "3.2.4", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true - }, "table": { "version": "6.7.1", "integrity": "sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==", @@ -23061,15 +21991,6 @@ } } }, - "terminal-link": { - "version": "2.1.1", - "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - "dev": true, - "requires": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - } - }, "terser": { "version": "5.7.1", "integrity": "sha512-b3e+d5JbHAe/JSjwsC3Zn55wsBIM7AsHLjKxT31kGCldgbpFePaFo+PiddtO6uwRZWRw7sPXmAN8dTW61xmnSg==", @@ -23119,6 +22040,7 @@ }, "test-exclude": { "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, "requires": { @@ -23146,11 +22068,6 @@ "thenify": ">= 3.1.0 < 4" } }, - "throat": { - "version": "6.0.1", - "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", - "dev": true - }, "through": { "version": "2.3.8", "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", @@ -23198,56 +22115,31 @@ "integrity": "sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=", "dev": true }, - "tough-cookie": { - "version": "4.0.0", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", - "dev": true, - "requires": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.1.2" - }, - "dependencies": { - "universalify": { - "version": "0.1.2", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true - } - } - }, - "tr46": { - "version": "2.1.0", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", - "dev": true, - "requires": { - "punycode": "^2.1.1" - } - }, "tree-kill": { "version": "1.2.2", "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "peer": true }, "ts-jest": { - "version": "27.0.3", - "integrity": "sha512-U5rdMjnYam9Ucw+h0QvtNDbc5+88nxt7tbIvqaZUhFrfG4+SkWhMXjejCLVGcpILTPuV+H3W/GZDZrnZFpPeXw==", + "version": "29.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz", + "integrity": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==", "dev": true, "requires": { "bs-logger": "0.x", - "buffer-from": "1.x", "fast-json-stable-stringify": "2.x", - "jest-util": "^27.0.0", - "json5": "2.x", - "lodash": "4.x", + "jest-util": "^29.0.0", + "json5": "^2.2.3", + "lodash.memoize": "4.x", "make-error": "1.x", - "mkdirp": "1.x", - "semver": "7.x", - "yargs-parser": "20.x" + "semver": "^7.5.3", + "yargs-parser": "^21.0.1" }, "dependencies": { - "mkdirp": { - "version": "1.0.4", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "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==", "dev": true } } @@ -23340,6 +22232,7 @@ }, "type-detect": { "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true }, @@ -23361,14 +22254,6 @@ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" }, - "typedarray-to-buffer": { - "version": "3.1.5", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "requires": { - "is-typedarray": "^1.0.0" - } - }, "typeorm": { "version": "0.2.41", "integrity": "sha512-/d8CLJJxKPgsnrZWiMyPI0rz2MFZnBQrnQ5XP3Vu3mswv2WPexb58QM6BEtmRmlTMYN5KFWUz8SKluze+wS9xw==", @@ -23475,6 +22360,15 @@ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" }, + "update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, "uri-js": { "version": "4.4.1", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", @@ -23501,13 +22395,14 @@ "dev": true }, "v8-to-istanbul": { - "version": "8.0.0", - "integrity": "sha512-LkmXi8UUNxnCC+JlH7/fsfsKr5AU110l+SYGJimWNkWhxbN5EyeOtm1MJ0hhvqMMOhGwBj1Fp70Yv9i+hX0QAg==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, "requires": { + "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0", - "source-map": "^0.7.3" + "convert-source-map": "^2.0.0" } }, "validator": { @@ -23523,28 +22418,13 @@ "integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=", "dev": true }, - "w3c-hr-time": { - "version": "1.0.2", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "dev": true, - "requires": { - "browser-process-hrtime": "^1.0.0" - } - }, - "w3c-xmlserializer": { - "version": "2.0.0", - "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", - "dev": true, - "requires": { - "xml-name-validator": "^3.0.0" - } - }, "walker": { - "version": "1.0.7", - "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "requires": { - "makeerror": "1.0.x" + "makeerror": "1.0.12" } }, "watchpack": { @@ -23565,11 +22445,6 @@ "defaults": "^1.0.3" } }, - "webidl-conversions": { - "version": "6.1.0", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", - "dev": true - }, "webpack": { "version": "5.66.0", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.66.0.tgz", @@ -23625,29 +22500,6 @@ "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "peer": true }, - "whatwg-encoding": { - "version": "1.0.5", - "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", - "dev": true, - "requires": { - "iconv-lite": "0.4.24" - } - }, - "whatwg-mimetype": { - "version": "2.3.0", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", - "dev": true - }, - "whatwg-url": { - "version": "8.7.0", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", - "dev": true, - "requires": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" - } - }, "which": { "version": "2.0.2", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", @@ -23731,14 +22583,13 @@ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "write-file-atomic": { - "version": "3.0.3", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", "dev": true, "requires": { "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" + "signal-exit": "^3.0.7" } }, "ws": { @@ -23746,11 +22597,6 @@ "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==", "requires": {} }, - "xml-name-validator": { - "version": "3.0.0", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", - "dev": true - }, "xml2js": { "version": "0.4.23", "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", @@ -23763,11 +22609,6 @@ "version": "11.0.1", "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" }, - "xmlchars": { - "version": "2.2.0", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true - }, "xtend": { "version": "4.0.2", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" @@ -23859,8 +22700,7 @@ }, "yocto-queue": { "version": "0.1.0", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "peer": true + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" }, "zen-observable": { "version": "0.8.15", diff --git a/server/package.json b/server/package.json index 7b977b5f82..483456ee53 100644 --- a/server/package.json +++ b/server/package.json @@ -13,7 +13,7 @@ "start:dev": "NODE_ENV=development nest start --watch", "start:debug": "nest start --debug --watch", "start:prod": "NODE_ENV=production node dist/src/main", - "test": "NODE_ENV=test jest", + "test": "NODE_ENV=test jest --config jest.config.ts", "test:watch": "NODE_ENV=test jest --watch", "test:cov": "NODE_ENV=test jest --coverage", "test:debug": "NODE_ENV=test node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", @@ -117,12 +117,12 @@ "eslint-plugin-cypress": "^2.12.1", "eslint-plugin-jest": "^24.4.2", "eslint-plugin-prettier": "^3.4.1", - "jest": "^27.0.6", + "jest": "^29.7.0", "prettier": "^2.3.2", "preview-email": "^3.0.19", "rimraf": "^3.0.2", "supertest": "^6.1.3", - "ts-jest": "^27.0.3", + "ts-jest": "^29.1.1", "ts-loader": "^9.2.3", "typescript": "^4.3.5" }, diff --git a/server/test/controllers/oauth/oauth-git-instance.e2e-spec.ts b/server/test/controllers/oauth/oauth-git-instance.e2e-spec.ts index 47413e1e83..46a7396fc3 100644 --- a/server/test/controllers/oauth/oauth-git-instance.e2e-spec.ts +++ b/server/test/controllers/oauth/oauth-git-instance.e2e-spec.ts @@ -1,13 +1,11 @@ import * as request from 'supertest'; import { INestApplication } from '@nestjs/common'; import { clearDB, createUser, createNestAppInstanceWithEnvMock, generateRedirectUrl } from '../../test.helper'; -import { mocked } from 'ts-jest/utils'; -import got from 'got'; import { Organization } from 'src/entities/organization.entity'; import { Repository } from 'typeorm'; jest.mock('got'); -const mockedGot = mocked(got); +const mockedGot = jest.createMockFromModule('got'); describe('oauth controller', () => { let app: INestApplication; @@ -90,8 +88,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') .send({ token, organizationId: current_organization.id }) @@ -124,8 +122,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') .send({ token, organizationId: current_organization.id }) @@ -171,8 +169,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }).expect(401); }); @@ -215,8 +213,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }).expect(401); }); @@ -261,8 +259,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -310,8 +308,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -348,8 +346,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -386,8 +384,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -426,8 +424,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -467,8 +465,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -514,8 +512,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -563,8 +561,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -615,8 +613,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -666,8 +664,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -733,8 +731,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -801,8 +799,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') diff --git a/server/test/controllers/oauth/oauth-git.e2e-spec.ts b/server/test/controllers/oauth/oauth-git.e2e-spec.ts index 4a1df1be2f..3c008c4ea5 100644 --- a/server/test/controllers/oauth/oauth-git.e2e-spec.ts +++ b/server/test/controllers/oauth/oauth-git.e2e-spec.ts @@ -1,14 +1,12 @@ import * as request from 'supertest'; import { INestApplication } from '@nestjs/common'; import { clearDB, createUser, createNestAppInstanceWithEnvMock, generateRedirectUrl } from '../../test.helper'; -import { mocked } from 'ts-jest/utils'; -import got from 'got'; import { Organization } from 'src/entities/organization.entity'; import { Repository } from 'typeorm'; import { SSOConfigs } from 'src/entities/sso_config.entity'; jest.mock('got'); -const mockedGot = mocked(got); +const mockedGot = jest.createMockFromModule('got'); describe('oauth controller', () => { let app: INestApplication; @@ -97,8 +95,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) .send({ token }) @@ -131,8 +129,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -166,8 +164,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -209,8 +207,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -249,8 +247,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -288,8 +286,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -346,9 +344,9 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); - mockedGot.mockImplementationOnce(gitGetUserEmailResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserEmailResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -395,8 +393,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -446,8 +444,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -502,8 +500,8 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -571,9 +569,9 @@ describe('oauth controller', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); - mockedGot.mockImplementationOnce(gitGetUserEmailResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserEmailResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) diff --git a/server/test/controllers/onboarding/git-sso-auth.e2e-spec.ts b/server/test/controllers/onboarding/git-sso-auth.e2e-spec.ts index 9f7fed7bde..218aa55d53 100644 --- a/server/test/controllers/onboarding/git-sso-auth.e2e-spec.ts +++ b/server/test/controllers/onboarding/git-sso-auth.e2e-spec.ts @@ -16,11 +16,9 @@ import { verifyInviteToken, } from '../../test.helper'; import { getManager, Repository } from 'typeorm'; -import { mocked } from 'ts-jest/utils'; -import got from 'got'; jest.mock('got'); -const mockedGot = mocked(got); +const mockedGot = jest.createMockFromModule('got'); describe.skip('Git Onboarding', () => { let app: INestApplication; @@ -83,8 +81,8 @@ describe.skip('Git Onboarding', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -287,8 +285,8 @@ describe.skip('Git Onboarding', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -333,8 +331,8 @@ describe.skip('Git Onboarding', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -430,8 +428,8 @@ describe.skip('Git Onboarding', () => { }; }); - mockedGot.mockImplementationOnce(gitAuthResponse); - mockedGot.mockImplementationOnce(gitGetUserResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); diff --git a/server/test/controllers/tooljet_db.e2e-spec.ts b/server/test/controllers/tooljet_db.e2e-spec.ts index 4c1eca3564..327f392ec3 100644 --- a/server/test/controllers/tooljet_db.e2e-spec.ts +++ b/server/test/controllers/tooljet_db.e2e-spec.ts @@ -3,11 +3,9 @@ import { INestApplication } from '@nestjs/common'; import { authHeaderForUser, clearDB, createUser, createNestAppInstanceWithEnvMock } from '../test.helper'; import { getManager, QueryFailedError } from 'typeorm'; import { InternalTable } from 'src/entities/internal_table.entity'; -import { mocked } from 'ts-jest/utils'; -import got from 'got'; jest.mock('got'); -const mockedGot = mocked(got); +const mockedGot = jest.createMockFromModule('got'); //TODO: this spec will need postgrest instance to run (skipping for now) describe.skip('Tooljet DB controller', () => { @@ -111,7 +109,7 @@ describe.skip('Tooljet DB controller', () => { }; }); - mockedGot.mockImplementationOnce(postgrestResponse); + (mockedGot as jest.Mock).mockImplementationOnce(postgrestResponse); const response = await request(nestApp.getHttpServer()) .get( From 92df78bd1afadcef37d96939cabc08eee0c0bc81 Mon Sep 17 00:00:00 2001 From: Akshay Sasidharan Date: Fri, 8 Dec 2023 19:41:12 +0530 Subject: [PATCH 63/63] fix type errors on mocked got on package update --- .../oauth/oauth-git-instance.e2e-spec.ts | 68 ++++++++++--------- .../controllers/oauth/oauth-git.e2e-spec.ts | 52 +++++++------- .../onboarding/git-sso-auth.e2e-spec.ts | 12 ++-- .../test/controllers/tooljet_db.e2e-spec.ts | 6 +- 4 files changed, 72 insertions(+), 66 deletions(-) diff --git a/server/test/controllers/oauth/oauth-git-instance.e2e-spec.ts b/server/test/controllers/oauth/oauth-git-instance.e2e-spec.ts index 46a7396fc3..2e062db656 100644 --- a/server/test/controllers/oauth/oauth-git-instance.e2e-spec.ts +++ b/server/test/controllers/oauth/oauth-git-instance.e2e-spec.ts @@ -1,11 +1,13 @@ import * as request from 'supertest'; import { INestApplication } from '@nestjs/common'; import { clearDB, createUser, createNestAppInstanceWithEnvMock, generateRedirectUrl } from '../../test.helper'; +import { mocked } from 'jest-mock'; +import got from 'got'; import { Organization } from 'src/entities/organization.entity'; import { Repository } from 'typeorm'; jest.mock('got'); -const mockedGot = jest.createMockFromModule('got'); +const mockedGot = mocked(got); describe('oauth controller', () => { let app: INestApplication; @@ -88,8 +90,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') .send({ token, organizationId: current_organization.id }) @@ -122,8 +124,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') .send({ token, organizationId: current_organization.id }) @@ -169,8 +171,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }).expect(401); }); @@ -213,8 +215,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }).expect(401); }); @@ -259,8 +261,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -308,8 +310,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -346,8 +348,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -384,8 +386,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -424,8 +426,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -465,8 +467,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -512,8 +514,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -561,8 +563,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -613,8 +615,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -664,8 +666,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') @@ -731,8 +733,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -799,8 +801,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/common/git') diff --git a/server/test/controllers/oauth/oauth-git.e2e-spec.ts b/server/test/controllers/oauth/oauth-git.e2e-spec.ts index 3c008c4ea5..24a8b6f715 100644 --- a/server/test/controllers/oauth/oauth-git.e2e-spec.ts +++ b/server/test/controllers/oauth/oauth-git.e2e-spec.ts @@ -1,12 +1,14 @@ import * as request from 'supertest'; import { INestApplication } from '@nestjs/common'; import { clearDB, createUser, createNestAppInstanceWithEnvMock, generateRedirectUrl } from '../../test.helper'; +import { mocked } from 'jest-mock'; +import got from 'got'; import { Organization } from 'src/entities/organization.entity'; import { Repository } from 'typeorm'; import { SSOConfigs } from 'src/entities/sso_config.entity'; jest.mock('got'); -const mockedGot = jest.createMockFromModule('got'); +const mockedGot = mocked(got); describe('oauth controller', () => { let app: INestApplication; @@ -95,8 +97,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) .send({ token }) @@ -129,8 +131,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -164,8 +166,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -207,8 +209,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -247,8 +249,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -286,8 +288,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -344,9 +346,9 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserEmailResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserEmailResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -393,8 +395,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -444,8 +446,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -500,8 +502,8 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) @@ -569,9 +571,9 @@ describe('oauth controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserEmailResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserEmailResponse); const response = await request(app.getHttpServer()) .post('/api/oauth/sign-in/' + sso_configs.id) diff --git a/server/test/controllers/onboarding/git-sso-auth.e2e-spec.ts b/server/test/controllers/onboarding/git-sso-auth.e2e-spec.ts index 218aa55d53..3e10d2f9d0 100644 --- a/server/test/controllers/onboarding/git-sso-auth.e2e-spec.ts +++ b/server/test/controllers/onboarding/git-sso-auth.e2e-spec.ts @@ -285,8 +285,8 @@ describe.skip('Git Onboarding', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -331,8 +331,8 @@ describe.skip('Git Onboarding', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); @@ -428,8 +428,8 @@ describe.skip('Git Onboarding', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(gitAuthResponse); - (mockedGot as jest.Mock).mockImplementationOnce(gitGetUserResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitAuthResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(gitGetUserResponse); const response = await request(app.getHttpServer()).post('/api/oauth/sign-in/common/git').send({ token }); diff --git a/server/test/controllers/tooljet_db.e2e-spec.ts b/server/test/controllers/tooljet_db.e2e-spec.ts index 327f392ec3..4a527cef76 100644 --- a/server/test/controllers/tooljet_db.e2e-spec.ts +++ b/server/test/controllers/tooljet_db.e2e-spec.ts @@ -3,9 +3,11 @@ import { INestApplication } from '@nestjs/common'; import { authHeaderForUser, clearDB, createUser, createNestAppInstanceWithEnvMock } from '../test.helper'; import { getManager, QueryFailedError } from 'typeorm'; import { InternalTable } from 'src/entities/internal_table.entity'; +import { mocked } from 'jest-mock'; +import got from 'got'; jest.mock('got'); -const mockedGot = jest.createMockFromModule('got'); +const mockedGot = mocked(got); //TODO: this spec will need postgrest instance to run (skipping for now) describe.skip('Tooljet DB controller', () => { @@ -109,7 +111,7 @@ describe.skip('Tooljet DB controller', () => { }; }); - (mockedGot as jest.Mock).mockImplementationOnce(postgrestResponse); + (mockedGot as unknown as jest.Mock).mockImplementationOnce(postgrestResponse); const response = await request(nestApp.getHttpServer()) .get(

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�WpxQB&1<5edCP>gCi-?PT6b-7)JM3@R z>}BZekkdqrEle4NC77@a2~pwBt&SS^!4KcOZ&}K{f3VEenmvs>m=9qH{SukKs63e; zSk0|JxyuLIIG)PsZ3)qke99}s7U2_?nX$7vA<&9cl z6TZ4zOWg+?u4S#VC4Ejr-ktegzhQYhUJEOKU~|RWE0f&jKeA2uc~qC7-GsX-;p|ff z6)=j}ioO3nV-+JSK6^SlWHIh!KL~@K+p=l3layym!rXZ)n@}%)_qo$mhB~BE#8!Ho z69Z@hz3fU_XD4!8`0QxcrF%RQfnPD+;j?84)!#oY)D~Z0BH0$pu9$4_zI%RRnoZ4v z804`37iF={Cn^=4kh<)N#;;~B2ip}3Zsg}Q9e$zrkJPMpxInfb{4-_r6SjsK5fcmZ zx-}F(#da~u5$Pt^-S8Q&>`z!9~aDb=ft(y>N3dbZu)xn6>)8sgrO}%?> z^1ILOc5AWjjXR&?vZ?-D1J^LG&f^3?ex(P{oXQV!rS*q>w~=NqN9qcnm`sW)%7a*G z*q|xyVwzksSNI|#c_^*Q1LfhOfD~dZxIRC53+l|aF(p-;L`4~HhtWlotS3u|`_Grm zau3rYtyZ^myFD_l-KdtM<5ArIrvd|~@?Y?@`f5_*CgW}qJ0x1YQR z$CvtNjb9`d^3oCVr4JZqay4x#y>`KN^Q7($8Z>)ZPweaeCD;&tZY<2bsJX;#fB1Zt z`MG7{);Fa!n?Uke;<6wrhe}TfWaT4Tfw*tSO`uX<9 z)q0Ut5*Ge8cwgmbIf{fxKtd6>a6!BNBNcyt`NJY@B#?s1f@fT+f358e$-PQ}}AQLit*WQ%NjqiAv@Z3tS;4;zfjXoJS|*#SZd z>I)M(fJta)q(4)!KcA8+P5$Baw$N~(I`n{eG}IasY5%b|KvTG!Icy6*2$$;z>}s;p ziLs-WPg6LU&rc6sMr{XH7@L}hAT7+&Gw?HjkD9mB z!P{*?`__}_Pvy~a135s6Jf9V68RvP79pQ9zI1uR1J6&L4W7zk?r83krR^F~x4MPzZ ze>jIAd%}kp1o&P>qH{P4M-gm8=^|TrCaVBwtS?fc*+h6E_6yc+$#bbv`8NdOR%16F z_6;;_8M>xIe@qag&Z#uoGxnXZ`s*4YY9aaj2xJ6JjE@eFvKYB4>S;xS7Vv1Ib6QE7 zSeqkxDtPIBQde4>yAZpLj1GS$L2bsP{bAD|eN9s7tYtqR`F_RU^m|Dcz@(S`RbKFu zeL<#95I&J1uV?u7wc<|H1DCRHBlcYjQ)>A~@Tryka8Gd|dqU`~&9&8{IoIV@Pt38; zNrGCw(jNYh@@);)xzZlb6dDNb+UeWr&?s!z<6irMX8L=orYG-DbKr8*HtgoOQgswnOFsiO)@fIwy-(z%nwRPG&s&rmfj^ zvjv@L+wyJv=i3JSVTzeR=lfPrrlSWr66k!grRz&6LLT~|)SI)c5_;odsR1`yVfI#RE8FS9xv6ag0t@}%zEin`4ORz9s;T0rkhu0MG9dYm^3&yjgQkDk@|VV3 zV)GSKOX8p+{ct8<;9-fef~_r;jBIyL3q3zfgW~$dkJ7*PwZkAbe(D!$x?ETV|0c}C zN;t7jdvAtNJ~eyjvYV{xt}0AC){=03CojgK59PRkBE$v-YEC&1^JRV$v z#FVc1--f81C&>g}kIzu!fh-1{U_936r8VvNq3%^TL+GdRTzjtca`(B(YjOiKV1eRR4jx&%hhalA>|7nGOJv@umAu+vD}a zyBoEV$yTI84N&_0VPjFl+B=ux>Q>3Re*1p8x9sr-T)~~*jD-%gB@IjhmX55pmZ?!r zeszIQFG14VP5I_MWW=zQ;efBw`1iX@!?XUs7-k-J+p!C78z9FQad#2sdCC;c+j;wb z{tKxp&0N^roJUO7HLd-UXJ_W&uhG=-*$1AzSBTNus-*AREEjepf7U~PMg8(14_H)< ztE?Y^Z43_xGs-g7?)@YMmCdd(NSlYO{%GhAPk|{>0hXg2t&oB#HW&lSc7@Udh+W^LCSx4&D*lh=@LEO#rUJ#j-m5fL>7 z;Q~mu!)6KYDYGYd4M2UvzP5_BQbi@EX{?(#%Kh$Nwdpzu{l29Q_lsnF-C3 zmsM2kNp5Sx=QAVOkZm8&)eU#*2QH&vf3$PCwv6c>Nx{O%oROEfh!ZDKT$kZ$*^x#j zCS>ystS8%!JwS}C%IEZ)xG3cIaIybV6st*Ho!7|FcCiM}(2~0l;D}1*V(<3c56xUU z3|lXH5;Z_7cqm=P>+olbS{djZ3CQEg9>YQ%<{wy6?0=%ZwDTlHP3n#v(nO-GF;kIL~MN{v$P(WHFr-Jq_4e zVP8&3*SyyeNPCzn8q&UT>Xz|Z?>m4lx#?x&<6B5b7G(;(Qp%ggiz@@`Qfo`xy#~x3dDB-I5K`CY!hKkB!4Pr1^PM7=hR`K zfP3X#ru;};9`8@MpQQN4S*EcEw+`k?sj!DpG-!mZ{szt;9lq30dA?oOjb@{n9;LlN z_j^c;Hxb7r;e5kNf|`cjm!17|(>H3tSlBgnD2v4p(}=_*Al9hKO@KziFYKy@<)oKm z0VS_EM}I;6WF=pjN3Wg4M)+{OJ<`;zRExkSb!0=hT;L>D5RFRG1Qq;dq+h5^gGhko zju9ZWs(nGZ7@JZUl_;t&`2|nm86_54{Xo+dAf|%Dv`X6xY+m* zu%aIu5dj2(DUZc2CFhzZ<#D>ce-nS%?D6v6++7}qkQpKQNXmIoQ7RkMb+lklgRf6A z)|6)K`T(`+_QH;0dRu04_fJa|khY$C;C`T2xpj$if@gTP=SN4+%jQ~fEV*wSEz_RQ zbU1r+F4Q8`^u-0(MCRXGKRn8GU%d?79EI3;`5yIHd)VpWa42DcpJb(C5`vRr`xXlGl8h$x@%SG4ZoAyKEfzf?BWMq8VMmA>%oz z_0Uk0Pd^riWKVlTs_k6RX-B55`1W9|KiWmO^SwkhRC=2oAD&H$GJC6Ao|HA+QbbaN z)>y84gR0f*4if*nhK^Cn`UBW)kqw{awMeb~GBP+^BHXkAHADZrB@k2@i`bZ_nyr!c zC4I1s+Wj_WB{{Z6H}T{vWly}KlYPzcG+NPpdPm<#y+@TGEr%AJylvEhqS5E70`!zR z>-CccZbq<7xGi%`S&@n1$l0jgk7d7k5l=YvWOp~b9dk5{ zT~Rnp*^>7zOR#kDPMvJ4kEPGwAt5>56j6JZPDF#M7gfBCYEBV7}(9$}FFu zo03}m#m~fZW1;!DlE3ZUa|cOdN0rKsul0;}T8HQXZ;U@9(Ybpr?Ub=5ylh2be4NjR zl*ZTpEy>kT{3v$CoGbc|x4Rwl3>D^gH=kw%7h1y+?Cauw%T1&j*M%o30U+i z9l?UR;?8S?EAO(GReVuG3)BT{i(x=I?TF!s`F$Fz*yk8Z41v>4JEi?CAY0d6X+4cd z{P;Eg%a@6*3J{w{_uVl!L%-+Cvg!4|&R+a;>DGAk)9BBJEEj-Jl09%d5 zIU^B2fdu}PL53Z&ffA~<8qlAcBu0j;~p#0MNU=n0_08#eqbX&?mTA@NjbD+IK9?PtxJ&b&%$+si|IXZb$;JuS1dp07J%(3%8>f3#rGt&%y^A7+ zKy;dYL}{LS1_23Mvz-L`feb;8gQbr6Qa?X32?x51jrK$%eX=!APfKp=EueN?OYGmp?&8{8d z%kup`!VQy`ARw9G`Y-dd{ilB@)Y*pXM#wOb^iuhqbTkM6o9DBIe9Ik!p|$({lWFhu zkbr%3t9;%g(M?JKAf{iYPq?nze|ay;AR&Q0tXJ1JWIdVi)L+VW zt`S2nnndo0#qiij0g;#MVHkgTIl%kTt*@{1zMXh>3HTu&i&agw{{CLfogFW@y!=gs z`gboptHpg|DqSE=%9Fp{=Pt^hRkbJa?nc*_mg@LKX6#4m&U6790O*X4F4bA`h`H_~ z%)Tl*+WPYbPUk65h+TIh<<^5+pXEAshxy~UcF$1r^701Qd?94p*GB+{moI92m`^uw zXo9!bzc;1?eT&7Z-(L*Qd2-(UpICs)OAq)~3Cb~@6=Uj`S1U5{Bh<$Xy!hLo8D%m3 zy_N6GbLB^gPC2%|VoIkdtWes#qDsh%m3kcL&3x4Pt=B?g2O{sH+Cq* zZL-aKw%liNr^*bNC}Xt~t@eD;Ku1T%KSVHwL3MPfde0 zWxWyV7JF0Q(MS7;9HoO&nBa0(kdTPzWtjv0)Yq4>@e6=yh$%*j4@m1UD0%7!2QJMI z9iu%6FHGRoZBP~t?&$9ch!}Xzjk^EThxq)w-l0_Mk;&THT-61F7m(F=*BsEhE~TP^ev1OK`3Q!8ew_|KXK86We3V`)mMBNUF#qs%W}o9>V-r6u;*mMn885gE zyGmP8JFHm|wwuQ+P2uUjxi}O6b+M)_$q(<#cywyfiwyMDfd$c%P{^S3d`EaZMJUZu zGk}3&+?*ehVv$T(B*l8){w3!&It^D?(5kGjSJfaZ(fcBSNveD>4d@y8k;waPlnn=~ z!!5>!7CRXaDiWT@i1wPLt8!yXK9`pmzRm85GlIvS){%%G+`!Pv8Z zBkVBn?>HYb#AS&DhMsN}@ow+!MI(jdnO%KgzP$ipz18?<9Nfc&@PJO}{$dT95-IZq zwlQ;%lG`iA@X3S>h>4&a zE24cY4@v;oegs{#Vmia$#uJ+O{KtwYbd$tDZ?)H*nrt1&~{ z|Fh3)b51q4u<-a9nenfXYdo5mogK3M<#rt1YV#`&9-u@WL)mbcEB7&MF()^*!tp$x zCqwuh0^n+dg6hx64ZNf)SgIMC7zhCb-}~J+yF~myxuE$0Lk^f;@L5ykK`B;*&zfSb zt0nh(^1-HFaw6c!N7f$<$+b>o>6h}qT2E#l2a6ao4@am9wHAts139p~ypDwFpL!XS zzofQ-_3HBoHK<$W{_md==y>6Ii7%sy3w~uMpho>;djF7t=9>!0C(dl-iViOaKc;m! z&~tKfCURJ+dW?L6czb*6H#$HB{4Qt)vc!cgRI{Rdu1=1vh3$Wa{AqFP>gz+5!+a!@ z4YXR=u`9Ds8Rg@pNtBe9TLR92mY9`$ARCRADqD1Na%0o+%DS?ma?h7jsn$(A4(6UX zAXsv0h_G+W9016voJkFzR7%$KW->jDDco^|^KM6jPOjZh-I8&*5_^MWBnB2MHMzu5+7{F|%KR>=_nJD!YQj+@D1_}k$mnM~|h zF>-ac(t14^m(?gTkEkLEojaWcnLje19urBsT)(d(r{g}taHSI=mQpx{{81SAH$&YM zR7V>(?jE$K^5N&yCZ^X9PRvnN*|xs`m-h1djKk^I_t5Jz%0k}Z5Ddw?O=DbYF?0n5 zR(R-@IJwu#r9zBazyGxBbfVGCsa);)@-#qq$oa~?Xo*%G=DVh*L0j%8oS%e`rzdAqJ#FQY((o(of4DudQzuo8 zi@SZ@0VnEmlVvR}C`xL-Gl5Pyq*34~;pB~c0-_8fg&ByNLhz*_1Z%d=@hHml)OG_K z+*`)7%=1X?=5+VB3V`G(1T)XUPoRa^JwgpaL?R%66dH2rA>na}aCJ($8Y>GJ*y{P_ zFVZ3NbvCTPHZ*v>H~NQ!&>6y8EF^+80uhfL1PWn$L~-#J;>qyP(6ysAS>OiC#rci% z1=)a$(4gDOt{VilD!iTo03dAlIA|I`Eh#_i9lIN6imbImq9oI}Ge z>HH0!$;qvGLh(W2EZ@*>9vS$#%L3l^h%BQt^doQ3=ub7p(U=xTC z2qYplRxXl|`O^C0a7i|WQ}_7S9%-w`F%?MU6dse38g4y1F&3OKLPn+o80g-pM?|xH zmd+jM9zc<=qjO}0rZ+luwFMXOA@(iqqDgu12?)BBN+b3=@NiMRc^LQ!<>loa935Zq zz1Q2&vCiF_t=PB=zhKjEM6WotH?#TCA9|13+jirAe0^pk6<-?7F=8YV|4Gyd)-y#s z{_-W8UM-m|6Gd)2HYTiP)qNminu5DXAHe+QSc^liArsF`pd~t%#It}#n85084>;o5 z8!$XPy#5W#Q34v8z%t#MPI^n#&F|^KsU+76U2X=zH~s!kE%9My8d>-ES2aBZ>4>=> z1>n5?^q_cDBE$!H=--3-FZ!d09M%8EiO0lW4Aeo7dxzz_~^;4^Pjop1F`{qB7lgy_k<)*6Q%- zpPtG>jS+^FhXFS%rux_S$VfsGl8h}8*5buRwypd18~xw%jg5fMP&jIXS#lMP0F z{DaV%+j)8q)bDqDjdp7M@6M@L{O;FPlE2khEUI5^SE#3DWB}Dcj(z?eVFs5W7fC4~ z*OUbz?tsDh?XX-XSwfI(M&SNSO9Ie@bN?kWffywXjer62{!J5`dd+7_fB~;^p2dCg zZYnKx>G-T|;Qd!tCZ=5VJed+5z9t%Puc8niAD^Q?Z-8H(^Y*qus|SIFg~cMtp7ZK* zxgZ*+&_?aYk_$6s7r^aCTRv9Fpo+}N$Y7bHMo z{kEW^t4OK+cbwUMj-)p#a6^6wM$UgF1MI^Clan8T&Jouep{a5Mw6crNxU7Yjb&8tc zGsA0fJA8JwE2y3eg~SauIa`hwDg7_P-a4$RDB2gLM7q0??oD@>0+LeFU7J$6yGvRr zK?Mm3ML_9Im$ZO%cX!{p&->1K_uX^u_xQ(ee_PgC%r(cHV~+6);mGsXnppCJz~Tt` z!+X+`IJ^;EI2UkoP-hMUKCLjK)3K1~O!2Y*=S&sO^&g2qBpJTgH}d_3qt%C_hxFB_ zW`)(P5NTy~rN-{ig^Y~sqt#Pf_p}Ajk<_ayh(*{#{k`UXe$yHa^0LaO1`e*>+x#V04dV5#tEXAR#*EJct9{4e<_6w?5!ScS z(dd0BSE|k31ReWzYFEfJ>XETLQ7y}`*85(bca5N$m;ew|PCC0_aRf`U-`|9`1T|2g}sBr6J#I|ovMv#n-yJN+7b63 z3LR?SW4=^94U`Pzo`^C1Q2+#E5YAE`)9@O#U3XK8U7AVSRJh^f3@WthI^vDu;x`E> zXL9lkscRIaow8E(*hdfLG-4C+VJ-PI6%}87qX?Fn$4l`(viyr7_@6@q=&wYCY&@f@ zrAEfuUhPSumv}~XzAG5=C4;Hbv>8c1YpkjEPs_c(*2fV3qEDZWu21cNsAC)D!NGiE z^ka)$BnDe*R|JaQ-x8O+-%U^3wOn~b#KekJ*2|iRaGgYqzbm|eAkvA5WFN|*;o=fv zA_J%RRi>yp$KS`tdu)MqMuj#5dQIt?e&VPKUt-57vb5OfnT_}6>y_`;q&b+zkw1n8TfKToCPSKEN$pv;^5#sx=PIzGDsi7A~Df$f_i#> zpmrxx3N8ntXG4y_#>h?Z+4Hk7H-kmU%<;uVcQWmw))y6BiGV8vb#?U>Q;drA6je6T zbXLREONengva^XYa3FC|T?HFk+jOtNoVU!F zms|i6Pfq&Z@iXuq^@>?Pg$v3iX~aa=)YPb@zw6%dECIhM^)*nSH z1W(V&MyL<8K1YP0Au?lRQ&7Gg)m#XV0Gi~V+`|;XN*VU@+iPS%IwlTkS66Q$fI3c6 zkR7XhJHqsOvyx%1qZ*2i08VWvDGC^}>u6uK$?*1x%*EAL2n`936c$oI`81;>kC_o= zA_-v}VcI*auqAYEJzP7$Tl3W7=Vm(92n2r0ut3L;5%1&(Wz_C~(V05@w;I`-XuK2| zP&X(-rl%7}+QCER<7NT~1A#Cwm(dXa@ybxq!BwO%^@}3@i-p|u4CjBRCj*C>U+_xY zuV3`T0&q^6fUqzS#*jgKo(wV$_)zVjfs}RfokF>Y+Db+o;?%osAV`vGPaOTCNt<^` zjF0+QMVa8Gg(DNZ5Nz|W*Fg~8UHCvKGY(iPA#(6j5IrOnpC0}k^fo$gEdftYojYO; z{aEGs%tWpMpz)_+()$ASD{Ub*l0tYHc7#vm_$v~4m{*~ELvWMjemLpchC%J(Ck{Nn zH0iH}S*&E}eSWc<%V_HG-#+$QP|L}rMTCBwI@F|db*bKn>ld-Kvce}MMCRb&P*79? ztbW>J+v5K0I4A}g;>CO4>kaDM)Ac{E(($!MW0GT+6BW+S&H>9BH!v{p*y+Llg7%i} zSh_%9GFri~;JwDg zqHJt1gYGF)AOc_R_0mJ2gzpUswYc9>XY4A3pI?6epQm-TObG!}TU9kgL8+TgA7@sr zT^1%&y!5FZY-Ar1;H?~l7;8BLcq|%RPo&#}aZE+GxRz}q(328mq5#D`@NE!~L&(sG zQ!;?_k?{yA}UT5M)8yPm)`0gz-E31M)J4p@Ilv4VWlSh^b8 z0Padg^+_q)C|;ES6Cvy*+=rJx~UsX>j;2GE7)-c zhXzw5jWX5ZkvQKFpw@Ccu5r=RDS*Ec&r*-ASPe{`DYbUx@Nrq712Xad$#?%N5r*r4 z0A&|eW_BP1VlM?}2e`-j#b``CeH?rkwUVi6bP}MIJW0VDd5JR3k{5WFc$Q{v-P?l2 z=bZvc5xujoMSzz`5z@*K>G7)s=+KcoLVcLpK0C@h@8rOK9)@5-XNnFfB}z4i&uK{M zXBmJ)c8CmR+@cpVrQKt3k{iSs)zIoKHFF{-TH^*W)EkOWUT5c+9y9oAp20!}XUQR^ z8h(rF)AGtKAj~FbI(~}nJ{jrjS#E`@45^L`>LaX z2nMSXB}>2a2f&ms{1hq&Uz6m9D*RTTnU<0U7ybcjlB4Y;CF!wB^A)D2*Gh&azp6Vr zB8aI7AbcoGiJziG7Na^MZyXl%9sVYTir)t?qogN=#D?D4M1tfA4L3O?GE#BpJ9Nbw zq(t;WLL|k-%qkjmFFzWhZQa1m2Yt=fYU{&QOIKpz5~40kf7ma4l^Ps;Ij%$QMFFta{Ui85ZNl04q7)q^;z$x6v7D#iG@y z!ZiKQR==Cb`jiLFo}p?1rL_krMU7MhIrmpZJxd`st=T>~(aA08GZZ0x>y00`Z$FkEj~jSFF&%J&F-gi>1!( z)9jUBcmPExA^R!%LVl4ZuM0`mQtlamyT`-({Fej2)7zR13E$23Y1yEEiJgd-u_dY8 zIj6e15k%oJYgPP$VYBY_WpN}}v-ypp$L?Oz$1K;8&nChE1C0IW$w{1Z&;wN%KnJeg z42c7j35lK_3G3!-3}ioVdGaX&wvC{NXJ|J!eyp#mLk6W1^8_$&Zf>&qt&nJQGQSN@ zXU!CNa26-hKFQgeskvOz0-8}cn@yLj`=$0zPD2N62oQZqD&Oa7TXf8f zKZpZ*R-I=brj0KSz*i?G1CHanns?I^z6HPw*g;(Er)y*!ko=<82L{2B%MTqa)78$x z{aNk+;`G>hyd@ee8oX0)HvEULvBL$AZ!!rTbMN_pp6%Yio+dMDZ$HN)=wCZ+I|6vR zW&2tUt5KOXv+dL8WW7WI6ygSea~ebvQmA8lBBJN3E_HO6E0_7`crU4)3aRdwENK!Ew} zqif*s%=E$G!dn#*9`;e*`*L0a)Ca}q7gJs59PQ5u2?=<8YRThBx#DU*Mak&vKb>-! zi@Nt?5pgvL1t#owI%LmpMddDt>`@fxTnPXL+Vx+g64N6}Cq8P?%Bw3SJuzOo#|IgH zMkG=CkMgj#*5j`3Zu%`%2oQJYYVw`V?)$3MjIrp@*%BhKKTWy2UoraIMkfgOR&KN* zP@|%@hUh^3##_TfIfywWkEhbeYcKRMlH-b)B#E2)pZOnww-#h&+ou(ypJgR|Xr*JT z7K4s<-`c6c{!&*SNqXW$o}E`)w{rp;;|#0YygN#or^!og_+|^HIV3N6U86*SVxim4 z-V-X3737}Dx;soh@z<_DJ(w1UhUE^Rv-|BD9o1>v<19Hv4y&j!adF)@L$mH1cT8K3 zPFCiNG-Uj5V%%!x4<|&S^Xo}~+lWOwK?=lvi1W$N(9t8ipd8TGc261PktKposH~WW zVWkW-tRIVzgoowfc*LB{p`)E4aV#KB%+R9|S=#5uUB~-wd1caw6$*_>?TWLU$8Z`n zwU7Vl6|YsKz$>-LLH^5$MhJ@+K~UR!m~YcY9kF{HF_#KYOyuoVe2 zbNY*8fu#P|6sgLE2JDhN7hvX&O)*s!?#s^%8jspdfu!~6<1$K-SWDg;5}bBMXjL_v zGii{)SqvyUFJmSi)n!XE@HdS*4$)WUY# zI~x2prCAozgMBdO4wP^ELQ0BJD<~KVlTlNn zGM2zyfhEq4{GE`=65`^m)zAQ(0E^KbZ2S4o?;zF#V6UluyC`cgoE#4q-H){QP3Xg!@4QRV$Sqf@`99tD0yVEz4c1Xv8L zfxS2dJ5!AnfKB;H{^W;^GN7J9IJp|J+WI;UN;|`A(rgQDfZ>sQYTO-R?+&THaI!pD z<%w+7@h)F0WjmnnOk$3I35FV+9U!gs|l?ZepNe&g2Ob|*Jm7EjSa3$hl zKTe>WR1o#MjQuXDVYTx`FkFE@^KCJ3rr&j&{tevaGvu<8oJZ?)`LXzTI~d2ca&ZZ{ zcItPc{t1>XrQCW+J?ie}eJm=95FKav@((>5SS`3Ls!mB^ewlE+@@au+mdc6lN&2AZ zyDqddwRVh*{atgWk#zqMEo#9VtBg&JCNGb?AWW$H@0==v20*clO1#W#VyWx*+e;Y^ zSoJ=miJen-D<;U^`>iammH@IU?H{Uh8FF5^V(YG|Y0KBcyoAf&y`BJ;8}Hj~j9ib! zKGNkUnC5jjIlLeJNd+p6C|QQhVEd1fVf6zfG;dX~b7lYzGd&aQb;KXCAPL_B9O!{V>j7x-2FZN)!-sfU*`{kL1mcRJSEuhRi z#ux)^gza7ghmtGdDuBP<-C1+;81-zOJPw3}#Zq=WVU*Ee=z2Q3y`~ns{Ox~Y0qRMV z3g6So(C(I>iJcKY&m?06^FvC`r)^1r z(GZvC!DqV*hF2|Gt+t+6`{T&Ma$A;6??Q3CJd63d+*`(y53dM^f}sB+oCdV5o%MLA6?zE&sMf2D7?`%uS~V|jKY z>vMF(DYFxxGOct60^!>V6PL)a-@m7KR+1cb+1vlUDTYnQFqbvJ53a_u zq3Fcl6hx8%nN7uOgCO_Tr(q2UeB_ZRq*Q zPoImGFK$}-CWq2`G@0i3xFeI=Ma18OHu>G3 z{x2NDBcI&^bB|j?MC13|E>mgY#%VuiGF3-w-2<_9rgjTl@`+n5F^yeJ7p8wMxwKb@t>ytvd8QVNd8jU2nRIu{B?j+t@A_t!Gw zD;DwJ%ZDhP=NzFBH{cy9`aH_zxf1i zeZKXOe9fJPvSW5x-)lOXbJe-X66&*+sBm82In;N6V1m4dn>fPbjo#g*!i3NReG# z|A16YuRGO47A(1G=8rZHEndZhNDzXGM*cU|w*vzpK6_g{^IKxOLUjt?3u%@Yp@QT@ zwf{9X@iV$%__sx#hMX6rZ@<;FFT8H}aeE&vAx|Sxg8jl5@uBM^U%hGc@DPrv8h6mh|y6 zG3s>DMTEmC?|^04QGQm{!qMu*B~Jk?V*7NYQul2Ft)!Zdi9nCcKSE?EH+Rm|ijx~e zDQ6fK?@#J0Nn&ZgU?~pQi9W{o!R35?Sn=7U!A|^9-^FcZY6cyJ+JqX#xCJMz5P77+ zJy5`L7IW$k&3fb2I5RO3P_Tt5jXsOi+SKqt7mA{;yoI=QnyclDFpv9ms?}bdoKyat z=2G9RQ9JUzSowKm{j_npVbQQD@DXvGIr*_9+ODgrLfaR=%#^&M2UAQHi{vH6LjKu^e0XB%P(Hc;$YtKT~k3E`+eD0;g~ z0u!4$kP36>o6%<;KNm@w_htjj7)r=Msqh_<(K<#5FG9FbKn-(`2 zQ7^U<+ME48_H3a~H%!D8keEll!CD((W7L!^5Bh0ctXL+YHp!mR^F!aY#%~nXGKkY?d zVG@Pp4TZIysN9N%20l1WdWIbR2vA}{MJb^({B+?o<1mQAX($qZ*)D}V7kq?9Us#Ct za6v6@e7X8ZQF?2q7>f2$4rMI^)ayT$MqCByl06sw5Si(?qX)NKqK@GkHs+&dF zOIui5%&|_5dABud`PU;I%z7RwfNSQK250gvv6kuK6FRD6(a`;zzeiHz+#8r1{-;em zN-uMxY~nXo{@h2SVcf+1p?=-rvd?@)GuN?e3xcTv2+zg)d1|kyV`BKf{E>_4FiX@N z&4pK8OzvZ{-7@BoT^2vs z+4zW1l{5;XN5gO2Ekd|Dy_}{f?)^Wby{NcTC7b@%f=WHge&eWd?@HV4#m9;AQ}i>32M+-#9xUW&h!ecq{$7|Ct1r=%~) zQrc!q!Bm3dtnPz0xtCtG*+7l!vJ1rUiBW-tAo8wfl8ATP%WQ^cYj&)t?=_+aD8$n_ zbm9u=EJ`r48|d&bQN~|zU_ll+b&61=hn~G=&)`S|rKyu~#IO|IJs`bF;Fdro^iH?6 zpEW(DEqPF>7`J1(UiE1ZALBPjo5HAL1_wx0DZOdi{*1oIL{=k$yys0WP_TbhLNffK zx@Xru3Kr64_Vj!!P7d{^)V|i7Bcqm zk`!8p2R*sYf>Z-j#OVgmSG?W`)1^-gvcVvZ#Ag1XD$US;J z;VpLU-)OA0S<0>4Fr?4<=yZXGk?kQ5X4b5{gAWl2gwzeP1{00MwG4(PVu-{u&>uwp|rM z%eT7(3mJ+}KcbCwQ3LzA4c&|h|wJT}%k%qfZIH; zLmhGQH6;m2)Xeyx@BAJb^7sa)(qupJ)i#2x1s3Mx3y+-lkfoMGJRz6aL?c9&h`#sI z!4LiN@w|1rd0tCVt+*I>=C?rKM%x?$pOpRN`h}~j)CZ%eJv>NbWUfmb`d12(M zFMYN$64bF`FpxQ=0<^W?lo|ZnBa+=^#@2}>Aeb-R-SZC43$HF(I)+URzdHc zoxx&hJ;xhTZ=Aa0`G@4vaCB^}_vo`0SeRzOp|RCQT;bMHdYVz*LWYj}n~4POxzprY zAfK5PW^+`eHs+HV8-?@l>M|e-YB{Ip=qPTYO=h=h33b_ZWv0~k#{$)RVXV z!*Vsk@IHB1((Tq2Q(Py@m=d7^AVDNyP*B60dsNUdOK55Kv($WifDJDPf7%O{Lb%1D zYO8eqgLiLo_Hb0~rj~uOs6<8c=VwqLuty?zE&5#hu-butVqyX^1GQ{%LprpQYVf-k z`&+4o9-32UJ%w5z^~5r1U9Q5&AvrY|mau_I$4ABpLM*(+dVq8;m^`iWO>_STa;agL z!7@ln?j2?LX0v>NoQg2cTh)&NeXTq}X%P5M)MWVPCupLDf1x|rVjO?BHGkilR|_32 zhrS;RICi>q!EHE{#0FOf}q+|I5XpawsQx}zdLe*PRG)zMvOy8j_td_MQE!MNrR zKB((nABco%b`$LXbeKtC;ii%HTrf++{c#H{0nu=?h8jFCr8c+s`H|)9P=F)DjYux7+t*5$aSd0bUT!F1@;LMhiw{a&lM7xsjsO1a+xIvef!`p ztkM`$pk?GxV0DedJZy?GY?7nZ>}XSs(nVOz6Vf^?MI$WYoU?bV zjL?Nd%|?Soxc1LJ63bSU$EEn)N6_)`%*@SZx^@2dktV+-U`W2>^GhjCb}Td)=FkTS zN#5&v8O#b$w;baW!QIG3Kb~_}GM`4SI9S)s?aRJ7VDUs}TLE zY<;xY1E4U=eMvb|>fK_ut^X->E@QYAEqHuU2&O zddeVnA)Kkk{sHG^#%Wo^ZG%(}Mxga6j9KXdA~X4h?V6l>K5=dJ`j`X1E8!KdMF{=Q zJ$gp^MQ7Xck3tb&L8Nj!66M0MCwRnZ3ESmJqlK~DQJ(y5+vUq59v7s3wPUMlhTD_H zbbfW*G3PFeM_Zm){lxm=lMzLb37(MpP7hExxE1?@9!d`6JGdH^?vaa zi$ulnz|`Rt?4o$G4on{Y4+0fEU17DNsACw&%gf6Wl`VAdcxFe3Nve{s@>hsvkYYO6 zDPL8-LKHWVT;BG?>X9(<0i@_FpEF9wehq@^mW3wYWZpEp;}qd&_i(95uT6|=a>vfV{|6oP|rZy0rQ7DZ2ZalU(F&xOlZN& zwXi6jl(@{sNB@LhUghrAJtPu-4@jWrW3iZ-EQ#Lq8Mwyg zzK3C87W^D+N57(q-8r{>>n)jQDXtRYoesALTo6h(8%h2k z{5ASohgnWvS-j)2uoi}(`l@Bnq8!qLaH>Q5h=5ZRJf&_dvAA;(d#_H}_JA>DScf4U z9C>;>v#1@N=kIo~gB=tcIrgR6JdT__ec+DF=RixZDIb)@wD{WFrK^3e*^Qh0;-yU* zm58%HU@1?jv-#$X1*t#xx0E^iy@XP1pM*H7DMwFVSY2yKzvt9EZwaWI`0%Ea=;D2x z9ppoe9Dc7V4B=L4w8crd)_IcPZ#)UQ#>mYTP0#lX4)=dOPb0A~=^;n_z=R-v%5~wR z(oaXS=~ih00YU9pM6l5bRhq zb-j|kJuBAP`RF$%(u&tVNM2G1cQ@Z&YE4g*F(_k^UL0S{i%*p5Je6$pS}!4Q34Toa zHtXFM07D_-h7M}Hu6*5yBae!sP$-9b_qrfo(w&upl`FnW(hsB`&JF{s(jH23{YdYHpch*ADU8Lg^D~SY*vX4-A!8zZ|H_ui^K77~I z*NGZ;?;w@APOR?lBJZwNNSardHzbD6xaGB5)Q zu*RHtTn->VblQtQFS053;e2q((>`HGQ-8W;@AOG;$Wb)!x5CbkyeQ65E>+81LyH$r z4O5N1A`CRAqb=&54@((yJmO16Oa+CTS&3`v&X{TNs(Rh43~ul@B{nB_u`r$}inwFm zT3&H*Vmsoxe~C6B{o% zP=}G|^HYlK%GKA`SIy`YDhbrS-@{L-HFKXWD|Nr!sD;SpazSHS?Ck#90-Yt?_bdnZ zqSUmLkK&=ZSH!pe-B82okJeIzHnuEv7VcJ&VKGIJ>WIt zaO8aXs{2Wd#E=_7Tnl2p1)2D2ip`ZH9Gz7!jD?L|<9x~-#IxJzQJQK$S54p4lw72D z?%3oS3IXCf+_r!6dRqCRi%qeZB*lb7`1r)JEzSO`CzItqXIH#RSk!UkI$R@P6;%)9 z?)@*7elWk(Z1(d6z9tv|`!Aaoh3($i6CF>ut5?|xVDj4g-N{LDN;!Y>maDzE;z+m$ ztB85@up}G3djNyyXyu$ESHcTRNh!+Uuo^!<8pmR8YZUF~j=bdVUaQz++XEKTAcSX^ zz@(bqHt2hL#0E(jKK%F1=<13M&xKpu9BQ5Ja^O5$*LTQM!kJhQ5z4ttu#gLy=qyhR zN=;?Md6<8sUaZOJsbf_~o`t?$C^RL0X^=y@D*kwxht>7(eV5j+3e?5sMehyq>L&;C zPW{IwH>9r0=JN}OTT_*E-4}wLbLR!eEAmu-hq;sDz6c)O+aalC1<92@E1Uif2~0u^ zg;Y;fVx4)sy1J57kFxCReD>8y5%b=*RepWU(LlVBv0(Aw6a5hmT6l(oRyt={+zYP) z$nO$FR1dy3>qZTI4?oANQO& z^P7@nhwGly_?(hTJtfW2h6rhP#b4HBH`1eh+i|cu$bL3Mf?A;#|M7*ha}b5aw^?C< zvdY*l+pd)KtDIpSx_q>VP?sT3UWb?(%_UYt17dZ(lXoTb{#79fPC$L&#fOPZIl|sP zQhi^fo`?uw1a8@$nt``hOgfl+Pv7Kw%bnjEkSKg8b)rbBr$WSmgn627()CK4kgoMv zatbQq35SE`7oonY-lv~sL+(^4UX{LlMn{h1`+}_D&Au3zQydcHDWh1Iz6U)ugh59h z^Buz9B?2#~KJ_H`95X1pt^R#kBaa?i_wCcSa4t$}&F0s-5d4+-TW?m~GNMTtD6) z(syg*C)~TZeAO(Jn6`a?VbWMkfU2gH&^FPRc9k-HXF#irySK@L59m^%TE)d~-tM7g zWjoT5q1fg6pFmAB05Pa-q;R@6NOEWLTX^Qac$?!xz}fzM{N}=YzCf{-z{h-bGQ26& zl>}aPb_}bb!KLk;xHw`C;0=i?d2lu$Fm z>VZv`xy-E47MC5oZK#^xYxZfIoK%1H+G?kN6zpy$`EL@NUC#>6Nfa?kVZQFAP)y`7 z>n_8%6yD0?P4*hW&=I1E6-#2AX z3;~Ywx|U-|1r=p0-U;KZ2S`wj*UgiSl!%LYYgXh@j=72d4|D5;;{@?piZ}Wilf}}0 z<0Tp28%8sfs@FeNqDD3hxfR;JsBTy8&;2H@BCmq}Cl=sPx{1_?tlF#&>m{Y2oPsr@ z@x@+y&1w(6+YV7}ZEf|`I3bIAUiYlGYvjH0$z@Mm2FLZvqe|oY_Kh7#XSoCP41!SF zCBq=k>nn}%^M6xI1|jWCmNH22nmaqhno9Z~{jSLC{LDDbW7bXkV|*~t=x11B2635Q z>4}Dg4Bl)3I@QbB+V-;bf$P}tb_Qjb)uqd;O5@o20T_!7k;-!_${2AaFTSwI5Q4nh z+$WhMlYhHYyW$%lbYhoHx9so!^nxxOjlM%Pf#vZPkMwhNTF%!3lNr^)x}pJ?FWMq( z3PwO?Wt*geKE!~BiUJ;4uK6`0Q$y7i&mEqTyQ7wKa}Y`g1`PiK3t4%)2Vh8@M>akLzehYHGM!qM29bH?Ocr zA8&{5TnnZ517-vn?vbWz)><`li{#|IwCkmG&ispJc(L@-G;V+(m_15rHTAeYe(;qI#nV6XlCCn|L@FKH#(?iAzOA`qGB=34woE5*H!T4r#rs@mIG^^378 zvbfh_ZMA(s9c!)Adq>!Lj7->dKCEldP-K0zrY_#_t5{H4sqNw1C9?-IZ-MA=v%jKknz@$}+ID_L>d>rLr+OJxs z;Vc-o@z+ilD63t!A_@vDg}Q;%23Ys5Qem+*)Hkxy1U|j=*n&3sq)YAbWI@t7$e1tI zetqX0b~;-3M;gowUJ)gPmJq3WTgu=)^mbRU?&wbuL}?JL2|edv1PSC!7Cq4SUw`q9 z4T5;HQr6a;wKCCH^%+e+G>5rW+k92keP>NyJEFYpWttgV^|8Z_Z@!Ev0V)}1rhw0N zzpjJ?Zv3yu^IiQ4&*_-rM9O26v--oiuC?uPi$)(_3Smc-R-KXtgEp^@f<`>LItV22 z#CqbJ&QobQxuw88vPwXceuaB#`zt=$477+>KUFX|nPb(lB3o=(i+*X6N0(zS16p}v<^;B6_yPcAHxD*eNPLqlRbdP(xOR%}@ z_fv>a;6(wCLW`tO`4ai%1Jbw^rLwJm#-zeDipRJ71H4DV79Z_$!m2$VV1xuej+8jv z54W9`nRL0@?=;P>Vt1iCZfzWW~&lmFU01T8|| ziS4XnR&^-*oEYmVVUdT$78e7c-AeMzxifd;(Q1!(^&JAVrcu7J&fLOZ2>LG}gug`l zo?E4WiS%HsT%SE$z;Oh@>ZRJqR}18PWb>8`Vp3#-?deMDJ7grcnZ<%lV!ZtvrW+Fr zrvXA@%v9W2PSc35y{uTY{HT$Mi69fV1$1DX%7X)+>kTfkI@f6N%Y(w#8SLbst`f-S z-sx-Ce+OXK$xM2fz7NQHNwm_TUoI{J7NAr2e#*+#hgn@_m}cI$ zfJh}q9m{$%Pb(!|Z|?UVV|yDns^xqOFs7@NOz74t*Jjl+&^3r&H?(F!H?TN9oH@9D zLKzN10mF#Ot}o=N2W!k|Gd4bDLBjfM`0K5v}UcK}&myF&_KhMH_vh+b*>msuy|>P|5D1nN+_v zxs8*eJgTj|$mB>L3ju{xvI1=Pu|XX!^I6 z@?bXK6NV_U4kJ103lCk++c=j%*a$Htu3>V7QyaP0re+N0k| zSD9nCYBHg_SB{{olj&3kDU~xewiTb`eP;*F7cMo4EAsr_Dz?Y(L{TGB^F37++>jc>WkFGTpRo5}?E-pak zzeX1+70$7=7SZNVpez3mF30LC1SXjmv5!3KEDsVS+nPrKdOb3igdlN#M6dRK;(VU2 zFlET4vb?O-`s4MBf0s|^blW!%RmjG8QTtU?MkXiUd1XyV;p4$adkt%hP9}&6yKI8_ zn)o_I04>GrML7G<7eR_rGAJk9;LV&=I@?>Hyp-Xzpfin>2P4oD7;3AG@^1k&GxltU(^4; zzqc1U@5I6I_U65Ckh_iu5rKseq~qm%9Q=c&$yyj-sZYU--}@3tRFtc&`vpwK<#qf` zKPmiJ(gM+Gp=7+)ZQ(a;A%lQ_|J!FmY;9R|z_R zHDiyUKsO9GUyX9)n;zaH0lSrI(oP>2e0tOuXKZ)&R$0fHxrnp0rW%d+dswdN^L6pm z=YiS%&B4L)4V(-t3VHUD-i!cGA2@d-+-9XzM08r)98K*NFm{H;>YOYGY$FNSKTEMe zQbRW93D#ZTi^e6`PX`5&oDlY2arli6Niv7-z>PXg7W|o7Q@t?lr_Ri#s*Ca#)BA-O^ii7OXWp0s*gQGQi!KZV~9Ms4DqbM^s#CwJL<5 z0Rv7Mlo$kjI;8*naKaT@3u`-+);KD7*7~Do&+Me2pfxQ`hvxCxut@>k-pO$-Ti!ST z2;fG+Tb`GSk!WkgNbvbKHlaX|Ecvy(blt}Q#3UKLAh@&)4*HtE1zq%M$&LaYHR8Wf zC3Sjiu+WZuRB=uj+&ArYYgJ7@yXXLQQ&Wro3O3{?9H)i4bvErhobi zqP4V-|v=Y%V36bk_tK6nOAHNphKewVBqo6;6wHX zD+WEsg#k%H#u4SD8A2z>Hv#$I;^F@d4p9~v7Sy%5HUY^}IMbNjpi~P4&l`Bm{ld!q z4X*It<0(ZSZOzVNX(&gS)vQt?Jw1c3>l&!E7z6nktDd9`G$5l4dheY@Ztq|O4#^aK z!SL4>Ec6K z91zreFaKZEy=7RH-x4=WcXvn#f{3JaZ$Ut5q@^~}-AJ=(6$yiuknU~-HXxvMcdB$s zO22FW>zudn4hpT=7JPjMKG8N~he(Ug+}J7QX8(u*?Qz~QQO zewzfKojI1VF@sV94>D-6g>^}d6D*A(ytRzpNbaF)(TE4i^2p42ACZl|C$j~96kA-A zb@~izRCZZ1FN&MD9l~OPegN zzqcF|8eE+K{T_I%7NKrylgI}v{jx*PJ9uozIs7@rIc_N@3%0(`9dJ5Pd7Zbnv24r5 zROYe>N9MxgsH#8-C3)IAK>As`?dZtvKdIUnF2t53_IqJ3(pn z-H#cd&rN>}kG_PVAhbZ>8)Xfa|Fy#y6~H0zYj9+wW4ySZ%}k9g))kbKq1v5qVljak zJy=JWcPbBo3KvIgTKb~LuKzmg{!LzE@WGVcbS<_9^O)_a;ZX@Qf;Ow)pAU^-fc!Gr zC{{}?Ko4K=u-i*m5W+lsh_5=r`oHLbw81@p|Ni~_XhUmHYzea|$XncZP!1EbH(82- z@cN`hNfqx73u|k7jAS!dnM2E}wKYaL*UQ~p}!eY)=o(7GMJw3R0 zO{F=sFeP)9RaPdd`3JpvEWpauel>LYKY9N%1maJLf%YWO2gvMLp?0QCwT*O-S)3{S z+c#_*8yoR1r29SqH)ZWo=HY+vXm6sltX%K4|K+)PLfRsjz4&R_a$D%<9THpHx?T5G zcO@mIpI`W_XcCD5jWJY|@fE*Ii_pwjmaox}xyZ6!qFrO7-D^1jS;>rsuv>9hM1gjI z&y2K#c{u+l(HN1yvOTN|oajfs(m|tY`4nn_B~b);_&5s1gf^AWp) z`-hZ=_=lCVZl0dPAZ@B{5+Zwr*ss@uIn*S`vWT;iNjGuj@n4&OkrF!uG}8pFPpK%_ zvGCp9^N(&Zq`}fmOg>*`bjm&545#^fq5ili5o5VIJe!56>uUWr+XJBil@aQY)qW%5 zZ&E&zf=ZBIa!Xs;^ecp;W0Po?HPm=;);AyOEAk07WJ>-mH~)Avi3Y#{fN%xoIDr3( zVF$`E>vcTM-M{1`T^9{p(jz9N3}=!Hs~7w=ScY|ng{3u5Z9MvNb(%4s`EPCM^#Q0< zuTdWUB5`FP)#CQ_G`9d3pCbfLNzIM+AC3a=6;$7R8Lb#n{a8qVogI@CfDL0 z$`H!=fe8*lnULfc-b@(R5|>=591hK@C!3Lqzy@9#IVLm zkr>KgnZN;q`j51NF63XIzcr%pQ;1-wR{VPrYySuZ^qs4+88_Sk=cEfQ>XAI!7gmJH zH}8-4D6}H`OUe78NOj)w$8REn-@PL_@iGVd1T+(5I9Qzu*vkDXH6QnMW8yKmUr9r$ z1(qD*j5YWQxuaa5@5A2x#fJof%p)`m^!Bf64BpeCZZ3?aqKQFK5h-L?(XYQm#~8Eeea0Fc8+CaU6cTuA zDYF~!>oE-0hKtHOR6aO3`q&3Y@ueUrS^Dc2_TcF7@B2Fe)whwwmK8`DBr(2UwaZ%# zRq=v~6t3B-8zFyA_h$r*gJQiBw30Ml^1RrhJ_IEyE9I&=Xm3AwfHOTk9dLOOvy71s z)axH|8hDFDc$)!fLBsNaeYVa-|Jrc5VSx{@GT|7VUjoxUExn9-_0XlEb(x4n>n@52 zV|q~*8mF={*@MBJayEDv;19u@hgx7i#b61}{#F60uiFJn0U{a8FezJ*GcxMwgef!Vth0YX{B725Q$!#)rhW|41RVzsFWz*rh zbm;6QvdA4kSB#U1yykR(?HG#UBwLEL=Je|)6o?%Q`2;s{2JD>nOib3yLUr$-@e1*!DcAU1-?Q@w=$%_D&OUXN!sx-}fa4<$H()Dz|kzi+$&hN%niiN8b>R;1^>l8d}6r z^2D^F-|OVs`o+`2iTtztXZgag z5_{$QF*S@E?164R-Zci9pqd#>5oFp-Ecoi@zd-*bG0v9F;|3#S!=Z zMZ-xm-bcJp#4#Ljx=-#(soOSfbNdY*{!sP{M?{+Ni|cvR@V)ySAGueOqizw%$jInU zbI60TO;Y%ipy}0{TMr%!ug1ivag-ZJE=O>HTK4g;JKDQcPZvg}H17WDL+2Q6-3nD4 z%$CtV+!$w(pVeJnue4})+e$DX#-ypXdNrd{3h(pdW~lv^_ZC#+N4W3^bYLC(>r*Od z2BcPnuB_Eszaa1}48$#eo?V>BlJ);R8kfh#jtFd$vy7 z0-+OW5i^qXjsc@FfrAs=SdPY0T&$Da<=^jOeX*7qEq_3Q@zGH^xfPHQq0Qii2I!Gan3DK|$!&E;u7-I0Q{P_0%lUMefmY zTr`QEl$Q1N6;CrhVvptZYSS(IQMlF4NQ(FF-TP0O#eJ&xuqfofNiL(KL(3rPx3XQS zCauM;(^eEZ{#Zrf`}g+TfwWWihXJoIGCtJ<9}I$)^#sN_7=VYfl7U2urF&27a~^-= zPkZC01ElH#&E9gPx8x=ex2IAv{tB8@FJHb4S$--8T3L|cZ;Z80!4v@~0*hQ0|0w>0 zu%&WUEz`!F-*y-a^!*|u2z|AFpHA?T@qoic74(zz8P#CpU4>WR4zI$|4rErW*`@#n+KEzTX9!bVrraM3L`@nK%LAvlHg59j z2@QO2Iq<6$TZI(ZzVrWMm7KPIKl#|?gf06fa;U@|7ep}VYj-3T{mc6MF*Y_fd@0lC zHt@k6!}vj|oMcr<_Uq+SQ|D5y|Am)2Bwo<_uYq5o|zh~XQnmwjlyp^Lw6<%Sg+ne%tEmWZpl6L*WV&rnW+>DHNJEX z9?0AUl?b4~p{4zCRy?yO>>1*S!!tOsdOPp|4$C397%D8f`!j$qg8Y7vd~}+$o-F!( z`y!{EHghhvvX-78BG}fhPvW}{FE;5XWE9`K%unc>q1@X{-p?3?RPR6bF#>QaLa)W4 zP3CY6we91Ug}^yVTC9j8e{tvkdL2gcJmQ+XC;o?WW%Hv0LSWP0`#wrQ{FNH)BA3o+ z8-&yEih^?w?@LEVyUC`YFAm;!v?JV&Un3|q8ymW|mhEZ!70(5X>nzK|ajB^m0lm;h zLQ6d*>BM1{+bXmfE5zV^-;}6?3nZZb3Vw7D=K~gx7$3&^np}U z*OgqQQ!sLT$zs_6wvqr}$Hbzeu-ho*u_A@Ej!wMTl#-(DXt5S*W;o&7mm?tgiTKSZ z)*pPgK>MPM#1Z)s)!G#g>kG2Sa|r(l!Vq>P+(^L60ya952*QG`U`>x{LkjLE;qbfu zMF+}xT|`Lg-`SmQ#*hBQjm6B^fST5EV%+!*TbXu@vXiO5D6%Sy9G~S5mLvT8acPC# z7fSlcS1{&ge>RN*G(24DoPzl#S9wo5iLlkud1%VqQ;?{g-N2P+D>;rPV5_NE{ngRt z0gAV%r~%d5Oy+&jD`Je2`Oo+RGV;&|ZbURfMQH^DV!Ud_3M?0RmmQRk9A@jgRK?03 z1cadz=0ZaMG)1yxAp9+`J1_RHZL8jOo5$#c1iDgkwVwZeQe;qpCE76EX7KPJM|J5g z)|JO|nDg1KLvog@5J&I5HC~SfZ>NXIErG?22B#&eHRtdA!l2u3yQ9c+jcyl|&&x|z zwb^c~BL}5WSgDoLFH;lsNV}0D7|LjiW=5{SR;dnp<_ORZ&pm=XL*T3wdN%QZC}(W8 zA|6I0G75SE+Vg7hxaPU_pp?Tp_AH-Z$|}m)X9+;2 zZ-Lt`shs_|ZB(GV;zw@5D#sC$OP`~~F+HQetgHnd9yY9p8P97>%N4R;8%)-DYzoqh z7Y2hA=I5Zy_jI+xE954PjUBhS2+)HR?lR8b?DSTf3Y2*uui2Uml{?zRc_DK4Q8<(j znKJZScyNo~YQ$Xy1sG$MbfY#WPr9nA^JN6E*}zGR@KuS((e6}3uS-o{t_c2~Xi793 zxDQ}q?$$E>RrtZrDyv~C%+Jx^K{1)4@@l!~Plt^|1A$%Nb_t^lBUtMpW%8jrS{Cuu zjk*m?;naZe<-0VawL)BmjZxsTZ=3hL9U0e0muc?1EVUGCiEL0C$yaw7ELx;I_oPVB zU7iaU{New64MBKF^njuZM1jGdwBYG$5=tQi&qPuz$ zgo3w%va>5(6-y?Ox@@=UIPE{;*L`KEBt`Y+Xx;ag*DTgV2Fd{B-elVf4d(jjxY?wU zM7{jW^#`>|_46!uJL>iB3|VT22EyS3kCl`jt(6)l2%F=KPtRm3tq%{5j|YMJvbrPJ z`XG75y@*&#ODiFoZ|S?Yfx#^c{VC{|#Vf1vI`slcz+|21OL5<{bb2vEol+IftKWZF z@7GNh=FqfMtC@mO-5(bd%64y?J&Hg0yA*!S7?@3>J(58fF<)`f%DEW#7Pln z4X(=?-2cLeLM$tmCxw?;Ae29-Z8 z!q-n=EX)?kRatK}7&+Ae^tlQuur7;(E-XwOy-KInhnk@w$Q^FlN$w>8PhgyQs}T+; z$hw_g22z4kiO9+EYZ_BIhjG!6oi{B`B;$h9VG77rHrWgIt&*9cp`kLWs+8RUXgEXu zOw1X-g{M>$opEO7h-oM=Q2j3PC?$0RKsWJ+8XBlHG#lUfpPYcXL4ZeuLi)9UhY?#7 z;2|VGas>Z$(ILE8W#~R}$*e*+q$s-iy3MzYTKq79r+YPBy!Z$i;P)of8^KsvcNrB; z7B9~U>wJ&c&ra4+?dj}aC9R%DP}aGg(0hAq68M2Mc>81;M6jR&p$IutZ6g2F&M#ro zq%j>#O&n*MR?H(mfg6lap97@O=V+uDSK0|qj70YVw12RYh1`8Fum}gW(ZH~Lck$r| zZXJ5DTG8x`cSE4_| zXMPnP5f{R<=z4(`H#PHP>lbO81}3$HeDfo4?)M`?NqqjA$$yQHL<}mn|A90;k^37J zW8_9~kWz72e4jQDF)n3u57F|AgoJdc z#{B*p0p5p?G=)J^{SSq( z)Vaoe-=wXO;5Ap~a6%c7#Zeh^K(Lu*TCpUP9a7gHb`dp=!d zTa-%7hU^)?W72}bt4>9<3T1%&*=1(F{&T+qnT9<38(s23h&V#B_NBoBdzIhmV{Re- z`kJR~YKq!NLc)1@RzxXDk`A02!c~rGPTgFMFHDmoa0@hx-hl3B-(N-(PFLByI;~uR z4_Wi6q#Vg74rha2$%g(mi$4=9^V=@#e71r!-;;tM$E$twp2f*uq-;i?g$cYo_s~z| zIG^n|gIqZr0WASEgNBfC&Lq>hjj;ewR)lCM#~gPy;5XL8hYzV{TclR{Q#%d_m68PU zZMBOaGlIolexxJV;E3tEYAO-l^7{}$q13xJUeA{#VEcM4Z_RC>+?ImR;`_?>%-Uo# z-Sg+qosQ1%57(zqBRDv{8WSVWUDb%r2xxi}tF1?HD7lR~S4$u69qohIjEcYOU7FHc zq+o|i(g^0=jir9a!$@8<%7)l~2#wcq=TE`QPZ-bE`@^FHp#TJ+ib(M2CPe!J!e{|^ zGZjmX)<&BpDEgD5W#;F7)fYzG3E4ICUVaHd<9D2h;&y7>okFM3{(9|;RK;ICSY%E5 zNKS5FO*&Kl4N({g3I2&jf!RHN`;jnQOrz9$&)b(WyUJYpXqLW9=tC{VHeLwZFKu&| zRkYRPQaVp9Fwi8?7`qT>($!=Ko!s%cT?igD?- zt12%eqPqstq|}S7hAtK*`Q^}W!yg4Y_?>0Ao*(Zy&2awG16AXlvql;J;SshL_7BrLXFnk_9fzb8Ia;&p=6$f)} zhgJ!yA7dQOh>1bjiw%%ADFJ09l;EGTV=BGAy2Qkz;YHEt?d9n-BQu8X4prk49<{$- z3<*35ykrC2pu*Z;rZyJnWfdVDR^E-j8twieB!?a`72@o51@a}6FMR!z!I zPW_>jQ;R>}Xs8Yir9^4(9t>z`YJSMYyS=fFilSlc`^2;x$HX93 zeuRXKMg&Q3MjPgP5Sx-*_`7cMtReg9$OBDX-MqRm-XjlHhY%zbEJhft7K;eaQ&Dx8 zK$SGlhG*}va=>P~NN@lBPaTVRlgiP7u8|y2TcdAd=6WIg_qnJh1)lK5rMq>@{q3ad z31hKAqh|Ya55v)u2lx#;qH}IP@XsZn*U+4=*%S*Aq;=wVv%(+fJnrf66@DZO`*S9axIb6Ptq!6dRojef5`>># zH;-PHd+BG;bUwN#&QZ1F*hxnOK`>_T0df#B_oiCX4_*{4Yz&-zT(@}^%0l~Oj|RWV zzHIyR=Q{?Cvja1wO$FMV&o+KuUv!mRUms>YIsWLrIbK*-_jr4{TEn~*A}t+swR^}n zS}9N1#IsE8b1AgoU;38t&G_W`?!@V8ivBw4am8AHcF0G^?c}sXWmr6iVZrWd-$;$U z{@C^OrrTzpkS%;nXG-zhXv!G*D$pYu*;Uj0-Y40B%i`oP{E=drFe|u#&dg?N!o>&4 z3#&K_zrE&XRaWZOO?{H676;}BK2B$EsFN;w`LZkV#Vr`s)l12(MvIpH?R~5c{b)qZ zoQkUxq3Ppn_plHW0cQUOUh-kC`&*xeUAt8%8s-GGf{{`4)8S#eQ)QZtu_-?`sz1Nz zNWn<8w=$n?zrxzJFMY#36ByQMEZFGOKi>qjfSEO4njfy#!wTX#07?bQU+#daA zV%2qJTIfQ*+9rF|*!xK!GIG-K@eDf$dllhT^!At{<;NGP{gMa0!+tm)doB|$(Ub{f`nb2-tP(@fncY6rW88iTc~iOQng!MKvY*>$ z(YdNRl@{T#%&EVIx@tK1m=~ugjmo6>2rutST_yO5E!=W#PRhNfVO-X8l8^{$<=u(> z(DffL9W+=zrINXHioYipg=+788a`_GRe5&Ylx_M}?UbGfI|ql_BeO5Jf32FWvfUTc$EOt( z&e}X_$}3A(YaAISqn&YT+3)QQ{4h!e>P~OZe6(4ZL8I;5P@A^jNO+f2kg#Tjj)AUy zK5qbn7-CKZWXr2dqjKP3(Eel8M5Dkoy`+9NNZztR{`kQf(Tz*GDSWb!}s z+P{6k1po~t&Z{LryYpZWLEvMEzju&#qW{p9|N4MM02&R@2JHQez#Lb@k&v+J48YT} zAq4#&>ZN@6} ztg|UDo0Nvs-`b2c$kxB+diGgq=q*cH=|b6)8IL>DX+kewX*UXTlHa;zu;aUW*&TO% z-qsSE9Ivw@9xfxgG-)(l=3MEKn_Z|MAC)bosxY4&TR3r#ga45{{k%3Y@zSwnqer$) z$40eijl2$6(CGo~V!hm;3l#S)C$l+JpEWux4DqTTd4ecLcL4WgQ=VwtoKapBn2~!G z!S<|qkIs6%&ipWEFh-mtTbksihTnCI@!@EuDH#b(5ut@|2D;Q`j+}G3_wOq)MMt;Y z;OP7x>fyHVSihdR&s(dG0X!N~*T=bS(lW8JDfR=6R~z?73+3a7ZQ0qchn@`FW9HMK zrcMO9@Trp92Z`$;Ugo3zs>EkC&m&nS#k>8F+f`fEFR9bME-aO;CY7GdI#)j97gNHe z)9Shc4pIPxjB)o!9m|e_8?@2HM69buw;bPcwwqb+!Wrw zw$n9dZC;*kZS<`|t`yO=Fl3#t2@CGm!qpB_O0{^+Djl*NG?Few(lXK?Qr~_Gmy1;U z(dk?RE5JbQ5C6Twd3j>#|2#P8SLUv^on3Hnoa4@~wnE4I?k^g48aLyH6_U$Z^>Px4 zdAu)3MNdOa$4Yl)yL$#kLhk0WOGwDPXYfnsr{bYpkUYc?O9s1p-&vMNt)AGD5eAvV zA;KFi=FVnD=+l4SMKwTTk46M`m6EfK1B|ooMN1Va>(^L+AJK3hsn(gw_SP_H%$~@%fCaU- z2<(@p<6}2Y@n^L)8%f50(Ooci0zIT49YeV{%O&dobNMoI>KbjEf1jqsw}560-vwnpRsc z9eDSnKG{rV=vBv)JV3XftC9JUmXI+MW>DHbQziNbadD*vnU==hGMT&0%Haa`&o@P{ z8yWaFM?}0WzRNtTunWbp+YkEv2{B`j*RbFI(9_S*6B0$VY zmG_E%g6ZbEw<6Yk!mH9EApdmXdSKq^cb`z+C9%C?{LlIfRmW=UIq6d`bPtO_y@BiQ z9)dV^wdcL)^Z#^8og$a#2rgmu`Q&3VG25leJA+VOtc_HZ@ouYEZ zt6O;&1!$=C^lJ6!bBFkXnbIh5-(NN#MCC;Y3mmK+O%J(T28hE*epuE({8L3uf@|(h7q`Bjnh)%W*C)@0Y5$=|WC`MVs!a$i)_G6Rn^_ zO%Ikxw9dS*v0_|lh2xLtTL%eqF_T_jgdDQUGk3~bVTpcD$}NiKLCBR;WgZ%S;A@;*V;9@f{)tQe#h|;6p+mg%vpTC+ zMt74!5A?Q z;Uy{xid|l-Iv+Thl1`lkfH)bzs8I!kve0ho7V)Rxs9s{RWF zhJJ1}=km0$6Vppk46d8BRNsT}s3j+T2!)IRatjBeAQxDnVqbFREMv0YJp*V5W`&T)ymM;VA@QYU!7O)jG)UZOvje?3~&@R z#c7b-q*jt^5f9}f-f|E!$ggIh4m{XpC5n0dIzrRn(2<9ToK%@-@rUWF6&+QeTD^@v zMk1k9b1(9?!u5^G*jv(%k=cmc?duPLkRt?l9XrXvv>OrAPO#9bI^BD7ir&r5HXNgvz@^q`sA_##%JJROagvM{6F{JAFAWGRo94J zJmL)hjGKpqBFPQjejtN{^fyoc5;HXsgt^?M{w|dpOwh%lR%%RRQAR}}E>P;s7&I9v| z_7Ly$s0R-{jW8U>#RKqmNhvg>8|>fH0(PnKw%7Ew4S3KwK{}B~0uP-xlqQ(x|EuhT z^DqVdoeS`P#aeb;jMou&0s_K4EX~+j($zqh-Tj02-%U-;uin+!>R6K|ed(BPxyzdS z!JmR*B4*&2CM(C1jhlPHoBz%0r%*N6Z@l27s9*`bsqWtHnjh>;9GXiep9-!A+Q{fB zGA=HB(J?Tz&nIYFA=TgNZY(hp@-C2)y(s@I^3=Od>Cp7DyvNjfQ?Ie`)gL?U%|qZJ zC@cY6OBW5bQ|G>$UR0w11F*RhllnG4sEtWhUTzXnUVzyO(aIJkys1dINx_RN2(m@! znZb+UpT9ZGOA=sX$EBS*Ix+$o<~3B5C3boROB9HC|33HY*FE-yG-!Ia=Es*eWC8X9 z8vs!{0mC!{#Cdl2ZquTHKUKn?YM_a$f$f7T7Ri3oL{y^%(pUZIF*TN^ae4+cJ+DqJ z5c%Q0>sAUvyZh;uK;T{I4;~zAdW|C_myjaqhWE4B2wu=Ub5b>1jY5u&`mOQBOkXHA zhQW-`EFH2c#bo_`*+^4GL59*TV5=y-OuI?IVmA1_(R4X~&o(+c4#qo=U2W1J^ z_Lnd*+&iqfY?4t>c*^<9hTAs|+xB4uG!k-o8@@N=};dsL5A6(`b7YCkY_3EBY=y>X+!|B{S?V#Duu)z@6~N#Dub z#hkkF8!xya4Tp&s=s40IH@Kf3jUT z1>inOO5-8|`Dz^txt!*Ujr*Kuo7^mS?&K|)$LBl$kUP7K4z2k-6Naw^piuv-WgWkh z%M%*^9!{KStdnMfTv-QZI6bPv2)QO2aw!Qk8o6{sg(moh#6jk;>U?;34l<(!ocGNx zc>EpgTtuXJZN4?w3d<{c7T7Qwe0u*W4aXdhJA7*I2?L$^Eo zY({zHhO~S)KNs-dYaEHKx-TnVW3M%)D7;GqbTt8TBmgA-Q%3d#5KHm>J5BzH*Q(7? zlEB%o)wHqIHe7*?d7r~8%n|kw9M zZEbyaII+-RJ;_6h_eIbyZxe%XJiby&J+n@Dd1YneT185Rv@?2wIya?&0YE*q3-0m# z5}O>CO=hohS`Jj!Ina!039D+a&^}w=yG@E^H(g_BO`W)mq|a~f0*666rjH&Fz9w|L zwa^rCWz;-;Ri~euxlwBByQPxoQ&A-*q0vV|6JK-DC3RKN3MaO=IYGWUQ`WCywvJa> z8(NNu6>?P6v{TYtZ{`a{m-W~JxbLXLbl>grQ=ZKKWCnsa?Bq^eP`KtK-kuu^b!eDF|+aLhP@a~VLZ|DqftKXT}CwxWXCDr$q*Dp?P3wOt|58)lDx0` zimv8nJ8yY;y83^TnQu*Hg6=5saik2Cg)MQ#WecQuqi$7nzt8ZKYuKH2UPowPw8Oete8FWeT71NjSc# zV4RQ;%m2{_&sTVpS>o5v_h)-^FUA_&?@OGtMVy@_J05oSaL3y!n>`9K^4a9{J6S*n zSgrnX@el&y2B4`R6;BWPob$=tncIqzSTfuzBrJ@bpZ`&^kfVAU&@;sJCPJdA{LUE{ zp1(c>@VRp=a`Iusl|0jT$bq<-g~Z+$^MU)0uYdKxBok1axWl?T{7RxRPRw#>nB0Qp z_USj(DG?DtM!SiO(C^Ppx4i1TPM_6y7rVH)m|qRa$;##ZShC-4Stu&9JBLq-KbkM+ z)AJ_?Z}1S7ZX9_~<^4mddw@FzxIZDCk)suQ(xLA9O-l^fTPp9p)aXI0@nidEQ$7i% z>l^OJwocG=fN#4$DvYxsBF*p9e_^%RpK_c8gTaOePMQL}4*YzcRy=2FkNucr5iom) zOB)1TD+9Q>;>2-lDkzS_4-v*nLBS+Sf76EySN%m$x#H5&((LtrgyC1a%V*Fr*BBBnZFoMKQP}oB_ep%7 z!31_vdsJ|GI>cQxBgMV)XtHYTIMOvVv*4!lcDUijMg1P>*0+}12;sU6`|r$ zyfX0hl4{I_XJJQAMFxcvFqDKdctW}kH_U}-Qcr(%dGAIFRXMa{%y}O4HGEcOaNnIb z+*MA_VNr~qhAytDq_}zP&Nt))1T?Pig+b{XRv-?>?#LKH;HA>7b zfyep6GsS;8e`nf!v_}!`vq>}pc26LJF0h0u#cT1~!lz;}aWN`fT(*aKSx5PL27jNQ zZzgcjZD+3_JF2UHdd9D;<}H`wv8|%fp1?*oR-(L~{Bz~Di<%njd8VnG?)!J)^DD?@ z*l4{Mbn^wFG+hE5LKPl&c841xlebqNA_q=4^L>+q>@>g7VCbIQ}vla!6-ekj`Z&w7ZUACBW;N?=^8!madR7Y zz1Xxvjfu4tnmm3aFUxj^P4~&Ye8D~868+W7D|8P1%K4fW>mPF6_rKO|Ke#P3qs_v{ z)7yUZJ%efH3fKcI+X}IXZ;6TN3pm9{V&iq7142ERvT|}?KgTX)sTWOGSy>DSAiv7D z3|@Q8lD$)N#9t}gCLOfwCalH~TU=Dxcl-9k<4?`ln1Ed$2HE;Cmb0>GF z#WwY;j9m=~GZX;ycZwnI`Lf92|GM2^IQ-hIlFa?2PW3aO^-H4^EZaGD@~pxvzf;xMU{k25cGXA-3Ui?6f4p#Y(n2HRU6s>xSuHmMPzC^abT?Nv${thBY}8D#qOWPPQ> zR?wk>u%WO0#j5vV3&*n}I1F+m?0xNr*Gs$1>m#%{SLNO)=%_mCY$(Qm+x@d#ZG_7A(hFCUw@H#QNjr)c(v|LoTzSqZ#MQ`DXe|FsfW?ZxO| zA>-~~{9xp{jzW@l$pSQ9{{i844}A`OC^~xf=FWAKZ#BMHU;CC}{`#|eho&gW3d40f zOwz|+9?4BoYgm+qSG|!~jw4~G#p5ujnB^K-!MpSN_3NX9w1E4pqQm|DJOr2<%&Tug z{bqcnPq?zLTDXl$GTNl+X13RYF;F=P?kA3!7(5e@DssE`DeI@E7;4tmQ|Z{L#N)*9 zt9}WxA{~d4;$W}5W{)4N?%PgTZSB(A5`B^wIRg^Qz%%%envr_bkE~OJrvwFV@R*sI zu`w}K90nSUr*d2Z>qK<@3+Xm$Znk3l6n^-E=Q@k~hUUK7&@GGIz_K!)b2%di@d@y>j&drMmVEF1b18leKew?XIhDljCg{kc1r9R+pEjvO`2` zr3~H@vz*gjRQpyNI^1QtShyspsHo_DCQIJ@D(!7~S4m5nPE79SS(NQ>{n`WlbY!>4 z%otwA7bl;d4+L=4@L>UDTw(LW+eGUHr(NICrR6Yv+0E@_%<*64_+wR1OfT!*I{a_L zRV_3YC&N5E+M2ui4f6%b`ncJu9GjBEw^#bk18VGQRnECaetvGQfPz|KTZAUkNUJ7o zD3!jd1DRr5t7d`!xF{d~iz#rDxYF1jkdZx{-!W_op= ziH1qQ160D#$W(~ebXnew*qBZ33op#>nTv47#_^WZ zIfo$RgF&B}{wx^+4EBaxXAU-Y&C-6l6I_h$V|6V6la|8PLp0`L&+7JYFVb9u^w518&6YQRJnk=egOR{xoc?wrTGK zJFDfgX>f3{z5 zJ<#A~eC%M7g6@LN7C)X>vbKoyqVB@sjOZ9=It?FUtlv-NwuT_}w~OlvIgTWI?1;H$ z09oTO)%4)FsCLV)IM{ddO(e?PdMX3+-}++(a^jVHq|>NQrIi<<9kAX3K^AV zMPg+mgPr8oj>MzOo1TReDzYOE#w_eTJENL8vg4#FoWCYxIpkPYc=8HmWmX0oqjz82 zA^_Lwg<}#i@uSGwr6;I&fO^Wa-36|ccDi$@e zQ&6~__D7o+br>CIyagaA3-}#x0s%bHYlqNKJ#KH^`MrkzP)Y^e&X- zly|@)8w52^$w+RQZTEI|6bjjKTzaXg z#Wc{lXW>)z4k!sfFR`1cNKE2?eV-EVLzQ*P@GzgkuC1WF;8M5<`(|cEtb2_J$DJ=b z6VRx|MTom~K-RXHD~EnlKL+^<=(qe-MJ2V{fzjTAYU|s#w|d{d*_GIx{fO@9(bUz{ zq~X!Dcu@w0f2cKEwn>a>yJa!((&AU7qEOj9;R3!CKv3INJ}KPPn03hjEowZ%I{HP9 z?5L|?wb1;a60`Sh+}r%MuUG&Ln~t>IJmaD5$M}67FKJNHec9_GYVjUgsdw5M1q?TI zbhK%q{X%cx0?ahwwMk#kh13;H?D(WkJr-=qQ!~-hrRb~44>EuI(LAXJO%&xg*;y^N zAyF`q8jqZ_Q8RY)M54=%#IWdj!*NC5vU+C0gupI-yQfKmjHUn}p@h~OK-8astH01^&mV7) z<1?QEoQNoykPqwT#)qUo1*p2hD`Dh7QR2NE35*T2m(m~t6N5Hsx)?KA_jiiXKfhZ5 z2@8A0S2@)?%m50M^n0jGw8si?V8;#RX%JHV55`020H!ob%+bN5_6kW6oA(jOu;4Wlyc=u=TiPE5gijT8W^`)^m4&2guuj$5lb zJ6Gqv`ac@f!CO6ZAnGP>kIl^QKX~w20UscPB&2t5y5Ea_h`4Zq8nmb8QAbB78@sr) zf7CvqRFi5Nh1WZXvwHdPi5a`sgoA)BjqwjBfL=1*{OMsb#=@9*t!E@jW}86X5d=74)!l+fr9UWaU===w6hDg z3JRoIci}~8zN@CIn^pBjN#M<^0+%1y7zIilf2A}1D~jM54--R2-4t}t26qY)?kyV1 z^lm;gwIC>3sFJnU7bsPqDX8dz)yKD7&zpxHbKNy_?0zaOP_gAjx7N$`LUhaECDo z@Cx3*!V!?PZn(PP%?)M)5`xle?%eB&2k4t`KDbJVGJhY4c$1%E&p*=t*N=oj*aQg` zEpP*bUo;oq+y}`xm*7{krK)+vH+gcz1b}Pq-q|lb;2WQdWULAP6(PA9;`$@(qvi*8 z4!Qyly@Uo52#AMGz@QrwPw!VjOc|^>o>W8)9O$yLZ-yowE zfasH&A72T8%}xNm@6;msN$x*3E7%635g^5&iN}@npS_6nPk>1729WSa#2Lf_H<+ou za=YcFe>J(ky1Ht4mHV^s;QYauhriKfoD-OWX9esu66(*1Ciyx@(96)KdnR=&g<)#6c8+ltYX{<;K)PfPvDh2@zBDGL~jCugGCYre{ry~#Yy zCqRA_ls<+)L;@RdFkEmH;)s~2pzzx;_$M4qOAxMre`0r~ySX^@h?wIN-Qy!eCN-T_ zh(}<{l)?unoTaH-nHVsovIFAjG!{n+291);1u@tE)b*PBV9;qZ0~lsaS37v^9x;7Wye5ZY!*I{5JS?B!OU$2-o5*;Wl;djQo5y0 zqtyj|<&LNH3&d5Kfqc^Za^}4`m3c&f^U_ZV*VY(Nb*xON`F-DABuP@}C|yXr!SE&M z_EAYYYTQvrisHZlzS@~0Gj?-8CrmKli#7C(MQbqN(S#`_fwA#&GQMzW;6NDadSd9A z6=?V{egA1O0d7Hso|cM|3g;lDRMvWe%93b-@)NA~rFrnfojIvdf}1DI-=SC-CL*sx zHMj4AUCS}RYi|nWeEjE#<+NtL%ZkZKdbrTH1!He(H{6a+w8>4E{nu{GO|2>k?+vpY{rl9S2~0$boYOfoGX@Cqow%k!Xdm|QX3`1BN&@jPh@Z$hOPn#+(NeQ_p`KL5Ty&mUHr>0SN z=O2$YaC&)PHCybToQxDiigc^f6kRCTLe{y;-ucU6fc=jVMcR*1}5=d`GB zbZLOX#GzMX_5ET9-AvfV#sO`f-zL$Vu*Z9k9E!;i8X>H~bjflMVSz+9C*@tO3J$J! z#q~1jmhoup`le?5oI_W5i94FEXgXHxmvA|yBb8&@Inn5Ts>hpj>6cW)vb>q)utejp zWvahh5za@o<|9`XS2{3M5a2SF@g#kRhNyG}o27>$(#N{-LB;FC-*n+qyVpjs*_Kj| z#|Q6!|4`8g;qF(^Hfkm#W2+Y7nC$;LdBW#vudZHRd~jj>;6sW|mPcQZd)HVbIfKrF zp2hqZ9yZ%628M1nRTA8#>610586yPttnHuPD5}sX= zp_>`H28NjDntlK8|Gvfdi4X5{9Pfws+x9qS^Sgd=t!u4wo#(j>XD2Cc9khHAt(346 zo0NR=lU>k=i8Ebg^y7J}SfAL|5A!p-XIbHcgf2Rb50e~pBf09l>a_()MksERKDX8X z4E~wUiTJ9MkY`j!PG|T{kaakEiU&0#c-##;3u{Qu0c!@hqYC7#UM8)Xv>y3_#% zk!w0#Mqj=hx#6J}d;a3HNhj1sLB4+bWw?)?_AV58m{z;EPc3xAXDRyR*y&01uZHUM zeNU$b0`aU#r&w+J>jh-X8SsFb+@%gdvQ0*s=n@0JIbyu7GX<#PU!P)CQ~L}dP@c4? zdayMG#xwn=Q&e~Z=CT_P&A-zH)$YNi3CWyR50q8QP0SkN`AN%9uHBdsvTp3PtuOsN zePkRXcFxs}$I!hHP;PG$UEeFbpu>K*Ev=5lt{<-G@gew7Ge1iLW%Q)|V>pd+xvKrA zbRWDd{QAxhl>g=eOuhxZ>PJEBf4l%WEH^^D5u3>Z0nYgL-e>1F>Y6BfJDfv6#9E<&Zbw3q>a*OCj1hYz=_Kh5TSSBs_7y0BAfEgzm|%8ktHim&%i1KVr&Kbq?~xCS^j`|V-X z)>PFLJLRSwy~FY}Q6LiC?I1n-Dk5LTQZ-`0QO19mNnfcCRSF)dplY>T9Mq{0tr52i zvC~qju6}_!M-nGhx`q9gJbNgi1I)rZGv0f;#usM&tT=CPhBh4(9hOcFl zs*)!@8ZT4|b-2G;Pmm=6WJK)uvoc5_?3r@*YsTBR@xf_^{1QqMyhoHfc{? zmmvojF)vrLE}oC>p_rT(MiD`I{d&P_Teu0&Lvni=|MHK-CMHYlHycdpzJbzvy6yxI z+td!rN!LLMo6{hnklD)VP)BK1<+VQ@SJ1E`nO$Y)o`_&+oNZi5rgIq9-t5db8{bzk zJh-^g-#$0Y_9~nl*4K=FOBpzr+&4a9IscZzx8ITyXE`eJ7#6VyMg}g!`Cip4At-ZU zsIA7&4xXlI(M8?;@DL#ZoEP6%bdbc>1!x3AT7z4mrdn*HzHha6>a1G+J!+oOz`&yz zysIqld0c|*sB@?o&Gl)CMO;Q-TEawL;Nt#-JFUEPJmGw}rQXkg%`)V^J9USoPDIHp zg<74XxoITnxc2yS_oKZr-}(`|_Tdd>>nH+yJUv>o0IV{#!B*ucYhD|HmkfK~NvDQb zHK-C*OA{#qAM-Tbz0i3U|I0ssu=+XAr-YbnPS{mSD!TNX?aQX5Jg!r6O5XjFQYfvxb+K!u!i=(tWx8Kt9+WkbAKg$Il&!kM zb3N>Z3Mb75ybxHyP3Xe@PF0=D{#@FlZ%<0}V?W>H>oi=9w5df-{Cf0Nr~O@B&qD8# zmaD737JCjfUnMhxaxBv|vAK!a?ev7a@m6lfYb>Yw@v5dSOM3<|;cZ3XvKf!z>wsWe zkV62-4EkX1;Ku;|F5tW65ATp!g@a zsb7>n(m_HRlMD@0BqVuMj<=|KEQd;wKe%-*Eb|U~7(9rNuZZocV*&8bgsV z{x3w7Ry)dCqV^Z5#g|Q)DC)vJ`WZ7*gIcqI2!2!iZX# zv87DFUwS82I*vzTO6Iq%5?IN)WVLzUdrKCS$bA{A3u|aLlaN>;1_Z`8TW`p$QU@X>;VwSWn+}RlOb>8bRI3K3kq| zTOUEj_yJ9Sg;?$U(qz3Y3uH%^>l@K&(Iw<~u7_|JLRZ2#V6v8mc zLpMY0#4cXIx^r~zc0#U)ezWlf3cN$2YMnzQk&VG|9J5($91gVCRwZ*V zLUq@rMJfRavqsif$hsE)wek_``B+t>>FPN6rva8zY~TTsOisnvy*(Mb=im^=Pc#tW zCRmmt3gMJBI7@uVXg}lq^ZbM;mf7)Fka`cbOK30x2R&$ z76WxLMeRG7Q^a$k{iB2+?V9_eKEBr3JavKrPQU!dU$_sI!Pa|q1WAVYkOG=dQZh}h zO)!5*tl}|4U)(i_}M&9S67_sf)1Uzx;HWB#vhJazstnneWz3Yu;@hBe>`#%`G z4H$Hw4yxR#2mV8aA020q$zVU8TFM+764agbgMQ+jTH&l^vI#@t)`VW_>Sgo*^P4=a z$8WQ~V5hb!FDEbfb5>e7o*gvh}Bb#|XK(u~9D$_n7!!Ptv%F*&1s}q)_ zpYzEOQkSTr7@9bFYond((W2|<;`FpVXS1K+{wCofRmfqV6sI zkry$83QT|C^MjTJP*#c*b>{F~V!)t<_w}AUxd?e+1W0~XlQkR|w%$1IdH5-yTHJv^ z#?hx;1{>%|Z+^4&Gq~C$(#!dZc#|7$mtD~I>=$;dqs;6rwxWT!#D8gC|8uSS%-~w; zQ?f=PPca}|c9X$R9BhW6U^Pkreb^t#zLWq3;wazHAK0cKMvRr-lgci}4B8r?{#Wry z3!uRkNP;bP$w_z~brUJ70x&0_#DAZlLZVhs4EfN96>mphZtx(0_n+PxeCHFOqQn@rT5 z;&FdJzd&cTyFhVpD7*z9r!p8K+gstd1K`N|QjfjsQ~Yo-#pLbScz)pmxluJ_#{4S_ zpjMPKA9&n~(s%Aap!)+?PtME61BzLi*(|NPpDXN|Z?vmeRjF5hLVI7swQ5rTV8>wASUo&DhP z<#2)%Y9c)2#>FQoqR^xl;E%u~?(1t7jIz{+xWA9Sr>9Lze0tt02}RGK;hVxTZKr1| z2EM~Ptql3xD_zf=oy&`=*Lj)mJYXB81DRzUO&n@Bzqow0xH0n6r&OO9y)4kB9k*f; zyD!U{;v5d-Iz=ILg77yBp@TqSY~>rB5>u=!cB0_RrJdorF_CM77y+WPx9>=33cfD< zLIl@1ZFsl=%8pNrfoXt$oy@cI84@ST|klL z$JB_qOrw9$UDGaYQWGb7Ojw|ns%H3+gX4sx1S4>ME0^Jl(GKqh?$styNKbZWw*5kD`9GWCsyZU#$o6i3zdf`vAH3h2rHI-hgRJJVCikI}?7y*y9!F;N#%Ch%Nrx&6 zb@<)Ry(_HyCHWxkGt(zQ*~zL2BR0;hg;lH7Mqyt~;uhl1&!S>ub3ng4U53H)sacZ8 zyTDM|JiY%W4>PGyfEOCS>cIKOCcQTs+T1i4!LoK(w>fb1)yU=0x2K$JUb9dueNb6c zebBV)p&<_skmL`iN_=cc3joLpj7Y;O z^4i7t>}N($ZN)==g~3*kuwgdQY5$B2JviBGibz*B9o6P30Rr%UQxtLW@nc-I&CPQp zrKCuyi6?;*!K1T8C;qjsts+#dF|S%N9@ zG(7}I^#4KujA3l^yHxem&R(iNpASBqJ3X~)9L&LI=xZI!&ebY21?jIcp#IW0!tL%k7Q^OQbRM3Tk$Xr>neqrqN|6*J0W5j`tcdU*IkbZ>F-tb>=2_|m0I zpm=*?G_7YV&oj#@PLn>PQ|w&qr8oWd+Il-Rzh;2OG<#ILYy&3c@B+}p6?;MOm)#Io;D6A$ zMKSdNBdR%&VIv^~_1gH8%DTc|!%Jh_5uGrIozf`qG z$o@ww@(f_UYBR9)+uI8uDs4=-5E79+ui{E_aj$b7=6=uNjS=+xZ^`u_i26EhzV`!Z zli>~EwDBMEn%}D$DzNbC%gHd*e+!B1Ye1s&x5DOk2%l+|7OZ)++DQ{6OBjXD?0@KM zemjnuo`AfH>-9?IKT0Cq|5hwrXbemw^xgkyh*c4M6-?ot;xX_Jn=%y8jvOKb1BiDPi9I&jfgtHZwON5C{MrclVsydcC8L zr(Z(2kBw~A54V)r3U2y-{dW5gIdX-&~KK_7xco~gONfj-4F zVlQ8#qU3-oXN9|MXq08`@RQ=l-Ur)5{(rYU{;Qk&<@RmpH%;>fVWR(R=(046ha6R7 z1UeGnz`jn-c2U-WrF;$3Se*i*fx#~{e7GVGOvfro-Ch0%36(iE`OEy4{Qrl4;$OX4 zB4y)@9x)abI-@AVrdB+X?k7zoplFyZd7kq}nR9RxJR-)9$rc!mCiCRYe+B&Y|93_IQAp1EV46{*tbf!R{+<}EG?l6Cya}dQ8cBPAkHv@)0``Yy zkNxHy+p(VBk1}-srE)~f>rvypv^E(X#_2m>;DVRDxt|%+*_a|`aawO>E89oNhMt>A3 z-W^D{`&PYgfPXz!b9Rbv77%Tv5iI<|sIw|>68RiGvuijB{T1S&La?K_KV5Etdex&T z*ZEYl*H-VrX|&EYDk`(yq}@}sLj5x77+v?z`W|N_CM%{^+XthFZ%)1a$QiUIMT)0( zd%Nt1V5^LxB;mEM4h!Y38?=hayNMb_+L=evJ8YI|I#M>eO6a8Z{VYB%;bQ1B$cB+=zF?v>AI`4UdI{#^JulOWI|w zh4ts%F$Nl7#E<1-^UupnC5@oe@2OvXmE?k2^W54Hv`l&rte<4r$S>~Z-oL3gUav~O ze}7F$PqRkjJ~Y6JJHX2u85NcP<|w>slk6Zz2{390P2-R|om|ZO!)7ULkJ#nRl6@OO zH^(HNCwr@cO7+o3qLcF!|7hE~1g4%|EsszhSqKxg%s&Q|omIzBuII~+YX|H7^$)0z zY&UhEJeD?JmSMD-Uu^d@fvdS}3}`i;qY`Xs?tcNzB2lkWXSkMGZtq(v%b|MY7%%$R zEJC}|+98Kn7jQT5uf(F}ABp>}(q!Bs%Kx8CcD^?2#ehB;q!o0p5j*0cci(OEC#U`o@;Mko57 zRvsddxW9!=EXS!=%&O6_DRCjuq_5se&}GfLTu&~?qb$BVIp@k9s@p(4Y9fVYMiEhY z`aHjonL0;ZiBRhIgiE~1>F?aalI6xzSw&5tIQq~P&k61($gibW`DI#~04x@_ty?fh5> z8@=DUKgkVbUic(89;~J|i#s}&HXJ#IiY4&Lpsgp2JCk;%>nw-!q7wG64U0Dke+0Qo&7H>>q%lm@A@Yk? zET#o#RuR38DhdIsasmE8n*gtEmKrLyGe~ltN9W2${HopWIIo?ZbaLL*S}|`g&Gg(E z*6g(LS*J{rx=n8XwMiYjsI1JF{SnaCPYO*kT-=Lx7-jZ5{S1=iyMSY!`lUNCFs^F9 zn9V~T9rl)p-}%V?$>Yc7=Trv3YiY(OIXStgHQ8NqukozMXQtfZ`IJK^=c9wjhz;cJ ztww{!^RFe&Vg8gH8s<$Q0sGsr_%54ZO95Z3bVgdMV#vu1Qxd>{`~UdMxf^n(%p?TF=q7*E$J9FC*Gu8@|MxOfz}M}tbh?0~A`fWaSl z1OYL-YnI<$7$pzlC{pO~*cFnIxPD`4adATHQiVh81_U5encF4yZ{NKglKzabf8heR zZIAV+>JMHOJ;)p<)2MO+xCw{McxHne%4vXh6T={xeE(-R=--s1B`lCdF!af)UBTi8 zzun#?&GNXo<{M8zDf0D#cgX+S9uJEfJ<|W?0{nm0@8KWq_-fAWu)Z;T=@>-#?|`pW zW?iz+p%5+(&T4c*;Et#sl38n)4|4hWNBBl#B% z!Wo^m?JI71Pxh8;0iLqKx}4m6^CqpRrLoQQyV8Gb0cQV6i+{hae;y%#kL;)XuxKA0 zWeu3>{ud(41tNCXTa@Ry_lA=E^HDB6XRQ=5KqwlG=oLv1rGKC~eE>~p{q&~iac zsGB7_cnU>B1NCuqQL)EXc^;>4BYOC-DPD4h;c-K{ZLbYa9G~OY#N}LK=Ionvhm<- z7q%6DvSy7Nh+}mSUr`I6urd)dXmHF-x?i&0`-IjJQ3&_i`Dr;(o|~nRln1O45w%#O z<^Z_0IDHd@ay(>3ZM|lE07UW7gSBi+YS^}4vmXJ?JAfkR7gbC4-@hM^8j!C&2^Dts zn33OTIjz}SK@{-ys074PE2i+vV;46}a7pZUyUkcFuJ!|Tm*^S=MS9gVbadKiGdsm{ z2|iqVR#dl+M9z2>b2XH>S!iW(?qIY?YlAj)oAq^zBBV2zBs8fZEAw)7J_t2+hr|aL z51Q0a+{ydY?w$j8PQ;<7V_zSgK+G%$B9twL!9vP+~A>p6wg<_+myuMc396&jf^BMRpij#%XW=>NjHl`Sl(_jNBdzE&Dc^b^F zZa5j)yiX>-WzqvH*B*=*6h8r_hxU(*yExWG6X=GSCSs$;!%Rk|Er-lm$B{rPE!{b z@4&7Aqk{G-~Vt3c&qGJ81UxF2=?ar3D6$j7fc* ztp;R+srTtuXslgPo!O7edaf3XUT4LPXIVO%)DC@ysp}1Rz!5Vp*<;fKDri@C)zm0~DkR|_6P z(<`UjgUX)9>o0(xmp1pe(^9?KRvKaj_gCQ!D9;97q%r)za$8bb;(g$n5Q-RI(+VkWTIi6Vp^b5sZ!iCJw-kBn7cx75Mt{Lk9C2`hdO-jUSX?xo@`l-0SiyebVf%9H@1obI@SQ22wEWsx$qMhYT74oee&yZ+x(~PNpHirO z@Kcizmv~ltjqR4=wWwRK)o>*~-2HHOOk4to5;s?sLi?%YCD{hP2*Kma{OyW0HOR)T zoi~%~T|K9!5y(WStLeUV7(@Jhn|O^v{X&QB#%xLy(+^O8K|CM6g zLkZjfLd$`n+{4LHnUM06OS5ejV0qGWE>TQz{Bp3`C>zDC~#e%l{3?}KW9!#y;32L4iEe5{jc$j z_Gy@2m9CIu4j5$b=>#8oV>nwi9VQ3DOP4cp!LQ?YRfR6zVG*WzP-`UBISIJ*P4%rY(>FiSfP3X_x!W&&F@O&M z6&4eTO72zvJK!33u!4a7D3c;s+dyPY$HhCe*8^Q2yj$sCoZaV@pQ zE0S`{n3`lx+1@3mqsVu9xk7ovQThoHz7Rd>9YN~qYf#ykSFb4P=x(#^Y`tq~-ugf{ z?dVM4pO4d3Tzd>f?(9Yv7l#c>;$SOLsQwW=-0e zijsjLS5o3Q5pJg%;Q!($JA9rwZf5w+U$Y;Wz|wQmQh6@LsWx?Xrrq=LL8IMn;?{!~ zibeb6VkrlB{+fh%hntWLoexwdS$@KkFKj3A`J85F0s_@*jqhiB#tj+HN~)2X^oQj@niiGIuZ(E_hqPb zG3KIi;@4uCPz#KoSYy0wu9I4f(AU%FTP zyY77A$HajUDw~U%Cnk(fBd_;mb8!|BcG}(qNJm_;Hv(%BWYDesBZg^XcF9|Im)bf^ zG8V>jCdK3g;78-4oi7y^ceZgg*gfyaut?h8U?PQmpE>V;X*dGpM=!qHr$k`am8)bb zxlwKJ8!`#7NT;pza(Go*JGy(AjM@8^IiwR(aTVxvMt7G8*uTWl1#zv3QrchO;v4uB zgxQDvhW%=C+LT?lR#M#@Ql5tU)G!NkyCQQA{FO_Txt zWYI-mR}ZXy;$m9~o*Flb4dzMYk^K5<)H;*}v~mTS$|Ug7(X^I8o2NXkLr@H>q1nu#v%r-SkeWnrUuJZ;4$B7f zKXTpszp$$?H4eIDJ;4QGHBBz*;=`~03f4?V#-%6Ehowo37m6RaIu20f4XQvAY*yyeFx`vzxXXZSLQb1Stj+uf}`l5y5tQV5&C1$;1OFdLgW~ zSenFTbL<%aOri8$AK9zx|)&XLqf5OF} zZDvMUuTI43#E9V%_nC3rNWqD2T3T9Vvj5phK7gVg(cCCtd!B7Mh@8pyu5pA9=Er~; z8HSzTgq^a)bn2yrN==@Ff$Kx(YuQUn8%eZ_L!XKL+3b4zu#vx}jATL?%5FAObTcYT zlLRSO7zuk7$;GheO5z6WcOK5DEl2A(qw5{!5;*9ASM~$ia&R#I_PP2iU=AMwydaj^ zL_ZEZY`pe2SQ5G0(fbEY>D+p%5!X4Rn1dTJWrHw>W+hpB_e-CV$`(G))wFnatuJqq zWcx}z_%I&x+$1-0CTkqmqWrNbX=rk5N$4zB^NZOvHzz$`HvM$~@0S9JM*KsMQsBdu zC!j3yxesSgFi$f@>=6}h9;kmHPz0zE72*TWoQ!zsS!ndcy3wA-2nX-m2Dv7@5T0?AT0;uHqw za$Bf#5195uLJz<^&$OuJljL4k)$QCtLNH|+`Qv?1=ty%5I@dU89xw%fP2oZBw6BX* z+yFcEwaA=6nA>R)pIHxlE}ra;x0uZ@FZiy47n^{_&1|Lor=Pzcnt7qmG&AjL0EKjR zu4SUmE#<>?&VtfRdDc@Ax1z~MG*@pqDaSPO+Zud4q9NE>$&8FOWXg1mytreVq(HP2 zah_ePe155jnz#UV6cL(yS++c~Pp@hw9_~ea3LxBgQL|8=(_=HM7wOvkB!IPp4n_@Ne>Ihxfr?i9a4j2Uyz}a$sq$IbGJLEdiJ=