From dbb5f6c6ccf6ef39aeb60181a4bbaed5a3d37dff Mon Sep 17 00:00:00 2001 From: Jeremy Jacobi <108456325+JacobiCamunda@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:11:33 +0100 Subject: [PATCH 01/26] feat(web-modeler): add git-sync self-hosted part (#4630) * feat(web-modeler): add git-sync self-hosted part * incorporate review feedback * feat(web-modeler): add part about using application id as alternative in git-sync * Update docs/components/modeler/web-modeler/git-sync.md Co-authored-by: Cole Isaac <82131455+conceptualshark@users.noreply.github.com> --------- Co-authored-by: Cole Isaac <82131455+conceptualshark@users.noreply.github.com> --- docs/components/modeler/web-modeler/git-sync.md | 9 +++++++-- .../components/modeler/web-modeler/git-sync.md | 9 +++++++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/docs/components/modeler/web-modeler/git-sync.md b/docs/components/modeler/web-modeler/git-sync.md index 2f6668310d..a8ebc77bf3 100644 --- a/docs/components/modeler/web-modeler/git-sync.md +++ b/docs/components/modeler/web-modeler/git-sync.md @@ -36,18 +36,22 @@ Click **Create GitHub App** to finish. 3. Select **Only select repositories**, and choose the repository to sync with Web Modeler. 4. Once redirected to your application's installation page, copy the **Installation ID** located at the end of the page's URL: `https://github.com/settings/installations/{installation_id}`. -### Configure GitHub in Web Modeler +### [Configure GitHub in Web Modeler](#configure-github-in-web-modeler) :::note An organization administration account (or project administrator in Camunda Self-Managed) is required for the initial GitHub configuration. ::: +:::note +When using a self-hosted GitHub instance, ensure the environment variable `CAMUNDA_MODELER_GITSYNC_GITHUB_BASEURL` is set to the API URL of your self-hosted GitHub instance. It usually looks like `http(s)://HOSTNAME/api/v3`. Refer to [GitHub documentation](https://docs.github.com/en/enterprise-server@3.15/rest/enterprise-admin?apiVersion=2022-11-28#endpoint-urls) and choose the correct enterprise server version. +::: + 1. Within Web Modeler, navigate to the process application you would like to connect to GitHub, and click **Connect GitHub**. 2. Provide the following information in the GitHub Configuration modal: - **Installation ID:** Found in the URL of your GitHub App's installation page. - - **Client ID:** Found in your GitHub App's settings page. + - **Client ID:** Found in your GitHub App's settings page. You can also use Application ID as an alternative. (If you are using GitHub Enterprise Server 3.13 or prior, Application ID is required.) - **Private Key:** The contents of the .pem file downloaded from your GitHub App's settings page. - **GitHub repository URL:** The base URL of the repository you want to sync with, for example `https://github.com/camunda/example-repo`. The URL cannot contain the `.git` extension or a folder path. - **Branch name:** The branch name to use for merging and managing changes. @@ -130,3 +134,4 @@ Creating multiple copies of a process application can complicate navigation and - Actions which alter the SHA of the commit to which Web Modeler is synced (for example, squash) may cause synchronization errors. - Timeouts may occur during a sync. In the event of a timeout, close the modal and retry the synchronization. - A single synchronization action is limited to incorporating a maximum of 250 commits or making changes to up to 300 files, regardless of whether these changes affect the Web Modeler files directly. Be aware that Web Modeler does not provide a notification when these thresholds are exceeded. Should you encounter this limitation, it may be necessary to initiate a fresh synchronization. A fresh synchronization fetches all the files in the repository without relying on the incremental changes, thus bypassing the limitations. This can be achieved by either changing the branch or modifying the GitHub repository URL. +- Using self-hosted instances of Git providers may require additional configuration. Refer to the Web Modeler [configuration](#configure-github-in-web-modeler) for more details. diff --git a/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md b/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md index 8d0ed17309..bc40d5ede1 100644 --- a/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md +++ b/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md @@ -36,18 +36,22 @@ Click **Create GitHub App** to finish. 3. Select **Only select repositories**, and choose the repository to sync with Web Modeler. 4. Once redirected to your application's installation page, copy the **Installation ID** located at the end of the page's URL: `https://github.com/settings/installations/{installation_id}`. -### Configure GitHub in Web Modeler +### [Configure GitHub in Web Modeler](#configure-github-in-web-modeler) :::note An organization administration account (or project administrator in Camunda Self-Managed) is required for the initial GitHub configuration. ::: +:::note +When using a self-hosted GitHub instance, ensure the environment variable `CAMUNDA_MODELER_GITSYNC_GITHUB_BASEURL` is set to the API URL of your self-hosted GitHub instance. It usually looks like `http(s)://HOSTNAME/api/v3`. Refer to [GitHub documentation](https://docs.github.com/en/enterprise-server@3.15/rest/enterprise-admin?apiVersion=2022-11-28#endpoint-urls) and choose the correct enterprise server version. +::: + 1. Within Web Modeler, navigate to the process application you would like to connect to GitHub, and click **Connect GitHub**. 2. Provide the following information in the GitHub Configuration modal: - **Installation ID:** Found in the URL of your GitHub App's installation page. - - **Client ID:** Found in your GitHub App's settings page. + - **Client ID:** Found in your GitHub App's settings page. You can also use Application ID as an alternative. (If you are using GitHub Enterprise Server 3.13 or prior, you **have** to use Application ID) - **Private Key:** The contents of the .pem file downloaded from your GitHub App's settings page. - **GitHub repository URL:** The base URL of the repository you want to sync with, for example `https://github.com/camunda/example-repo`. The URL cannot contain the `.git` extension or a folder path. - **Branch name:** The branch name to use for merging and managing changes. @@ -96,3 +100,4 @@ Existing GitHub configurations can be edited from the gear icon beside the **Syn - Actions which alter the SHA of the commit to which Web Modeler is synced (for example, squash) may cause synchronization errors. - Timeouts may occur during a sync. In the event of a timeout, close the modal and retry the synchronization. - A single synchronization action is limited to incorporating a maximum of 250 commits or making changes to up to 300 files, regardless of whether these changes affect the Web Modeler files directly. Be aware that Web Modeler does not provide a notification when these thresholds are exceeded. Should you encounter this limitation, it may be necessary to initiate a fresh synchronization. A fresh synchronization fetches all the files in the repository without relying on the incremental changes, thus bypassing the limitations. This can be achieved by either changing the branch or modifying the GitHub repository URL. +- Using self-hosted instances of Git providers may require additional configuration. Refer to the Web Modeler [configuration](#configure-github-in-web-modeler) for more details. From 7eb91188bb0c9975c101c67cda886b469a124538 Mon Sep 17 00:00:00 2001 From: Mark Farkas <119574841+markfarkas-camunda@users.noreply.github.com> Date: Mon, 9 Dec 2024 12:26:11 +0100 Subject: [PATCH 02/26] fix(template-generator): remove saas only badge (#4725) --- .../custom-built-connectors/connector-template-generator.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/components/connectors/custom-built-connectors/connector-template-generator.md b/docs/components/connectors/custom-built-connectors/connector-template-generator.md index d0d919499e..09eeaf978f 100644 --- a/docs/components/connectors/custom-built-connectors/connector-template-generator.md +++ b/docs/components/connectors/custom-built-connectors/connector-template-generator.md @@ -4,8 +4,6 @@ title: Generate a Connector template description: Learn how to generate Connector templates for easier custom Connector creation. --- -Camunda 8 SaaS only - You can configure and automatically generate a custom [Connector template](/components/connectors/custom-built-connectors/connector-templates.md) in Web Modeler. You can start from a blank template or import an existing API definition such as an [OpenAPI specification](https://swagger.io/resources/open-api/), [Swagger specification](https://swagger.io/resources/open-api/), or a [Postman collection](https://www.postman.com/collection/). For example, download a Postman collection as a YAML file, import this into the generator, and choose which methods to include in the generated template. From 0691fddb3fdb08ec2397432653278ac720daf516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=20=E9=8A=8D?= Date: Mon, 9 Dec 2024 21:47:39 +0800 Subject: [PATCH 03/26] feat(feel): Add new built-in function (#4713) Add new built-in function of the FEEL engine to the FEEL documentation. --- .../feel-built-in-functions-list.md | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-list.md b/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-list.md index 9f6b2358e5..63e8c98489 100644 --- a/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-list.md +++ b/docs/components/modeler/feel/builtin-functions/feel-built-in-functions-list.md @@ -621,3 +621,30 @@ is empty([]) is empty([1,2,3]) // false ``` + +## partition(list, size) + + + +Returns consecutive sublists of a list, each of the same size (the final list may be smaller). + +If `size` is less than `0`, it returns `null`. + +**Function signature** + +```feel +partition(list: list, size: number): list +``` + +**Examples** + +```feel +partition([1,2,3,4,5], 2) +// [[1,2], [3,4], [5]] + +partition([], 2) +// [] + +partition([1,2], 0) +// null +``` From d1b1dc0148558eb159b89b95c1a455aa5d0350fe Mon Sep 17 00:00:00 2001 From: Mark Sellings Date: Mon, 9 Dec 2024 14:20:11 +0000 Subject: [PATCH 04/26] Remove compensation event note (#4728) --- docs/components/concepts/workflow-patterns.md | 4 ---- .../version-8.5/components/concepts/workflow-patterns.md | 4 ---- .../version-8.6/components/concepts/workflow-patterns.md | 4 ---- 3 files changed, 12 deletions(-) diff --git a/docs/components/concepts/workflow-patterns.md b/docs/components/concepts/workflow-patterns.md index ace1b2cbd6..8d148ee15e 100644 --- a/docs/components/concepts/workflow-patterns.md +++ b/docs/components/concepts/workflow-patterns.md @@ -276,10 +276,6 @@ An important problem to solve is how to roll back a business transaction in case In BPMN, you can use [compensation events](/components/modeler/bpmn/bpmn-coverage.md) to easily implement compensations in your processes. -:::note -The compensation event is supported in Camunda 7, but not yet in Camunda 8. It is on the roadmap and will eventually be available in Camunda 8. -::: -
1 diff --git a/versioned_docs/version-8.5/components/concepts/workflow-patterns.md b/versioned_docs/version-8.5/components/concepts/workflow-patterns.md index ace1b2cbd6..8d148ee15e 100644 --- a/versioned_docs/version-8.5/components/concepts/workflow-patterns.md +++ b/versioned_docs/version-8.5/components/concepts/workflow-patterns.md @@ -276,10 +276,6 @@ An important problem to solve is how to roll back a business transaction in case In BPMN, you can use [compensation events](/components/modeler/bpmn/bpmn-coverage.md) to easily implement compensations in your processes. -:::note -The compensation event is supported in Camunda 7, but not yet in Camunda 8. It is on the roadmap and will eventually be available in Camunda 8. -::: -
1 diff --git a/versioned_docs/version-8.6/components/concepts/workflow-patterns.md b/versioned_docs/version-8.6/components/concepts/workflow-patterns.md index ace1b2cbd6..8d148ee15e 100644 --- a/versioned_docs/version-8.6/components/concepts/workflow-patterns.md +++ b/versioned_docs/version-8.6/components/concepts/workflow-patterns.md @@ -276,10 +276,6 @@ An important problem to solve is how to roll back a business transaction in case In BPMN, you can use [compensation events](/components/modeler/bpmn/bpmn-coverage.md) to easily implement compensations in your processes. -:::note -The compensation event is supported in Camunda 7, but not yet in Camunda 8. It is on the roadmap and will eventually be available in Camunda 8. -::: -
1 From 8bd7afbeaf13065fa2378890444071ab31db9161 Mon Sep 17 00:00:00 2001 From: Amara Graham Date: Mon, 9 Dec 2024 08:24:54 -0600 Subject: [PATCH 05/26] add URI (#4724) --- docs/apis-tools/java-client/index.md | 4 ++-- versioned_docs/version-8.6/apis-tools/java-client/index.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/apis-tools/java-client/index.md b/docs/apis-tools/java-client/index.md index 0768a607df..30212b1bdc 100644 --- a/docs/apis-tools/java-client/index.md +++ b/docs/apis-tools/java-client/index.md @@ -52,8 +52,8 @@ In Java code, instantiate the client as follows: .build(); try (ZeebeClient client = ZeebeClient.newClientBuilder() - .grpcAddress(zeebeGrpc) - .restAddress(zeebeRest) + .grpcAddress(URI.create(zeebeGrpc)) + .restAddress(URI.create(zeebeRest)) .credentialsProvider(credentialsProvider) .build()) { client.newTopologyRequest().send().join(); diff --git a/versioned_docs/version-8.6/apis-tools/java-client/index.md b/versioned_docs/version-8.6/apis-tools/java-client/index.md index 0768a607df..30212b1bdc 100644 --- a/versioned_docs/version-8.6/apis-tools/java-client/index.md +++ b/versioned_docs/version-8.6/apis-tools/java-client/index.md @@ -52,8 +52,8 @@ In Java code, instantiate the client as follows: .build(); try (ZeebeClient client = ZeebeClient.newClientBuilder() - .grpcAddress(zeebeGrpc) - .restAddress(zeebeRest) + .grpcAddress(URI.create(zeebeGrpc)) + .restAddress(URI.create(zeebeRest)) .credentialsProvider(credentialsProvider) .build()) { client.newTopologyRequest().send().join(); From 256f7bb6809b17d1d3f3fe06fc095b7ad8332371 Mon Sep 17 00:00:00 2001 From: Amara Graham Date: Mon, 9 Dec 2024 09:00:27 -0600 Subject: [PATCH 06/26] add note (#4719) --- docs/components/modeler/web-modeler/camunda-marketplace.md | 4 ++++ .../components/modeler/web-modeler/camunda-marketplace.md | 4 ++++ .../components/modeler/web-modeler/camunda-marketplace.md | 4 ++++ .../components/modeler/web-modeler/camunda-marketplace.md | 4 ++++ .../components/modeler/web-modeler/camunda-marketplace.md | 4 ++++ 5 files changed, 20 insertions(+) diff --git a/docs/components/modeler/web-modeler/camunda-marketplace.md b/docs/components/modeler/web-modeler/camunda-marketplace.md index 1e366d34eb..0842066bae 100644 --- a/docs/components/modeler/web-modeler/camunda-marketplace.md +++ b/docs/components/modeler/web-modeler/camunda-marketplace.md @@ -12,6 +12,10 @@ If you are a **[Web Modeler Self-Managed](/self-managed/modeler/web-modeler/inst ## Browse Marketplace Connectors +:::note +Connectors created by partners or the community are not part of the commercial Camunda product. Camunda does not support these Connectors as part of its commercial services to enterprise customers. Please evaluate each client to make sure it meets your requirements before using. +::: + To navigate to the Camunda Marketplace, take the following steps: 1. Log in to your Camunda account. diff --git a/versioned_docs/version-8.3/components/modeler/web-modeler/camunda-marketplace.md b/versioned_docs/version-8.3/components/modeler/web-modeler/camunda-marketplace.md index 9b026b9d57..5fee9c721d 100644 --- a/versioned_docs/version-8.3/components/modeler/web-modeler/camunda-marketplace.md +++ b/versioned_docs/version-8.3/components/modeler/web-modeler/camunda-marketplace.md @@ -14,6 +14,10 @@ The Camunda Marketplace can be accessed via your [browser](https://marketplace.c ## Visit the Camunda Marketplace +:::note +Connectors created by partners or the community are not part of the commercial Camunda product. Camunda does not support these Connectors as part of its commercial services to enterprise customers. Please evaluate each client to make sure it meets your requirements before using. +::: + To navigate to the Camunda Marketplace, take the following steps: 1. Log in to your Camunda account, and navigate to Web Modeler using the **Camunda components** icon in the top left corner of your console. Click **Modeler**. diff --git a/versioned_docs/version-8.4/components/modeler/web-modeler/camunda-marketplace.md b/versioned_docs/version-8.4/components/modeler/web-modeler/camunda-marketplace.md index 9b026b9d57..5fee9c721d 100644 --- a/versioned_docs/version-8.4/components/modeler/web-modeler/camunda-marketplace.md +++ b/versioned_docs/version-8.4/components/modeler/web-modeler/camunda-marketplace.md @@ -14,6 +14,10 @@ The Camunda Marketplace can be accessed via your [browser](https://marketplace.c ## Visit the Camunda Marketplace +:::note +Connectors created by partners or the community are not part of the commercial Camunda product. Camunda does not support these Connectors as part of its commercial services to enterprise customers. Please evaluate each client to make sure it meets your requirements before using. +::: + To navigate to the Camunda Marketplace, take the following steps: 1. Log in to your Camunda account, and navigate to Web Modeler using the **Camunda components** icon in the top left corner of your console. Click **Modeler**. diff --git a/versioned_docs/version-8.5/components/modeler/web-modeler/camunda-marketplace.md b/versioned_docs/version-8.5/components/modeler/web-modeler/camunda-marketplace.md index aeaf0878b6..464df80d09 100644 --- a/versioned_docs/version-8.5/components/modeler/web-modeler/camunda-marketplace.md +++ b/versioned_docs/version-8.5/components/modeler/web-modeler/camunda-marketplace.md @@ -14,6 +14,10 @@ The Camunda Marketplace can be accessed via your [browser](https://marketplace.c ## Visit the Camunda Marketplace +:::note +Connectors created by partners or the community are not part of the commercial Camunda product. Camunda does not support these Connectors as part of its commercial services to enterprise customers. Please evaluate each client to make sure it meets your requirements before using. +::: + To navigate to the Camunda Marketplace, take the following steps: 1. Log in to your Camunda account, and navigate to Web Modeler using the **Camunda components** icon in the top left corner of your console. Click **Modeler**. diff --git a/versioned_docs/version-8.6/components/modeler/web-modeler/camunda-marketplace.md b/versioned_docs/version-8.6/components/modeler/web-modeler/camunda-marketplace.md index 1e366d34eb..0842066bae 100644 --- a/versioned_docs/version-8.6/components/modeler/web-modeler/camunda-marketplace.md +++ b/versioned_docs/version-8.6/components/modeler/web-modeler/camunda-marketplace.md @@ -12,6 +12,10 @@ If you are a **[Web Modeler Self-Managed](/self-managed/modeler/web-modeler/inst ## Browse Marketplace Connectors +:::note +Connectors created by partners or the community are not part of the commercial Camunda product. Camunda does not support these Connectors as part of its commercial services to enterprise customers. Please evaluate each client to make sure it meets your requirements before using. +::: + To navigate to the Camunda Marketplace, take the following steps: 1. Log in to your Camunda account. From a700c3619a995d9e4614b7b17bf4ea40a3f96e66 Mon Sep 17 00:00:00 2001 From: Aleksander Dytko <102789122+aleksander-dytko@users.noreply.github.com> Date: Mon, 9 Dec 2024 16:42:06 +0100 Subject: [PATCH 07/26] Update bpmn-coverage.md (#4155) * Update bpmn-coverage.md We support Data Object and Data Store in Modeler + for execution. This needs to be reflected in bpmn-coverage * add admonition * backport * revert backport --------- Co-authored-by: Christina Ausley Co-authored-by: christinaausley <84338309+christinaausley@users.noreply.github.com> --- docs/components/modeler/bpmn/bpmn-coverage.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/components/modeler/bpmn/bpmn-coverage.md b/docs/components/modeler/bpmn/bpmn-coverage.md index c96e34cd92..d0e298d193 100644 --- a/docs/components/modeler/bpmn/bpmn-coverage.md +++ b/docs/components/modeler/bpmn/bpmn-coverage.md @@ -140,15 +140,19 @@ import CompensationSvg from './assets/bpmn-symbols/compensation.svg' ## Data +:::note +`DataObject` and `DataStore`, like other BPMN standard IO mappings, are supported by Camunda for modeling purposes only. +::: + import DataObjectSvg from './assets/bpmn-symbols/data-object.svg' import DataStoreSvg from './assets/bpmn-symbols/data-store.svg' From f2a4047122fcb918cb74df948c3b62480323010f Mon Sep 17 00:00:00 2001 From: DenovVasil Date: Mon, 9 Dec 2024 18:34:43 +0200 Subject: [PATCH 08/26] add gemini documentation (#4676) * add gemini documentation * TW review edits --------- Co-authored-by: mesellings --- .../available-connectors-overview.md | 1 + .../google-gemini.md | 233 ++++++++++++++++++ optimize_sidebars.js | 4 + sidebars.js | 1 + 4 files changed, 239 insertions(+) create mode 100644 docs/components/connectors/out-of-the-box-connectors/google-gemini.md diff --git a/docs/components/connectors/out-of-the-box-connectors/available-connectors-overview.md b/docs/components/connectors/out-of-the-box-connectors/available-connectors-overview.md index 93782940b3..2f97f2ab95 100644 --- a/docs/components/connectors/out-of-the-box-connectors/available-connectors-overview.md +++ b/docs/components/connectors/out-of-the-box-connectors/available-connectors-overview.md @@ -47,6 +47,7 @@ import TabItem from "@theme/TabItem"; - [Google Drive Connector](/components/connectors/out-of-the-box-connectors/googledrive.md) - Create folders or files from a [Google Drive](https://www.google.com/drive/) template from your BPMN process. - [Google Maps Platform Connector](/components/connectors/out-of-the-box-connectors/google-maps-platform.md) - Validate addresses, retrieve postal addresses, and calculate distances with [Google Maps Platform Service](https://mapsplatform.google.com/) from your BPMN process - [Google Sheets Connector](/components/connectors/out-of-the-box-connectors/google-sheets.md) - Allows you to work with an existing or new empty spreadsheet on [Google Drive](https://drive.google.com/) from your BPMN process. +- [Google Gemini Connector](/components/connectors/out-of-the-box-connectors/google-gemini.md) - Allows you to work with an existing or new empty spreadsheet on [Google Drive](https://drive.google.com/) from your BPMN process. - [Hugging Face Connector](/components/connectors/out-of-the-box-connectors/hugging-face.md) - Interact with [Hugging Face](https://huggingface.co/) models from your BPMN process. - [Kafka Producer Connector](/components/connectors/out-of-the-box-connectors/kafka.md) - Produce messages to [Kafka](https://kafka.apache.org/) from your BPMN process. - [Microsoft Teams Connector](/components/connectors/out-of-the-box-connectors/microsoft-teams.md) - Interactions with [Microsoft Teams](https://www.microsoft.com/microsoft-teams/) from your BPMN process. diff --git a/docs/components/connectors/out-of-the-box-connectors/google-gemini.md b/docs/components/connectors/out-of-the-box-connectors/google-gemini.md new file mode 100644 index 0000000000..3823a456b0 --- /dev/null +++ b/docs/components/connectors/out-of-the-box-connectors/google-gemini.md @@ -0,0 +1,233 @@ +--- +id: google-gemini +title: Google Gemini Connector +sidebar_label: Google Gemini Connector +description: The Gemini large language models (LLMs) that are used by Gemini for Google Cloud are trained on datasets of publicly available code, Google Cloud-specific material, and other relevant technical information in addition to the datasets used to train the Gemini [foundation models](https://storage.googleapis.com/deepmind-media/gemini/gemini_1_report.pdf). +--- + +:::info +The **Google Gemini Connector** is available for `8.7.0` or later. +::: + +The **Google Gemini Connector** is an outbound Connector that allows you to access Gemini multimodal models from Google. It is capable of understanding virtually any input, and can combine different types of information in a BPMN process. + +## Create a Google Gemini Connector task + +import ConnectorTask from '../../../components/react-components/connector-task.md' + + + +## Make your Google Gemini Connector executable + +To execute this Connector, ensure all mandatory fields are correctly filled. + +:::note +All the mandatory and non-mandatory fields and required settings depending on the operation selection you choose are covered in the upcoming sections. +::: + +## Authentication + +Choose an authentication type from the **Type** dropdown. For details on authentication types, see [Google authentication types](#google-authentication-types). + +## Project ID + +Enter your google cloud project identifier. + +## Region + +Enter the region where your project is located. For example, `us-central1 (lowa)`, `us-west1 (Oregon)`. + +## Model + +Select a model from the dropdown. The following models are currently supported: + +- gemini-1.5-flash-001 +- gemini-1.5-flash-002 +- gemini-1.5-pro-001 +- gemini-1.5-pro-002 +- gemini-1.0-pro-001 +- gemini-1.0-pro-002 +- gemini-1.0-pro-vision-001 + +## Prompt + +Enter a prompt as a FEEL expression, providing text and media. + +- To provide text to Gemini, your expression should contain key _"text"_ and text data. For example, _"text"_ : _"your text"_ +- To provide media to Gemini, your expression should contain key _"mime"_ and mime type text, and key _"uri"_ and media URI. For example, _"mime"_: _"mime type"_, _"uri"_: _"your URI"_. + +For example: + +```feel += [{"text": "who is this video about"}, +{"mime": "video/*", "uri": "https://youtu.be/..."}] +``` + +## System instructions + +Enter system instructions as a string, to determine how the model should respond. + +To learn more about system instructions, refer to [Google system instructions](https://cloud.google.com/vertex-ai/generative-ai/docs/learn/prompts/system-instructions?hl=en). + +## Grounding + +Grounding connects the model output to the verifiable sources of information. + +- This is useful in situations where accuracy and reliability are important. +- To use grounding, select the _Grounding_ checkbox and input the path to the data store. + +To learn more about grounding, refer to [Google grounding overview](https://cloud.google.com/vertex-ai/generative-ai/docs/grounding/overview?hl=en). + +## Safety Filter Settings + +You can adjust the likelihood of receiving a model response which might contain harmful content. + +- Content is blocked based on the probability that it is harmful. +- To use safety filter settings, select the _Safety Filter Settings_ checkbox and select the desired level from dropdown. +- By default, all filters are set to OFF. + +To learn more about safety filters, refer to [Google responsible AI safety filters and settings](https://cloud.google.com/vertex-ai/docs/generative-ai/learn/responsible-ai?hl=en#safety_filters_and_attributes). + +## Add stop sequence + +A stop sequence is a series of characters (including spaces) that stops response generation if encountered by the model. + +The stop sequence should be inserted as a string list. + +For example: + +```feel += ["text 1", "text 2"] +``` + +## Temperature + +The **Temperature** controls the randomness in token selection. + +- A lower temperature is good when you expect a true or correct response. A temperature of `0` means the highest probability token is usually selected. +- A higher temperature can lead to diverse or unexpected results. Some models have a higher temperature max to encourage more random responses. + +## Output token limit + +The **Output token limit** Determines the maximum amount of text output from a single prompt. A token is approximately four characters. + +## Seed + +Setting a **Seed** value is useful if you make repeated requests and want the same model response. + +Deterministic outcome isn’t guaranteed. Changing the model or other settings can cause variations in the response even when you use the same seed value. + +## Top-K + +The **Top-K** specifies the number of candidate tokens when the model is selecting an output token. + +- Use a lower value for less random responses and a higher value for more random responses. +- Only the _gemini-1.0-pro-vision-001_ model supports Top-K. + +## Top-P + +The **Top-P** changes how the model selects tokens for output. + +- Tokens are selected from the most probable to the least probable, until the sum of their probabilities equals the top-p value. +- For example, if tokens A, B, and C have a probability of .3, .2, and .1 and the top-p value is .5, then the model will select either A or B as the next token (using temperature). +- For the least variable results, set top-P to 0. + +## Functional call description + +**Function calling** is a feature of Gemini models that makes it easier to get structured data outputs from generative models. + +- The **Functional call description** must be provided in fell format. +- It is important that all types must be registered with capslock. + +To learn more about function calling, refer to [Google function calling](https://cloud.google.com/vertex-ai/generative-ai/docs/multimodal/function-calling). + +For example: + +```fell +[ + { + "name": "get_exchange_rate", + "description":"Get the exchange rate for currencies between countries", + "parameters": { + "type": "OBJECT", + "properties": { + "currency_date": { + "type": "STRING", + "description": "A date that must always be in YYYY-MM-DD format or the value 'latest' if a time period is not specified" + }, + "currency_from": { + "type": "STRING", + "description": "The currency to convert from in ISO 4217 format" + }, + "currency_to": { + "type": "STRING", + "description": "The currency to convert to in ISO 4217 format" + } + }, + "required":[ + "currency_date", + "currency_from", + "currency_to" + ] + } + } +] +``` + +### Google authentication types + +The **Google Gemini Connector** currently supports two methods for authentication and authorization: + +- Based on a short-lived JWT bearer token. +- Based on a refresh token. + +Google supports multiple ways to obtain both types of token. Refer to the [official Google OAuth documentation](https://developers.google.com/identity/protocols/oauth2) for current instructions, or see the examples below. + +#### Example 1: Obtain JWT bearer token with a service account + +:::warning +The following code snippet is for demonstration purposes only and must not be used for real production systems due to security concerns. +For production usage, follow the [official Google guidelines](https://developers.google.com/identity/protocols/oauth2/service-account). +::: + +Assuming you have created a service account and downloaded a JSON file with keys, run the following Python 3 snippet to print the JWT token in the terminal: + +```python +import google.auth +import google.auth.transport.requests +from google.oauth2 import service_account +# Scopes required to execute 'create' endpoind with Google Drive API +SCOPES = ['https://www.googleapis.com/auth/drive', 'https://www.googleapis.com/auth/drive.file', 'https://www.googleapis.com/auth/drive.appdata'] +# File with keys +SERVICE_ACCOUNT_FILE = 'google-service-account-creds.json' +credentials = service_account.Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES) +auth_req = google.auth.transport.requests.Request() +credentials.refresh(auth_req) +# Print token +print(credentials.token) +``` + +#### Example 2: Obtain bearer and refresh token with OAuth client + +:::warning +The following code snippet is for demonstration purposes only and must not be used for real production systems due to security concerns. +For production usage, follow the [official Google guidelines](https://developers.google.com/identity/protocols/oauth2/web-server). +::: + +Assuming you have created an OAuth client, you can download key files from the Google [Console](https://console.cloud.google.com/apis/credentials). Run the following Python 3 snippet to print the refresh token in the terminal: + +```python +from google_auth_oauthlib.flow import InstalledAppFlow +import pprint + +SCOPES = ['https://www.googleapis.com/auth/drive', 'https://www.googleapis.com/auth/documents'] +OAUTH_KEYS = './oauth-keys.json' # path to your file with OAuth credentials + +def main(): + flow = InstalledAppFlow.from_client_secrets_file(OAUTH_KEYS, SCOPES) + creds = flow.run_local_server(port=54948) + pprint.pprint(vars(creds)) + +if __name__ == "__main__": + main() +``` diff --git a/optimize_sidebars.js b/optimize_sidebars.js index 7a7b5a97f8..da4c8161e4 100644 --- a/optimize_sidebars.js +++ b/optimize_sidebars.js @@ -964,6 +964,10 @@ module.exports = { "Google Sheets Connector", "components/connectors/out-of-the-box-connectors/google-sheets/" ), + docsLink( + "Google Gemini Connector", + "components/connectors/out-of-the-box-connectors/google-gemini/" + ), ], }, diff --git a/sidebars.js b/sidebars.js index c49653ca7d..14ac338fc9 100644 --- a/sidebars.js +++ b/sidebars.js @@ -339,6 +339,7 @@ module.exports = { "components/connectors/out-of-the-box-connectors/googledrive", "components/connectors/out-of-the-box-connectors/google-maps-platform", "components/connectors/out-of-the-box-connectors/google-sheets", + "components/connectors/out-of-the-box-connectors/google-gemini", ], }, "components/connectors/out-of-the-box-connectors/hugging-face", From 4b0cd65500849d90e5c844c35e9c3f1a87597380 Mon Sep 17 00:00:00 2001 From: Mark Sellings Date: Tue, 10 Dec 2024 09:22:20 +0000 Subject: [PATCH 09/26] 8.7.0-alpha2 release notes (#4666) * Add initial and potential alpha 2 release note epics * Add Export activity endpoints * Remove 2126 * TW edits * Add document handling 2409 * Add 2073 unified deployment * Badges and edits * Remove license expiration 2529 placeholder * Add #2244 and #2245 * Remove 1314 Replay Scenarios * Add process instance migration * Remove release blog * Add Connectors entries * Add testing support for Connectors * Webhook connector details * Restructure connectors section * Add Gemini link --- docs/reference/release-notes/870.md | 175 ++++++++++++++++++++++++++-- src/css/custom.css | 7 ++ 2 files changed, 173 insertions(+), 9 deletions(-) diff --git a/docs/reference/release-notes/870.md b/docs/reference/release-notes/870.md index 409299b6b3..d26ce20810 100644 --- a/docs/reference/release-notes/870.md +++ b/docs/reference/release-notes/870.md @@ -19,27 +19,184 @@ These release notes identify the new features included in 8.7, including [alpha | ---------------------- | ---------------------------- | ------------ | ------------ | ------------ | | 11 February 2025 | 11 August 2026 | - | - | - | +## 8.7.0-alpha2 + +| Release date | Changelog(s) | Blog | +| :--------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--- | +| 10 December 2024 |
  • [ Camunda 8 core ](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2)
  • [ Connectors ](https://github.com/camunda/connectors/releases/tag/8.7.0-alpha2)
| - | + + + +### Camunda 8 REST API Query API API + +You can now use a single Query API in the Camunda 8 REST API to find process and decision data instead of using multiple component APIs. + +For example, send a request to the [Query decision definitions](/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx) endpoint to search for decision definitions. + +New Query API endpoints are added as follows: + +- Decision definitions +- Decision instances +- Decision requirements +- Flownode instances +- Incidents +- Process definitions +- Process instances +- User tasks +- Variables + +To learn more about these endpoints, see the [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md#query-api) documentation. + +### Connectors SaaSSelf-ManagedConnectors + +New Connectors and enhancements are included in this release. + +#### AWS Amazon Comprehend Connector + +The new Amazon Comprehend Connector allows you to integrate your BPMN service with Amazon Comprehend, a service which extracts insights about the content of documents, such as personal identifiable information and key phrases. + +To learn more about this Connector, see [Amazon Comprehend Connector](/components/connectors/out-of-the-box-connectors/amazon-comprehend.md). + +#### Email Connector attachments + +The Email connector is enhanced as follows: + +- Supports attachments stored in the document store. +- Supports custom headers. +- Messages can now be sent as plaintext, HTML, or in both formats. + +To learn more about this Connector, see [Email Connector](/components/connectors/out-of-the-box-connectors/email.md). + +#### Google Gemini Connector + +The new Google Gemini Connector allows you to access Gemini multimodal models from Google, capable of understanding virtually any input, and combining different types of information in your BPMN process. + +To learn more about this Connector, see [Google Gemini Connector](/components/connectors/out-of-the-box-connectors/google-gemini.md). + +#### Webhook Connector document upload + +Document upload is now supported by the Webhook Connector. Uploads can now be stored in the document store and are available for further processing for start and intermediate events. + +- Use the `documents` object to access created documents in both the response expression and the result expression. +- The `documents` object contains the references for created documents. + +To learn more about this feature, see [HTTP Webhook Connector](/components/connectors/protocol/http-webhook.md). + +### Connector Runtime SaaSSelf-ManagedConnectors + +#### Spring SDK and Camunda REST API Migration + +The Connectors experience is enhanced with the migration from the Spring Zeebe to the Camunda REST API, and the removal of dependency on the Operate client. + +#### Testing Support migration + +Connectors are supported in the Camunda Process Test (CPT) Java library you can use to test your BPMN processes and process application. + +To learn more about this feature, see [Camunda Process Test getting started](/apis-tools/testing/getting-started.md). + + + +### Cluster disk space cleared for paused trial clusters SaaS + +Cluster disk space is cleared when a trial cluster is paused. + +- You will need to redeploy processes to the cluster once it is resumed from a paused state. +- Cluster configuration settings (for example, API Clients, Connector secrets, and IP allowlists) are saved so you can easily resume a cluster. + + + +### Document handling SaaSSelf-Managed + +New features are available as part of the enhanced document handling being delivered with the 8.7 release. + +- A new Document API is available as part of the [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md). +- The [Java client](/apis-tools/java-client/index.md) is enhanced to support these new Document API methods. +- A document store concept is introduced and implemented as an in-memory and a GCP-based document store. +- A new Tasklist [Filepicker component](/components/modeler/forms/form-element-library/forms-element-library-filepicker.md) is added for uploading documents to the document store in a form. +- The [Connector SDK](/components/connectors/custom-built-connectors/connector-sdk.md) is enhanced to provide document support in property/variable bindings. +- The [Webhook connector](/components/connectors/protocol/http-webhook.md) supports Documents via the `documents` object. + + + +### Export activity logs in Console SaaSConsole + +You can export activity logs as JSON or CSV files from the Console UI or API. + +- **UI:** On the Organization management **Activity** tab, click **Export activity**. +- **API:** Send a GET request to the Management API `GetJson` or `GetCsv` endpoint. + +To learn more about this feature, see [view organization activity](/components/console/manage-organization/view-organization-activity.md). + + + +### Process instance migration SaaSSelf-ManagedZeebe + +Enhanced process instance migration allows you to solve problems with process definitions and use the latest process improvements. + +You can now migrate the following: + +- Compensation boundary event subscriptions. +- Escalation boundary events. +- Escalation event subprocesses. + +To learn more about migration, see [process instance migration](/components/concepts/process-instance-migration.md). + + + +### Singapore region available for SaaS SaaS + +A new Singapore (asia-southeast1) region is available for SaaS clusters. Use this region to: + +- Improve overall processing speed and reduce latency if you operate in Singapore and Southeast Asian (SEA) countries. +- Keep cluster data within Singapore to support your local data residency and compliance needs. + +To learn more about supported SaaS regions, see [regions](/reference/regions.md). + + + +### Tags and properties in Self-Managed Console Self-ManagedConsole + +Use custom tags and properties in Self-Managed Console to improve your orchestration cluster management. + +- Administrators can now assign tags such as `prod`, `dev`, or `test` to clusters for clear identification across environments. +- Tags are shown in the Console UI, and accessible via the Administration API to streamline usage reporting and cost allocation. +- Custom properties provide contextual information about each cluster. Administrators can add detailed descriptions, team names, and include links to resources such as Grafana dashboards or internal portals, shown in the Console **Cluster Details**. + +This feature allows you to differentiate clusters, ensure configurations align with production standards (for example, check TLS is enabled, correct partition counts), and improve operational efficiency by making key information more visible. + + + +### Unified deployment experience from Web Modeler Self-ManagedModeler + +The deployment experience is further simplified for Enterprise customers running Web Modeler Self-Managed. + +- User tokens are used for deployments instead of machine-to-machine (M2M) tokens generated from a client ID and secret. +- You no longer need to enter a client ID and secret in the deploy modal. Instead, simply choose a cluster (or stage for process applications) and deploy. + ## 8.7.0-alpha1 | Release date | Changelog(s) | Blog | | :--------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------ | | 12 November 2024 |
  • [ Camunda 8 core ](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha1)
  • [ Connectors ](https://github.com/camunda/connectors/releases/tag/8.7.0-alpha1)
| [Release blog](https://camunda.com/blog/2024/11/camunda-alpha-release-november-2024/) | -### Activity log information in Console Console +### Activity log information in Console Console -In the Console activity logs you can now see information about changes made to secrets (add, update, remove), and user removals from Console (users unregistered from the organization). +Console activity logs now contain information about changes made to secrets (add, update, remove), and Console user removals (unregistered organization users). -### Email Connector Connectors +### Email Connector Connectors -The Email Connector allows you to integrate your BPMN service with any email server using POP3, IMAP, or SMTP. This new Connector enables you to automate the retrieval, deletion, search, and organization of emails directly within your processes. +The new Email Connector allows you to: + +- Integrate your BPMN service with any email server using POP3, IMAP, or SMTP. +- Automate the retrieval, deletion, search, and organization of emails directly within your processes. To learn more about this Connector, see [Email Connector](/components/connectors/out-of-the-box-connectors/email.md). -### Generate Connector templates (OpenAPI + Postman) SaaSConnectors +### Generate Connector templates (OpenAPI + Postman) SaaSConnectors @@ -50,7 +207,7 @@ You can now configure and automatically generate a custom Connector template in To learn more about generating Connector templates, see [generate a Connector template](/components/connectors/custom-built-connectors/connector-template-generator.md). -### Monorepo Git sync Modeler +### Monorepo Git sync Modeler @@ -58,11 +215,11 @@ When configuring Git sync in Web Modeler, define the optional `/path` option to - This option allows you to specify the path to the folder containing your process application files. - Sync with your main branch to perform visual diffing, collaboration, and manual testing in Web Modeler. Remember not to make any changes in this branch. -- Vary the `/path` for multiple process applications to integrate Web Modeler with your existing monorepo containing all your code assets. +- Edit the `/path` for multiple process applications to integrate Web Modeler with your existing monorepo and code assets. To learn more about configuring Git sync, see [Git sync](/components/modeler/web-modeler/git-sync.md). -### Resize clusters on SaaS SaaSConsole +### Resize clusters on SaaS SaaSConsole @@ -73,7 +230,7 @@ Enterprise customers can flexibly resize their clusters to adjust capacity and p To learn more about this feature, see [resize a cluster](/components/console/manage-clusters/manage-cluster.md#resize-a-cluster). -### Unified deployment experience for Web Modeler Self-ManagedModeler +### Unified deployment experience for Web Modeler Self-ManagedModeler diff --git a/src/css/custom.css b/src/css/custom.css index 0e6a94e3e3..dc86e6d9d9 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -611,6 +611,13 @@ h3 .badge--long { margin-left: 5px; vertical-align: middle; } +h3 .badge--medium { + margin-bottom: 0; + font-size: 12px; + margin-left: 5px; + vertical-align: middle; +} + /* Third level page heading */ h3 .badge--long:nth-of-type(1) { margin-left: 5px; From 37b73a5d7af06977ad0acdc9984837b3a1896a66 Mon Sep 17 00:00:00 2001 From: Marcello Barile Date: Tue, 10 Dec 2024 14:19:25 +0100 Subject: [PATCH 10/26] docs(web-modeler): introduce gitlab sync (#4583) * docs(web-modeler): introduce gitlab sync * docs(web-modeler): fix typo * tech writer review * add tabbed options * docs(web-modeler): removed not needed roles * docs(web-modeler): update git sync permissions and new limitations * tech writer edits --------- Co-authored-by: Cole Garbo Co-authored-by: Jeremy Jacobi Co-authored-by: Jeremy Jacobi <108456325+JacobiCamunda@users.noreply.github.com> --- .../modeler/web-modeler/git-sync.md | 118 ++++++++++++++---- .../modeler/web-modeler/git-sync.md | 4 - 2 files changed, 91 insertions(+), 31 deletions(-) diff --git a/docs/components/modeler/web-modeler/git-sync.md b/docs/components/modeler/web-modeler/git-sync.md index a8ebc77bf3..754822ba50 100644 --- a/docs/components/modeler/web-modeler/git-sync.md +++ b/docs/components/modeler/web-modeler/git-sync.md @@ -4,13 +4,26 @@ title: Git sync description: Connect Web Modeler to your Git repositories to keep your projects synced. --- -Organization owners and administrators can connect their Web Modeler process applications to GitHub, allowing users to keep their Web Modeler, Desktop Modeler, and official version control projects synced. +import Tabs from "@theme/Tabs"; +import TabItem from "@theme/TabItem"; -Once the basic integration is configured by an organization owner or organization administrator, project administrators and editors can use the built-in button to pull changes from GitHub, integrate contributions from Desktop Modeler users, and merge their own work. +Organization owners and administrators can connect their Web Modeler process applications to GitHub and GitLab, allowing users to keep their Web Modeler, Desktop Modeler, and official version control projects synced. -## Connect to GitHub +Once the connection is configured by an organization owner or organization administrator, project administrators and editors can use the built-in button to pull changes from the remote repository, integrate contributions from Desktop Modeler users, and merge their own work. -### Create a new GitHub App +## Connect to a remote repository + +Select your Git repository host: + + + + + +

Create a new GitHub App

Web Modeler requires a GitHub App to sync changes with your GitHub repository. @@ -24,31 +37,29 @@ Follow the [GitHub documentation](https://docs.github.com/en/apps/creating-githu Click **Create GitHub App** to finish. -### Generate a private key +

Generate a private key

1. In your new application's setting page, navigate to **General > Private keys**. 2. Select **Generate a private key**. This key is automatically downloaded as a .pem file when created, and can be opened in a text editor to copy and paste the contents into Web Modeler. -### Install the GitHub App +

Install the GitHub App

1. In your application's setting page, navigate to **Install app**. 2. Click on the **Install** button for your organization or account. 3. Select **Only select repositories**, and choose the repository to sync with Web Modeler. 4. Once redirected to your application's installation page, copy the **Installation ID** located at the end of the page's URL: `https://github.com/settings/installations/{installation_id}`. -### [Configure GitHub in Web Modeler](#configure-github-in-web-modeler) - -:::note -An organization administration account (or project administrator in Camunda Self-Managed) is required for the initial GitHub configuration. -::: +

Configure GitHub in Web Modeler

:::note When using a self-hosted GitHub instance, ensure the environment variable `CAMUNDA_MODELER_GITSYNC_GITHUB_BASEURL` is set to the API URL of your self-hosted GitHub instance. It usually looks like `http(s)://HOSTNAME/api/v3`. Refer to [GitHub documentation](https://docs.github.com/en/enterprise-server@3.15/rest/enterprise-admin?apiVersion=2022-11-28#endpoint-urls) and choose the correct enterprise server version. ::: -1. Within Web Modeler, navigate to the process application you would like to connect to GitHub, and click **Connect GitHub**. +1. Within Web Modeler, navigate to the process application you would like to connect to GitHub, and click **Connect repository**. + +2. Select the **GitHub** tile (if not already selected), located at the top of the modal. -2. Provide the following information in the GitHub Configuration modal: +3. Provide the following information in the **Configure GitHub** modal: - **Installation ID:** Found in the URL of your GitHub App's installation page. - **Client ID:** Found in your GitHub App's settings page. You can also use Application ID as an alternative. (If you are using GitHub Enterprise Server 3.13 or prior, Application ID is required.) @@ -57,9 +68,9 @@ When using a self-hosted GitHub instance, ensure the environment variable `CAMUN - **Branch name:** The branch name to use for merging and managing changes. - **Path:** (optional) The path to the folder containing your process application files. If left empty, Web Modeler syncs with the root of the repository. This path is automatically created if it does not exist. -3. Click **Open repository** to test your configuration. The repository for the provided branch and optional path opens in a new tab. +4. Click **Open repository** to test your configuration. The repository for the provided branch and optional path opens in a new tab. -4. Click **Save Configuration**. +5. Click **Save Configuration**. :::note When synchronizing for the first time with a remote repository that already contains commits, ensure Web Modeler has assigned the correct main process. @@ -69,15 +80,66 @@ When successful, your project will display a new **Sync with GitHub** button. ![The Sync with GitHub within Web Modeler](./img/git-sync.png) -## Sync with GitHub +
+ + +

Create a new access token

+ +Web Modeler requires an access token to sync changes with your GitLab repository. You can use the following options: + +- **Project access token** (Recommended) +- Group access token +- Personal access token + +Follow the [GitLab documentation](https://docs.gitlab.com/ee/user/project/settings/project_access_tokens.html#create-a-project-access-token) to generate a new project access token for your repository with the following configuration: + +- Enable the following [**scopes**](https://docs.gitlab.com/ee/user/project/settings/project_access_tokens.html#scopes-for-a-project-access-token): + - `api` + - `read_api` + - `read_repository` + - `write_repository` + +

Get the project ID

+ +1. Navigate to your GitLab project. +2. Click the menu icon in the top right corner and select **Copy project ID**. + +

Configure GitLab in Web Modeler

:::note -File synchronization only happens at the root level of the remote repository. Files contained in subfolders will not be synchronized. +When using a self-hosted GitLab instance, ensure the environment variable `CAMUNDA_MODELER_GITSYNC_GITLAB_BASEURL` is set to the API URL of your self-hosted GitLab instance. It usually looks like `http(s)://HOSTNAME/api/v4`. ::: -Organization owners/administrators, project administrators, and project editors can sync their version of Web Modeler with the connected GitHub repository at any time. +1. Within Web Modeler, navigate to the process application you would like to connect to GitLab, and click **Connect repository**. -1. In your connected process application, click **Sync with GitHub**. +2. Select the **GitLab** tile, located at the top of the modal. + +3. Provide the following information in the **Configure GitLab** modal: + + - **Access token:** The generated project, group or personal access token. + - **Project ID:** The ID copied from the GitLab project settings. + - **GitLab repository URL:** The base URL of the repository you want to sync with, for example `https://gilab.com/camunda/example-repo`. The URL cannot contain the `.git` extension or a folder path. + - **Branch name:** The branch name to use for merging and managing changes. + - **Path:** (optional) The path to the folder containing your process application files. If left empty, Web Modeler syncs with the root of the repository. This path is **not** automatically created if it does not exist. + +4. Click **Open repository** to test your configuration. The repository for the provided branch and optional path opens in a new tab. + +5. Click **Save Configuration**. + +:::note +When synchronizing for the first time with a remote repository that already contains commits, ensure Web Modeler has assigned the correct main process. +::: + +When successful, your project will display a new **Sync with GitLab** button. + +
+
+ +## Sync with remote repository + +Organization owners/administrators, project administrators, and project editors can sync their version of Web Modeler with the connected repository at any time. + +1. In your connected process application, click **Sync with GitHub** or **Sync with GitLab**. 2. Enter a [version number](./process-applications.md#versioning) to create a new milestone for your process application. The new milestone will be created prior to pushing your changes to the central repository. 3. Click **Synchronize**. @@ -87,12 +149,14 @@ Once the pull is complete and any merge conflicts are resolved, Web Modeler will ## Manage existing configurations -Existing GitHub configurations can be edited from the gear icon beside the **Sync with GitHub** button. Permission to update these settings are limited by the roles within your organization and project. +Existing Git configurations can be edited from the gear icon beside the **Sync with GitHub** or **Sync with GitLab** button. Permission to update these settings are limited to **project administrators**. + +## Change Git provider + +To switch from GitHub to GitLab, or vice versa, update your configuration with the following steps: -- **Organization owners/administrators:** Edit and update all configuration options. -- **Project administrators - Self-Managed:** Edit and update all configuration options. -- **Project administrators - SaaS:** Edit and update only the **GitHub repository URL** and **branch name**. -- **Project editors:** Cannot make changes to the GitHub configuration. +1. Disconnect your current Git provider by clicking the gear icon beside the **Sync with GitHub** or **Sync with GitLab** button, and clicking the **Delete provider connection** button at the bottom of the modal. +2. After confirming the operation, open the **Connect repository** modal and provide the necessary information for the new Git provider, following the steps outlined for [GitHub](./git-sync.md/?platform=github#connect-to-a-remote-repository) or [GitLab](./git-sync.md/?platform=gitlab#connect-to-a-remote-repository). ## Advanced use cases @@ -116,7 +180,7 @@ To use Git sync for parallel feature development: 1. Create a new [process application](/docs/components/modeler/web-modeler/create-a-process-application.md) in Modeler for each active feature branch you want to develop. 2. Configure Git sync for each instance by connecting it to the corresponding feature branch in your repository. -3. Work on your feature in Modeler, using **Sync with GitHub** to pull and push changes as needed. +3. Work on your feature in Modeler, using **Sync with GitHub** or **Sync with GitLab** to pull and push changes as needed. 4. Once the feature is complete and merged into the main branch, you can delete the process application associated with the feature branch. To perform hotfixes or patches of production or production-bound processes, sync a copy of the process application to the `main` branch. @@ -133,5 +197,5 @@ Creating multiple copies of a process application can complicate navigation and - When synchronizing for the first time with a remote repository that already contains commits, Web Modeler will attempt to select a main process with a file name that matches its own main process. If there is no matching process, Web Modeler will select a process at random from the available `.bpmn` files. In the event that no `.bpmn` files exist in the remote repository, Web Modeler will not proceed, and will instead display an error message. Ensure the main process is correctly assigned, especially in cases where a random process has been selected. - Actions which alter the SHA of the commit to which Web Modeler is synced (for example, squash) may cause synchronization errors. - Timeouts may occur during a sync. In the event of a timeout, close the modal and retry the synchronization. -- A single synchronization action is limited to incorporating a maximum of 250 commits or making changes to up to 300 files, regardless of whether these changes affect the Web Modeler files directly. Be aware that Web Modeler does not provide a notification when these thresholds are exceeded. Should you encounter this limitation, it may be necessary to initiate a fresh synchronization. A fresh synchronization fetches all the files in the repository without relying on the incremental changes, thus bypassing the limitations. This can be achieved by either changing the branch or modifying the GitHub repository URL. -- Using self-hosted instances of Git providers may require additional configuration. Refer to the Web Modeler [configuration](#configure-github-in-web-modeler) for more details. +- Using self-hosted instances of Git providers may require additional configuration. Refer to the Web Modeler configuration part for your [git host](#connect-to-a-remote-repository) for more details. +- **(GitHub specific)** A single synchronization action is limited to incorporating a maximum of 250 commits or making changes to up to 300 files, regardless of whether these changes affect the Web Modeler files directly. Web Modeler does not provide a notification when these thresholds are exceeded. Should you encounter this limitation, it may be necessary to initiate a fresh synchronization. A fresh synchronization fetches all the files in the repository without relying on the incremental changes, thus bypassing the limitations. This can be achieved by either changing the branch or modifying the GitHub repository URL. diff --git a/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md b/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md index bc40d5ede1..e61588ef5d 100644 --- a/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md +++ b/versioned_docs/version-8.6/components/modeler/web-modeler/git-sync.md @@ -68,10 +68,6 @@ When successful, your project will display a new **Sync with GitHub** button. ## Sync with GitHub -:::note -File synchronization only happens at the root level of the remote repository. Files contained in subfolders will not be synchronized. -::: - Organization owners/administrators, project administrators, and project editors can sync their version of Web Modeler with the connected GitHub repository at any time. 1. In your connected process application, click **Sync with GitHub**. From 166c614fd95d5cc275de512a5235058d150bf62d Mon Sep 17 00:00:00 2001 From: Mark Sellings Date: Tue, 10 Dec 2024 13:21:12 +0000 Subject: [PATCH 11/26] Add blog and grammar edits (#4738) --- docs/reference/release-notes/870.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/reference/release-notes/870.md b/docs/reference/release-notes/870.md index d26ce20810..387abdc1ff 100644 --- a/docs/reference/release-notes/870.md +++ b/docs/reference/release-notes/870.md @@ -21,9 +21,9 @@ These release notes identify the new features included in 8.7, including [alpha ## 8.7.0-alpha2 -| Release date | Changelog(s) | Blog | -| :--------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--- | -| 10 December 2024 |
  • [ Camunda 8 core ](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2)
  • [ Connectors ](https://github.com/camunda/connectors/releases/tag/8.7.0-alpha2)
| - | +| Release date | Changelog(s) | Blog | +| :--------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------ | +| 10 December 2024 |
  • [ Camunda 8 core ](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2)
  • [ Connectors ](https://github.com/camunda/connectors/releases/tag/8.7.0-alpha2)
| [Release blog](https://camunda.com/blog/2024/12/camunda-alpha-release-december-2024/) | @@ -53,7 +53,7 @@ New Connectors and enhancements are included in this release. #### AWS Amazon Comprehend Connector -The new Amazon Comprehend Connector allows you to integrate your BPMN service with Amazon Comprehend, a service which extracts insights about the content of documents, such as personal identifiable information and key phrases. +The new Amazon Comprehend Connector allows you to integrate your BPMN service with Amazon Comprehend, a service which extracts insights about the content of documents, such as personal identifiable information (PII) and key phrases. To learn more about this Connector, see [Amazon Comprehend Connector](/components/connectors/out-of-the-box-connectors/amazon-comprehend.md). @@ -135,9 +135,9 @@ Enhanced process instance migration allows you to solve problems with process de You can now migrate the following: -- Compensation boundary event subscriptions. -- Escalation boundary events. -- Escalation event subprocesses. +- Compensation boundary event subscriptions +- Escalation boundary events +- Escalation event subprocesses To learn more about migration, see [process instance migration](/components/concepts/process-instance-migration.md). From 540e16a9ea138795f70f5170e3379d5309243fd7 Mon Sep 17 00:00:00 2001 From: Amara Graham Date: Tue, 10 Dec 2024 08:21:30 -0600 Subject: [PATCH 12/26] Bump to alpha2.1 (#4743) --- docs/reference/release-notes/870.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/release-notes/870.md b/docs/reference/release-notes/870.md index 387abdc1ff..f584b74c8f 100644 --- a/docs/reference/release-notes/870.md +++ b/docs/reference/release-notes/870.md @@ -23,7 +23,7 @@ These release notes identify the new features included in 8.7, including [alpha | Release date | Changelog(s) | Blog | | :--------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------ | -| 10 December 2024 |
  • [ Camunda 8 core ](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2)
  • [ Connectors ](https://github.com/camunda/connectors/releases/tag/8.7.0-alpha2)
| [Release blog](https://camunda.com/blog/2024/12/camunda-alpha-release-december-2024/) | +| 10 December 2024 |
  • [ Camunda 8 core ](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2)
  • [ Connectors ](https://github.com/camunda/connectors/releases/tag/8.7.0-alpha2.1)
| [Release blog](https://camunda.com/blog/2024/12/camunda-alpha-release-december-2024/) | From e4f0904e69f50d12874627c9e1a8c287a517bfea Mon Sep 17 00:00:00 2001 From: Jeremy Jacobi <108456325+JacobiCamunda@users.noreply.github.com> Date: Tue, 10 Dec 2024 16:19:18 +0100 Subject: [PATCH 13/26] =?UTF-8?q?docs(web-modeler):=20add=20specific=20rol?= =?UTF-8?q?e=20requirements=20for=20gitlab=20sync=20acc=E2=80=A6=20(#4744)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * docs(web-modeler): add specific role requirements for gitlab sync access token * fix spacing --------- Co-authored-by: Cole Garbo --- docs/components/modeler/web-modeler/git-sync.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components/modeler/web-modeler/git-sync.md b/docs/components/modeler/web-modeler/git-sync.md index 754822ba50..9693b8340c 100644 --- a/docs/components/modeler/web-modeler/git-sync.md +++ b/docs/components/modeler/web-modeler/git-sync.md @@ -93,7 +93,7 @@ Web Modeler requires an access token to sync changes with your GitLab repository Follow the [GitLab documentation](https://docs.gitlab.com/ee/user/project/settings/project_access_tokens.html#create-a-project-access-token) to generate a new project access token for your repository with the following configuration: -- Enable the following [**scopes**](https://docs.gitlab.com/ee/user/project/settings/project_access_tokens.html#scopes-for-a-project-access-token): +- Enable the following [**scopes**](https://docs.gitlab.com/ee/user/project/settings/project_access_tokens.html#scopes-for-a-project-access-token) for either the `developer` or `maintainer` role: - `api` - `read_api` - `read_repository` From 23f5dc8c1407318645dbb36345806d671fa0d9b2 Mon Sep 17 00:00:00 2001 From: Steven Hicks Date: Tue, 10 Dec 2024 09:28:35 -0600 Subject: [PATCH 14/26] revert replace-in-file (#4745) --- package-lock.json | 230 ++++++++++++++++++++++++++++++---------------- package.json | 2 +- 2 files changed, 151 insertions(+), 81 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2aa787bc59..1a62f5222f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -35,7 +35,7 @@ "lint-staged": "^14.0.1", "playwright": "^1.49.0", "prettier": "3.3.3", - "replace-in-file": "^8.2.0", + "replace-in-file": "^7.2.0", "swc-loader": "^0.2.3" } }, @@ -22887,12 +22887,6 @@ "node": ">=8" } }, - "node_modules/package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "dev": true - }, "node_modules/package-json/node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -26166,20 +26160,37 @@ } }, "node_modules/replace-in-file": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-8.2.0.tgz", - "integrity": "sha512-hMsQtdYHwWviQT5ZbNsgfu0WuCiNlcUSnnD+aHAL081kbU9dPkPocDaHlDvAHKydTWWpx1apfcEcmvIyQk3CpQ==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-7.2.0.tgz", + "integrity": "sha512-CiLXVop3o8/h2Kd1PwKPPimmS9wUV0Ki6Fl8+1ITD35nB3Gl/PrW5IONpTE0AXk0z4v8WYcpEpdeZqMXvSnWpg==", "dev": true, + "license": "MIT", "dependencies": { - "chalk": "^5.3.0", - "glob": "^10.4.2", + "chalk": "^4.1.2", + "glob": "^8.1.0", "yargs": "^17.7.2" }, "bin": { "replace-in-file": "bin/cli.js" }, "engines": { - "node": ">=18" + "node": ">=10" + } + }, + "node_modules/replace-in-file/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==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/replace-in-file/node_modules/brace-expansion": { @@ -26187,70 +26198,103 @@ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/replace-in-file/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/replace-in-file/node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "node_modules/replace-in-file/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==", "dev": true, + "license": "MIT", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "color-name": "~1.1.4" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": ">=7.0.0" } }, - "node_modules/replace-in-file/node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "node_modules/replace-in-file/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==", + "dev": true, + "license": "MIT" + }, + "node_modules/replace-in-file/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { - "@isaacs/cliui": "^8.0.2" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/replace-in-file/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" } }, "node_modules/replace-in-file/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, + "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=10" + } + }, + "node_modules/replace-in-file/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": ">=8" } }, "node_modules/request": { @@ -48098,12 +48142,6 @@ } } }, - "package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "dev": true - }, "pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", @@ -50439,16 +50477,25 @@ "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==" }, "replace-in-file": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-8.2.0.tgz", - "integrity": "sha512-hMsQtdYHwWviQT5ZbNsgfu0WuCiNlcUSnnD+aHAL081kbU9dPkPocDaHlDvAHKydTWWpx1apfcEcmvIyQk3CpQ==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/replace-in-file/-/replace-in-file-7.2.0.tgz", + "integrity": "sha512-CiLXVop3o8/h2Kd1PwKPPimmS9wUV0Ki6Fl8+1ITD35nB3Gl/PrW5IONpTE0AXk0z4v8WYcpEpdeZqMXvSnWpg==", "dev": true, "requires": { - "chalk": "^5.3.0", - "glob": "^10.4.2", + "chalk": "^4.1.2", + "glob": "^8.1.0", "yargs": "^17.7.2" }, "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -50459,43 +50506,66 @@ } }, "chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } }, - "glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "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==", "dev": true, "requires": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" + "color-name": "~1.1.4" } }, - "jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "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==", + "dev": true + }, + "glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", "dev": true, "requires": { - "@isaacs/cliui": "^8.0.2", - "@pkgjs/parseargs": "^0.11.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" } }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, "minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dev": true, "requires": { "brace-expansion": "^2.0.1" } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, diff --git a/package.json b/package.json index fbc6840b35..0bc82be266 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "lint-staged": "^14.0.1", "playwright": "^1.49.0", "prettier": "3.3.3", - "replace-in-file": "^8.2.0", + "replace-in-file": "^7.2.0", "swc-loader": "^0.2.3" }, "lint-staged": { From 381b366b0b05ee5a142c642c2c19906e22cad775 Mon Sep 17 00:00:00 2001 From: Cole Isaac <82131455+conceptualshark@users.noreply.github.com> Date: Tue, 10 Dec 2024 12:30:50 -0500 Subject: [PATCH 15/26] remove the enterprise limitation fron console config docs (#4733) --- docs/self-managed/console-deployment/configuration.md | 4 ---- .../self-managed/console-deployment/configuration.md | 4 ---- 2 files changed, 8 deletions(-) diff --git a/docs/self-managed/console-deployment/configuration.md b/docs/self-managed/console-deployment/configuration.md index 4911a26d87..8bfa775bf1 100644 --- a/docs/self-managed/console-deployment/configuration.md +++ b/docs/self-managed/console-deployment/configuration.md @@ -5,10 +5,6 @@ sidebar_label: "Configuration" description: "Read details on the configuration variables of Console Self-Managed." --- -:::note -Console Self-Managed is available only to [Enterprise customers](/reference/licenses.md#console). -::: - Console Self-Managed can be configured using environment variables and configuration parameters. :::note diff --git a/versioned_docs/version-8.6/self-managed/console-deployment/configuration.md b/versioned_docs/version-8.6/self-managed/console-deployment/configuration.md index 4911a26d87..8bfa775bf1 100644 --- a/versioned_docs/version-8.6/self-managed/console-deployment/configuration.md +++ b/versioned_docs/version-8.6/self-managed/console-deployment/configuration.md @@ -5,10 +5,6 @@ sidebar_label: "Configuration" description: "Read details on the configuration variables of Console Self-Managed." --- -:::note -Console Self-Managed is available only to [Enterprise customers](/reference/licenses.md#console). -::: - Console Self-Managed can be configured using environment variables and configuration parameters. :::note From 6088f251bb296ae951428999bbdf9b5195abc726 Mon Sep 17 00:00:00 2001 From: Mark Sellings Date: Wed, 11 Dec 2024 12:49:00 +0000 Subject: [PATCH 16/26] DO NOT MERGE Bug notification for Operate login issue in alpha-2 (#4749) * Create draft * Initial draft * Add Slack changes * Edits * Edits --- docs/reference/release-notes/870.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/reference/release-notes/870.md b/docs/reference/release-notes/870.md index f584b74c8f..3771a030c7 100644 --- a/docs/reference/release-notes/870.md +++ b/docs/reference/release-notes/870.md @@ -21,10 +21,18 @@ These release notes identify the new features included in 8.7, including [alpha ## 8.7.0-alpha2 -| Release date | Changelog(s) | Blog | -| :--------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------ | +| Release date | Changelog(s) | Blog | +| :--------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------ | | 10 December 2024 |
  • [ Camunda 8 core ](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2)
  • [ Connectors ](https://github.com/camunda/connectors/releases/tag/8.7.0-alpha2.1)
| [Release blog](https://camunda.com/blog/2024/12/camunda-alpha-release-december-2024/) | + + +:::caution + +This [alpha release](/reference/release-policy.md) contains a known issue where Self-Managed customers using the 8.7.0-alpha2 Helm Chart cannot login to Operate. This issue is due to key architecture refactoring and improvements, and will be resolved in the next release. + +::: + ### Camunda 8 REST API Query API API From cdac6043b94ea72d11ba13f8219428c4c6bb2095 Mon Sep 17 00:00:00 2001 From: Jonathan Lukas Date: Wed, 11 Dec 2024 17:58:24 +0100 Subject: [PATCH 17/26] Update operate-openapi.yaml (#4736) --- api/operate/operate-openapi.yaml | 15 +++++++-------- .../operate-api/specifications/by-id.api.mdx | 2 +- .../operate-api/specifications/by-key-1.api.mdx | 4 ++-- .../operate-api/specifications/by-key-2.api.mdx | 4 ++-- .../operate-api/specifications/by-key-3.api.mdx | 4 ++-- .../operate-api/specifications/by-key-4.api.mdx | 2 +- .../operate-api/specifications/by-key-5.api.mdx | 2 +- .../operate-api/specifications/by-key-6.api.mdx | 2 +- .../operate-api/specifications/by-key.api.mdx | 2 +- .../operate-api/specifications/delete.api.mdx | 2 +- .../specifications/get-statistics.api.mdx | 2 +- .../operate-api/specifications/search-1.api.mdx | 8 ++++---- .../operate-api/specifications/search-2.api.mdx | 8 ++++---- .../operate-api/specifications/search-3.api.mdx | 8 ++++---- .../operate-api/specifications/search-4.api.mdx | 4 ++-- .../operate-api/specifications/search-5.api.mdx | 4 ++-- .../operate-api/specifications/search-6.api.mdx | 4 ++-- .../operate-api/specifications/search-7.api.mdx | 4 ++-- .../operate-api/specifications/search.api.mdx | 4 ++-- .../specifications/sequence-flows-by-key.api.mdx | 2 +- .../specifications/xml-by-key-1.api.mdx | 2 +- .../operate-api/specifications/xml-by-key.api.mdx | 2 +- .../operate-api/specifications/by-id.api.mdx | 4 ++-- .../operate-api/specifications/by-key-1.api.mdx | 6 +++--- .../operate-api/specifications/by-key-2.api.mdx | 6 +++--- .../operate-api/specifications/by-key-3.api.mdx | 6 +++--- .../operate-api/specifications/by-key-4.api.mdx | 4 ++-- .../operate-api/specifications/by-key-5.api.mdx | 4 ++-- .../operate-api/specifications/by-key-6.api.mdx | 4 ++-- .../operate-api/specifications/by-key.api.mdx | 4 ++-- .../operate-api/specifications/delete.api.mdx | 4 ++-- .../specifications/get-statistics.api.mdx | 4 ++-- .../operate-api/specifications/search-1.api.mdx | 10 +++++----- .../operate-api/specifications/search-2.api.mdx | 10 +++++----- .../operate-api/specifications/search-3.api.mdx | 10 +++++----- .../operate-api/specifications/search-4.api.mdx | 6 +++--- .../operate-api/specifications/search-5.api.mdx | 6 +++--- .../operate-api/specifications/search-6.api.mdx | 6 +++--- .../operate-api/specifications/search-7.api.mdx | 6 +++--- .../operate-api/specifications/search.api.mdx | 6 +++--- .../specifications/sequence-flows-by-key.api.mdx | 4 ++-- .../specifications/xml-by-key-1.api.mdx | 4 ++-- .../operate-api/specifications/xml-by-key.api.mdx | 4 ++-- 43 files changed, 104 insertions(+), 105 deletions(-) diff --git a/api/operate/operate-openapi.yaml b/api/operate/operate-openapi.yaml index 2ef6348a54..823e724801 100644 --- a/api/operate/operate-openapi.yaml +++ b/api/operate/operate-openapi.yaml @@ -84,7 +84,6 @@ paths: searchAfter: - small - 9007199254741200 - required: true responses: "200": description: Success @@ -168,7 +167,6 @@ paths: sort: - field: bpmnProcessId order: ASC - required: true responses: "200": description: Success @@ -261,7 +259,6 @@ paths: sort: - field: bpmnProcessId order: ASC - required: true responses: "200": description: Success @@ -362,7 +359,6 @@ paths: searchAfter: - 1646904085499 - 9007199254743288 - required: true responses: "200": description: Success @@ -459,7 +455,6 @@ paths: searchAfter: - 1646904085499 - 9007199254743288 - required: true responses: "200": description: Success @@ -553,7 +548,6 @@ paths: sort: - field: decisionRequirementsId order: ASC - required: true responses: "200": description: Success @@ -645,7 +639,6 @@ paths: sort: - field: decisionId order: ASC - required: true responses: "200": description: Success @@ -737,7 +730,6 @@ paths: sort: - field: decisionId order: ASC - required: true responses: "200": description: Success @@ -1483,6 +1475,8 @@ components: processVersion: type: integer format: int32 + processVersionTag: + type: string bpmnProcessId: type: string parentKey: @@ -1501,6 +1495,8 @@ components: - ACTIVE - COMPLETED - CANCELED + incident: + type: boolean processDefinitionKey: type: integer format: int64 @@ -1549,6 +1545,8 @@ components: version: type: integer format: int32 + versionTag: + type: string bpmnProcessId: type: string tenantId: @@ -1602,6 +1600,7 @@ components: - UNKNOWN - IO_MAPPING_ERROR - JOB_NO_RETRIES + - EXECUTION_LISTENER_NO_RETRIES - CONDITION_ERROR - EXTRACT_VALUE_ERROR - CALLED_ELEMENT_ERROR diff --git a/docs/apis-tools/operate-api/specifications/by-id.api.mdx b/docs/apis-tools/operate-api/specifications/by-id.api.mdx index eef02cea21..5bd23389b1 100644 --- a/docs/apis-tools/operate-api/specifications/by-id.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-id.api.mdx @@ -5,7 +5,7 @@ description: "Get decision instance by id" sidebar_label: "Get decision instance by id" hide_title: true hide_table_of_contents: true -api: eJzlV1tv2zYU/isCn7bOiZw2HQpjGOAuSqHVsI3YaQcEQUFLxzEbidRIyqkh6L/vHOpix5a9bE8b+iSK537Vp4JZ/mDY4I5dQSSMUDKUxnIZAbvvMZWB5pYuYzZgiw0+eizjmqdgQZNYwSS+IFEQSUg8Zdyu8ByDibTISBovw9hTSy+ubXiiMdJjGv7MhQY0YHUOPWaiFaScDQpmNxlpNlYL+cDK8p6YTaakAUP01/0+PZ4bmuVRBMag4khJC9ISC8+yREQuEv+rIb7i0I5afIXIUoCa4raisoKBHfrSY4+w2bkXaOoBNAovlU65ra5+viROjNTCoY4eA5mnlPnrYTgKrvAi+DQc3Q7n7nw7/jiefB6702wa/BZeh3h/j/pgzZPcxXLVqfgZyzUXSa67uTBOStUVLIUUxPzxxTHVok2vvFyw6YCwO6sNeevT3zCOXfedYPiEfSqqip90783rXam5Yz1esissyCycjL/Mh+9HARJG4Ty4GY6+BH9Mb4IZkfYqt60o1RD7OE/sqdpBHMost2aHh2vNNzRlFlLzrxtXHssY2e2iIMkKm9DV/o5wLjqO1utJbv8bbmOS8wSOtI8jyRi+vagvTmSgCrdiAcml7TR4QgESiXzZtctCicGJ2KMVCcYe32mYwUUC6U//dLfRasrNC2cjxYHnD92pbvd5F9F2DtNuUgKtlW4z8eYwE9dKL0Qcg3yeg1f+q/9/uJeH4d5UBQcqvVG5jsCTynpLlcv4++iCt13zMJyG3k7AHjiB7yAfhCIgyrWwG4e5FsA16DOHQe7we1JgCtSjAPd2v4+9PoA9RF7eYuM5zIZQbqUI3j2ASwWhtwHz1xd+I3PWyBi/EHHJyBm9bvBfrhPkL6rklgPfL1bK2HJQZEpbYl5zLTgWwmWUaFVhl9x9AVmiIp64632/5yvwiECrn9CjxXdqgcr6ucMhaOO5unf9d/1OTcR6RMu2MbZ6VtZmnXoq5k5NDqI2hZoRXxV0U5ztJzETBJmarxqbTBE8zIOzWQsdHJKu5dDD3YK3WmoXnUP0XjGxhvu66dXfP89dXwm5VE687q+JQ/fgTfMFzgyFchiw8rjD0/iwYg0el7EXqTRLgLZTDQPbpqKT16jFWfFShShOUWc7SatVTp2wUspWgIpGF1WTW1UjUVAGu+jp6ek84ikuPH6OBikJ6CQg9ifeOm+j+qa3JxyryLTSQrl3X8MSNKCXfq3I+A4/NACRXZz3z/tVVxmbcrlj6PQIPctZWx4L36yfJRxLWdYOFvV43bH1Bduize2A4eUAVWIbVYNyx4piwQ3c6qQs6Rq/C9oN/Xau3BTGwtAZ53jJEwMHPrUrkv1wU/9w/egd/ynrDKFpXrlhLexirP4VItxWErRdAY+xC8mpijDEBsrsjsjB3xiNTbuGPgRz5OU55anN5V5rO+2d7vzy3jF4c/UI8tfWOUuv5F9Z/gXHqxkU +api: eJzlV21v2zYQ/ivCfVo7JXLadCiEYoBbK4VWwwlipx0QBAVNnWM2EqmSlFND0H8fjnqxY8tetk8b+skS74V3z734UQmW3RsIb2GEXBihZCyNZZIj3PmgctTM0mECIczXcQI+5EyzDC1qMitBsgwhBEEiISGEnNkl+JCg4VrkZA0hxImnFl7S3OGJ9hIfNH4vhMYEQqsL9MHwJWYMwhLsOifPxmoh76Gq7kjZ5EoaNCR/NRjQz9OLpgXnaAz4wJW0KC2psDxPBXeZBN8M6ZX796j5N+SWEtSUtxX1LSLpicWHB1xvnQtp8R41+LBQOmO2PvrtnDSNZRb3ffiAssgI+YthPI5G4EP0eTi+Gc7c883k0+Tyy8Q9Ta+iD/FFHI3grvIBVywtXC6jXsdPVC6YSAvdr5VrRVCNcCGkIOVPz86pMW175fmGbQfE/ai24k1Mf6M4cd13ROEzaiPqih8N7/WrbauZUz1cslH0IZ7Gl5Ovs+H7cQQ+jONZdD0cf43+vLqOpiTaqdymolRDjaZI7bHaYRLLvLBmS4dpzdY0ZRYz868bVx5CjO7tk1Q+WGFTOtrdES5Ep9FFfVnY/0bYPugixQPt40QywR/P6osjCNTp1ioombS9Fx5xAFVF4vO+XRbLFUtF4tGKRGMP77Rcq3mK2a//dLfRairMM2cjQ2PYfT/U3T7vE9reYdoGJdJa6Q6J1/tIXCg9F0mC8ikGL4OX//90z/fTva4LjlR6owrN0ZPKegtVyOTn6II3ffMwvIq9rYQ9dAY/AR7EIpAXWti141xzZBr1ieMgt3eVXwJX6kGge7vb5V4f0e4zL2++9hxny9AuFdG7e3RQEHsLIVidBa3NSWtjglIkFVAwetXyv0KnEEJZg1uFQVAulbFVWOZKW1JeMS3YPK2xJVld2AVz/4CQKs5Sd7wb92yJHglo9RN7tEv0qAXq208dD1F6x93bwdtBrydSPeBl0xgbP0tr814/tXKvJ0dR20JNSa9Oui3O5i8xF0SZ2n81uLyKroez6GTaUQfHpBu7yn9S8M5LE6ILiN5rJWi1L9pe/ePLzPWVkAvlzJv+unTsHr2rYp4KTqnsJ6w85vi0x7gVK/SYTDyusjxF2k4NDeyaip681u1CaS9TUlhFne0srVYFdcJSKVsTKhpdxl0N60aipEwYBI+Pj6ecZYVM2ClXGYGQCo7SOBwb3MbNib9jnChuOmuh3HugcYEaJcegcWQCxx9agghnp4PTQd1VxmZMbl10fISeYNaVx+IPG+QpE5J8ugDLZrxuYXUGG7a5GTDwIRQJfXrVg3ILZTlnBm90WlV0/L1A7YZ+M1duChNh6DmBcMFSg3sxdSsSfrluPrheeIc/ynpTaJtXrqGjXQDNpxDxtoqo7RJZgtoFVQuGnGNut0z2vsZobLo19DGagQ+sIJw6LHda23nvDefde6fgzdQDyt+74Cy9UnxV9RfHqxkU sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx index 79260b9703..3975e1c853 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-1.api.mdx @@ -5,7 +5,7 @@ description: "Get process instance by key" sidebar_label: "Get process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVllv4zYQ/isEn/ZwLGc3LRZGsYA3cRZu0sSI3e1DEBSUNLa5kUiVpJwagv57Z6jDjq0E3sdi/WDxmHu+4UzBnVhaPrznU6MjsHairBMqAv7Q4zoDI5zUahLzIQ83V7D5+5T3eCaMSMGBIcaCK9zg/SNs8E4qXGbCrXAdg42MzEgCHiI30wuWVXqYbBT1uIF/cmkAlTiTQ4/baAWp4MOCu01GoqVysASDpAttUuGqo1/PeFk+ELvNtLJgiePDYECf56pneUQ6kT/SKEo5IhFZlsjI+xd8t0RXHGrW4XeIHPlsKBpOVlrI12PM83yk+hsGS1Y6XmX6+IGYwixVTT7iHR7rjFRLL1YYdOPqeDM8/WWin250DE2Sj+dHeuMuhINOa0DFL94hZ9cNMeUpAW90Pp98G+PB+e0f0+vxfHxB69HN+fgalw/bGF7AQipJ+Trebky2UO7VIO4B38vmkTRRngjzZu/2rRcqXUKS9kumxF+Pn3UhcKLWIpExI6iDdS8jEX0NE0jf/ygiKcy5PRJfKVotlt35auuy67I6OLjYicnYGG3aSHw8jMSlNqGMY1DPY/AuePf/d/fs0N27KuFAqbc6NxEwpR1b6FzFPwcKfumqh9F0wnYcZuAZfoJ40IsIUW6k2/jmGQI+QubEN5R7fOwKDIF+lOB3D/s99Cu4gwbKwg2rei/25JWmVr0EHwrqwkMerE+Dmuek4bFBgSwlJ2PMumnkuUmQvqiCWw6DoFhp68phkWnjiHgtjBSYCB9RuqsSuxB5QpFMdCQSf7xv93wFjC5oVKAhwOGeIFBp7/vHGHU8F/dp8GnQKYlIX5CyBcZWzsq5rFNORdwpyQ8WTaJmRFc53SSnTbbI5JUPfj0F3U7Hd6P5+GQ2ns0mtzfNRFTzUW/fSXgrpTbRG0T7iog31JcNVn//a+5xJdVCe/YaX7d+UgM2zUOsGXLl0GHNhJ+C8OPkGphQMYt0miVAr9M+qmjFGrFYKyzV2Hs1IdtzOqNzQsJKa1f1cypdFE1mVUAipyyi6OnpqR+JFB880UeFFAQ0EnBiI9o6btf1SW+POdaRbbml9vvAwAKwdUcQ1IJsQFLXzZDFT/uD/qBClXWpUDuKXi+hZzFr0+PgXxdkicBUlrWBRV1e93x9ytsRZVtgeDYkkQijqlDueVGEwsKfJilLOsa+YHzRb+vKV2EsLa2xjhcisXBgU/tE8jd39eD8lr08XHe60IBXbXxVJzntcOlR6f9LGrxWIGKEIVlV3YwQQZnb4TkYoqlu2nfo63iOtCKnQLXB3MO2l95pz29fPAGb60dQn1vrHG3JvrL8DzUuW/w= +api: eJzlVt9v2zYQ/leIe2o7JXLabiiEYUCWOIWXNAkSr3sIjIGizjYbiVTJkzND0P8+HCU5jq0E2ePQF1sS77uf3/GuBpILD8kdXDur0PuJ8SSNQphFYEt0krQ1kwwSSNfnuP77CCIopZMFEjoG1mBkgZDAPa4hAm0ggVLSEiLI0CunS9YACZzjWti5KFs7QveGInD4vdIOM0jIVRiBV0ssJCQ10Lpk1doQLtBBBHPrCkntp18+QtPMGO5Lazx6RrwfjfjvqenbSrFNiEBZQ2iIRWRZ5lqF+OJvnuXqfcs2/YaKOGbH2SDdWuFYX+NewLHpr+i8bm28CPrwfh80lYstnCenzYKl0rIwfdWyQYlSOjR0/npng/xZbh8ubYY9FV6P9yQdnUrCQW/QZM+eeRo8YVBVMD2PT6aTr2OI4OTqy/XFeDo+5efjy5PxxfgUZg0zT+msq22nJbU2R2m2UnqKc2001/z1UREaaejFFO80T9ANSjtV5dK92Tl9G5RqylnTbts1TdNE8HGIxROzkrnOBLcLenqezaWzaY7FT/+V1VyEyr+SowV6LxfD1dz09tBh+2HvYCsnY+es22Tiw34mzqxLdZaheZqDd/G7/3+4H/fDvWkLjlx6byunUBhLYm4rk/0YLPh5qB+OrydiK2CBAfAD5IPvS1SV07QOAzhF6dAdhKF0N2uiGpS19xrD22x3Dn9G2hvCIl2Ldn4XSEvL436BIRU8yROIV0dxhznoMT6u73HdADvjVv0yULkcEqjb5DZJHNdL66lJ6tI6YuGVdFqmeZtbPmsLO5dVzpnMrZJ5+Lzr93SJgg943eBFgpYomAKt9cNwGVu3o+7T6NNoUBOLPqPlkRiPepZE5aCeVnhQU1hO+kLdslwbdF+cTbFlqc9D8rtN6up6fHM8HR/cjm9vJ1eX/VbV4XjybxV8o6VzMTgUhl8Qgl76rOfqH39NA6+0mdsA7/h1FbY9FNdVmmvFoewHbIUMm5SQivQKhTSZULYoc+TbaZdV/CR6tXPrRGGNJsvMDkhytmImLK2ldtpz60oVatgSiYPySRw/PDwcKllUJpOHyhachFwrND7kscvbRfcl2gFnVvkNWtvwHjuco0OjMO4U+Zi1rvpFDY4OR4ejllWeCmm2DL3cQk9ytikP4T8Ul7nUYR0JDtZde93B6gg2K8pjg0EECaucRV2j3EFdp9Ljny5vGv78vUIXmv6xr0IXZtrzcwbJXOYe93zaXJHw5qZbvt+K5xf0wRB68pp16Oq84jeI2t04/Da8li1RZuiCV+3JsVJY0hZmbxHnvtncQ5/HU4hAVpyox8XuKbeD9kF/fv09CIipvUfz28Y74lf2r2n+BXkpdA4= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -40,7 +40,7 @@ Get process instance by key Success -
Schema
+
Schema
Invalid request diff --git a/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx index e2d2de9146..39f7967ede 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-2.api.mdx @@ -5,7 +5,7 @@ description: "Get process definition by key" sidebar_label: "Get process definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVltv0zAU/iuWn7h0TTcGmiqENESHBohNaxEP04Sc5LT1ltjBdjqqKP+dc+wkXdsw4BHx0sY+9+/cXHEnFpaPr/ml0QlY+w7mUkknteI3A64LMIIO5ykf83j9EdbfjviAF8KIHBwYEq24wgPS72CNNKnwsxBuid8p2MTIwqsbc5Rmes6KYImlG1MDbuB7KQ2gGWdKGHCbLCEXfFxxty5IuVQOFmCQda5NLly4enXM6/qGxG2hlQVLEkejEf1tG5+WCVlF+USjKuWIRRRFJhMfYXRria/at6zjW0gcRW0IDyeDFYr2T9wbNPB0rNYZqRZEWCGAMlh9VM2LI+KOi1w1WaJ09OjDsIRyvUSiSpfR1X6m65rox32wnauVyGTKKD9g3a/hQ3DiDPLnfwujdcKV9g8hyNFvsegHUypUpZJ+Yrh4DJWJMdp0SLzYR+JMm1imKahtDJ5Fz/79cI/3w70KCQdKvdWlSYAp7dhclyr9P6rgZV8/nF6eswcBM/AC/wEeeGkhKY10az/zYxAGzIGfgtc39aBCCPSdBH+62R3978H1zH0Wr1lYGrhMlpp2zAI8GLQ+xjxaHUaN1MFGykYVCtWcHDKrdgeVJkOJKgBcj6OoWmrr6nFVaOOIeSWMFJgMjyrRQnLnoswIzUwnIvPXu77PlsCIQGOc9pfDM5VBsD4kIMnGtrqT0cmoVxOx/kLLpjg2epbOFb16AnOvJr8R22RNiS8E3SaoS7go5EcPf7PALy4nV6ezycF0Mp2eX3xul3kjRyvoQdI7LY2L3iE6Bybecp+19frh68zXllRz7cWbGrvwjwxgl2WMfUOh7AesmfDrG/+cXAETKmWJzosMaEK1ldUWO32xVi32C8s1lo6m6vaSzuiSKmGptaOKD+2LqsmtUEgUlMUqur+/HyYix6EnhmiQQEAnAZ8axNvg9qm5GewIpzqxnbTU/hwZmIMB9DJqFNlo6y3AD4ej4ShUlXW5UA8M/a6NtlDrEuTgh4uKTGAy68bFqmmxa746DMNnt8nwdkxKsZRCs1zzqoqFhS8mq2u6xv1gfPNvest3YiotfWM3z0VmYc+rblTyJ1fNq+8pe+xt2BtGW8Jq7Xs7K+mEn742/W+NU4kvQaRYjORXoJxiHRXugczeG5C6p5tH7ycz5BUlgdUBulPhXnuvP6/fegY203eg3nTeOTqSf3X9Ez6D8Xg= +api: eJzlVt9v4zYM/lcEPm03N0573XAwhgEdljt0HdaiybCHIhhkmY51tSWfJKcLDP/vAyXb+eXrbo/DvSSWRH4kP5KiWnB8YyF5ggejBVr7C+ZSSSe1gnUEukbDaXGbQQLp7g53f11BBDU3vEKHhlRbULxCSOAZdxCBVJBAzV0BEWRohZG1h0vgDndM56wOlli2NxWBwU+NNJhB4kyDEVhRYMUhacHtagKXyuEGDUSQa1NxF7Z+uIauW5O6rbWyaEnjaj6nv2Pjy0aQVYhAaOVQORLhdV1K4SOMP1qSa88t6/QjCkdRG+LDyWCFov0S96KenlHUOiPVhg62aKwMVl+FeXt1IL3im0mwtK5Un0TK1oSEQ8WVmzykU+lK2jovhK6j8+spVm/VlpcyY5Q+tO7z7NZGpyVW3/1Xlq3jrrFfyFCF1vLNNNdSWceVmD4MG6+xsjBGm5GJt+dMvNcmlVmG6piDN/Gb/3+41+fhPoaEI6Xe6sYIZEo7lutGZV9HFXw/1Q83D7fsIGCGXuEr4KOLwKJojHQ7PxJS5AbNhb8kn9Zd1ILQ+lmiX61PJ8MHdBNjgaU7FmZKha7QNII26Mmg6ZJAvL2Me62LvZaN22fcdUAOme0wohpTQgJtILhL4rgttHVd0tbaOBLeciN5WgZ+6SwkN+dNSWyWWvDSb5/6viqQ0QHd8jTeXIGMyiBYnxGRZOMY7t383XwSiUQ/g7Ivjj1O4Vw9iROEJ5H8wByStSS5EPSQoDHhvJZ3nv5+vt8/LB5vVouL5WK5vL3/fZj1vR6NoIOkjyi9i94hWgchGKTfD/X6658rX1tS5dqr9zV2798gyB6atJSCQjkPWDPupzvjwsktMq4yJnRVl0g31FBZQ7HTFxtgc21YpZV0mqrbazqjG6qEQmtHFR/alwufw1BIFJRN4vjl5WUmeNWojM+EroiEUgpU1vPY8/ZbvxOdKGda2FFbar+ODeZoUAmMeyAbHz0V4HI2n81DVVlXcXVg6N/a6Ii1MUEO/3ZxXXKpCNW72PYt9gTby3D5nDYZRJAQ6Drqm+UJ2jblFv8wZdfR9qcGjW/+fW/5Tsykpe8MkpyXFs+8Gq9K+OaxfxR+y157Ok6GMZSw2vneLhtaQRRebf63W3cRFMgzNN6vcHIjBNbuQOfsiUjdM95HHxYriIA3RNZI6EmFe/RJf3782QuwlX5G9dPonaMl+dd1/wB6G/xX sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -40,7 +40,7 @@ Get process definition by key Success -
Schema
+
Schema
Invalid request diff --git a/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx index 15e65cd3da..8e4bbe0400 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-3.api.mdx @@ -5,7 +5,7 @@ description: "Get incident by key" sidebar_label: "Get incident by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/isCP61dGjtNNhTGMMCNFU+NIxmynRYLAoOWzzETWdRIypkh6L/3jnqJE6tr83HoF5s63utzd7zLmeF3mvVumJdEYgmJYbdHTKaguBEy8Zasxxa7S9jNT9kRS7niGzCgSCJnCX7g/QPs8E4keEy5WeN5CTpSIiUNSERpR64cURs4Ygr+yYQCVG5UBkdMR2vYcNbLmdmlpFIkBu5AIetKqg03Jen3M1YUtySuU5lo0CTxvtulv+cmJ1kUgdYoH0lUhUaRhadpLCIbV+deE19+aFku7iEiH1NFKBhRWqEYf8Q9K0emB7ASiSBbl68V9RJteBLBjwuWLA2rNkokd8gJSbah3M78ydg99y48d4DUmX/pB599PHnB/Ko/Hnv+cO6GYRAi6VPwce4H89Cdhp47QcJ54A+8qRf4DYv7ZRr2z6fz6/5o5jbU8/5o5A7m7si9cv1pQ575f/X9gb0hyty9xlukX7mTSX/ozife36jjy7nrDqxzlZoBujvZN/pEILP9Zw5dBOEVOj2dXwQzf8BuEZEN4sjvWkDBu0iBLYKp2LQzIPzmP/HE6L1rl6LwhmF/ah0P3UkwurbHsYuQ+UPryL1cvCKPkPDEUNMdeEW3wsREajq1KIh81tYAXrLlsVg61GmgzbcbAWtuEcPm19c2BGGU6e/GdfqefScboqr21sv2wt4Hw1VKqgaJ00MkLqRaiCXi9RyDt523//9wzw7DDcuEA6Vey0xF4CTSOCuZJcufowp+a+uH/thz9gJ2wAr8BHjQcwZRpoTZ2Zm9AK5AvbPz7AYfqBwhkA8C7Nfty9E9BNPMbWexc8pRjyvAWtJmcAcWAhr6PdbZnnRqXt3JkbVgZFxt630hUzHy5SWYRa/TyddSm6KXp1IZYt5yJTgCbxGkuzKRK57FhFwsIx5b8ks/p2tw6II2Eto1DH5Tykvrx3a4oo3n6j50P3RbNRHrN7Q8FcKTnrUxaauekrlVk91j6sRMiK8Muk5Gk1yeiksLerVsBWOXJs67Cc5PnIH14lXJoYf7CW60VC5ah+i7ZGI190Vdm58+T20diWQlrXhVT4FdCMEZZwvsEQrlMGDpcLt04Z8RW3B4snQiuUljoNeo2m2curDp5NRqsTecjcR1SVIlW0mjZEaVsJbSlMOXWhVVk1tlIVFQGqvo8fHxOOIbfOD4MRokENBJwAWReCvcRhXl6IXwUka6kRbSfncUrEABetmpFOkOaaVCLoM9Oe4ed8uq0mbDkz1D7S3zDKsmLQb+NZ005pjConIsr9rphm1PbHKrhsJzj1Rh2ZSNccPyfME1zFRcFETGd1/Zpn7qI9t1S6HpjP264rGGA1+aJ5D9ElZ7+RvncGdvdbku0mRnuzfO6AuPtvrsb0FL0Br4EsuNvClv+lgpqdmTOdjNqT+ad2bo0srIMwKmAe9FDVvtrf788dEyOFP5AMmfjXeGPsm/ovgKBVte4w== +api: eJzlVm1v2zYQ/ivCfdo6NUr6MhTCMMC1mUyNIxu2nAYLAoGWzjEbiVRJKp1h6L8PR8nKi921/Tj0iy0d7/W5O/HZguW3BsJriGQmcpQWbnxQFWpuhZJRDiEsN+e4SV+DDxXXvESLmiy2IHmJEMIdbsAHISGEits1+JCjybSoyAOEcI4bT608sQvgg8bPtdCYQ2h1jT6YbI0lh3ALdlORSyEt3qIGH1ZKl9y2ot/fQNPckLmplDRoyOLV8TH9PQ05r7MMjQEfMiUtBQ23wKuqEJmrK/hkSG+7H1ktP2FGOVaaULCijUI1fk96zo5Cj3AlpKBY5z9qGkljuczw+w1blV7VWC3kLfiAsi6pt4t4PmXD6DRiI/BhEZ/Hk48x+BBN0ovBdBrFZymbzSYz8OHD5H0aT9IZS2YRm4MP7IoNF0k0idNxNE9YzGZPz4eTeBS5850LdpXMBsMkvRyMF6yXDgfjMRulbMwuWJz04kX81yAeuROSpOySxQn4cMHm88EZS+fR3yxlV0PGRi75zs2IDaP546APAgo7eJLQ6WR2kcaTJD2dLOIR3DQ+lGgMvz0AWuNDptENSSLKwwrGcvufeA+GSXTJqIrobDZIXOIzNp+ML93jlMWjKD5ziXxSyx/oM0ouLS3lXlZ0KmxBon6Tm4bEbw4tSCTveSFyjzYRjf36olRaLQssf/vRhSGMavPNul6/gm90Q3TbcPDw8OA/BoNprXSPxOt9JE6VXoo8R/kUgxfBi/9/uW/2y521DUdqvVG1ztCTynorVcv855iCt4f2YTCNvEcFe+gMfgI86HOGWa2F3bg7fYlco37p7rvrm8bfQqbUnUD3dvP8aj9D29/r3nLjtVSgRLtWxBxu0UFApCCE4P4k2OmaYHuHmwYouL7f8YlaFxDCtgWzCYNgu1bGNuG2UtqS8j3Xgi+LFks6axu54nVByBUq44UTP88zWaNHB8RYiIvYNXrU8jb6kbt8lX7m7t3xu+ODnkj1K14eBuHBz9ra6qCfVvmgJ8dzdo2Zk15b9K4ZfXN5Jc4d6B0Zm0wZ3Tgv52xO1+GOmHV2jf+kwb2XLkWXEL23SrDTPt3N5oePiZsjIVfKmXfzNHGEEb1pvSxERqXsF6w87kiZxzMr7tHjMvcyVVYF0teo4z7ebrDpydu5XSntlUoKq2iSnaXVqqZJWCtl28uXVpVnroftIFFRJgyCL1++HGW8rGXOjzJVEgiFyFAah2OH27iT+M+Mc5WZ3loo9x5oXKFGmWHQOTIBeaVBbos9OTo+Om6nytiSy0eBDq/ME6z6tlj8xwZVwYUkXy6xbbdO13B/4prbLRT4EJKrG79bjGvYbpfc4EIXTUPizzVqt9QPe+S2LheGnnMIV7wwuJdL/wmEX2Ydb//V2+f0B1PeDancuO0tanoDv6XT7rchErRGnqN22bQngyzDyj6y2ePutB/9d+aMEWXkNQHTg/dshp33g/n88d4peIm6Q/lnn52lV8qvaf4FfTtoRQ== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -37,7 +37,7 @@ Get incident by key Success -
Schema
+
Schema
Invalid request diff --git a/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx index 2d0d3a2952..43f441aff9 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-4.api.mdx @@ -5,7 +5,7 @@ description: "Get flow node instance by key" sidebar_label: "Get flow node instance by key" hide_title: true hide_table_of_contents: true -api: eJzlV1tv4kYU/iuWn9ptEshuWq1QVcmAyboQQ22TdBVFaLCHMBsz447HpMjyf+854wsQnN3sY7UvyZz7Zb4zPuSmIo+p2bs3R7F45iKiDk8V4SE1H85MkVBJFBPcicyeudyN6W5xZZ6ZCZFkQxWVaJmbHAiQP9EdyBiHY0LUGs4RTUPJEvQATLA2xMpYVYEMVkc6MyX9J2OSQhQlM3pmpuGabojZy021S9A344o+UgmqKyE3RJWs367MonhA8zQRPKUpWrzvdvHfcWw/C0OapmAfCnDFFaqQJIlZqAvsfElRLz+NLJZfaKiwaIntUKyMgsW+JT1th6Hrvo6/13BIV4wzTPLtphBKqiFR9EA/VZLxR5RSHr0qw9txEQbRV8WuvvIWBcZDFkF/355rqfLSFWaZbRCYc9ef2QNn5NhD4M686cD2fTj58/5iT9m3thssjnl+YHnBQkuActzA9m7soWMF9mJgBYNP7aLgkze9a0T96dwdWt7nhmG7w+bs296tMwATyx8D6dkD27ltyDmI6/ON5c6tSU1V/+y/B5O5jxbXEPjO+qxTOeXNLM+aTOzJAasst2/59vCA69t/zW0XEhpNpncYdT4JnIXjQiOQ258OUWsAzhbWIHBunQDpPsRzoWMLbz5pkvcHnjMLGgqrrstyx+70zjUfSpy14Wh/eTqMjUGnN7OJHeg7xGY7roXEwwFkDvwshYgp4RoelBOuWuGIUqZiZI1q2NZvSlGg+KrtLXD4lsQsMvDRoal6/U2AAVzGdPPL974N2JUs/Sb8P7zH+jYw4uTxtWGqqmkTts/NYVNsKYVsOvHhtBMjIZcsgt4f9+Bd593/v9yr03K98sIpXn0qMhlSgwtlrETGox8DBb+2zYM1c4yDgg2qDX6AfuADRsNMMrXTe8ySEknluf6038PLlEMLxBOjmnp4uc5cU6V3GeNomTGWO6NchGBBWgvcmx6pbgauRD2zs73s1BvQeW2UdnKwKUzMR27rtSqTMRjkZX+LXqeTr0Wqil6eCKlQeUskI3AXuqkoK+92RbIYmxmLkMSa/TL1YE0NFODihiuZAhpRUEa/0MsHxDh297H7sdvqCVVf8bLHxt7PWqmk1U+p3OpJb3n1XfmoVxZd309z3yRhY939aiedzmwPPjTnPnzfnKlb76eVHWR4eOeNlypFnZD+HGkls9Ye1XD98y7Q0GJ8JbR5BbGp3pupMcuWMDZYymnBwiB6JYV/im2pQXhkhGKTxBQfqGr3a2CFJ6N2C+NibATshALBrS2VFBkiYS2EKr/AOL3gGtMqgYRFpYCi5+fni5Bs4M0jFxAQmwBJUlifUbfq26TinL0wjkSYNtZMaLoj6YpKCll2KkdpB70ikMtiLy+6F90SVanaEH4Q6FtTdNS15oIU/Vd1kpgwvSLoFPNqwu7N7aVZLqrHMwbMHvoEJJWzcm/m+ZKkdC7jokA2fB2kHv39aOlBjFiKZ5jlFYlTepJU81CaP3nVD5mfja/82mktogYw3+nJjjOk4KiRqf8WuCytKYkAiphWKbEARYk6sDn5VYOz0zxG1zYuriTDVu3XrWN8a++t+fze1wpGIJ4o/6PJTiGJ+RXFf+pfx+g= +api: eJzlV1tv2zYU/isCn7ZOjdI2HQphGKDYTKvFlT1JTlYEhkFLxzEbmVRJKplh6L8Ph7rEjp1eHoe+2CLPhefyHerTlhh2q4l/Qy4K+SBkDqHQhokMyMwlsgTFDJcizIlPFptL2MzPiEtKptgaDCi03BLB1kB8cgcb4hIuiE9KZlbEJTnoTPESPRCfXMLGkUtn2R7k8O4klyj4UnEFOfGNqsAlOlvBmhF/S8ymRN9cGLgFRVyylGrNTLP1+xmp6xma61IKDRotXp+e4t/+2UmVZaA1cUkmhQFhUIWVZcEzm6D3WaPe9vBkufgMmcGkFZbD8OYUTPZ7wrN2eHRX18sfNRzCkguOQX6/qTZMmSEzsKOvjeLiFqUg8mdl2J0IYZB/VRzZlh9R4CLjOQjz/bE2Kk9dYZTVGoE5jZIJHYQXIR0Sl0zi8YAmCXFJMj2fP67oFY3S+f5ekgZxOrcS4pIwSmn8kQ7DIKXzQZAOPhwXpR/i8XUvOh9Po2EQf+o3aDTsnxMaX4UDOk+D5JK4JKYDGl71y2lC4+75YxBNg1G3av/oP4PRNEGL90FKr4NPNpTDvUkQB6MRHe1sNemeBwkd7uwm9O8pjQZ0fjEaX+Op01EazsMoSQPcPR8PUWsQjEbzYJCGV2GK6/NpEkY0SebxdNQHnwzicJL2K8y6Syu6jMbXEZk1ODuGo8fm2WMoHjr+OBnR1PYQix1GAS5mO5DZ8bOQsgAmLDxAMGGOwhGl3BS4ddHBtrtT6hrFZ8fuglDcs4LnDl46oM3zd0Kp5KKA9W8/ejdgVSr9Tfi/eY35rUFrdvvcMLXZHBMen5vdolClpOor8eawEhdSLXieg9ivwQvvxf8/3bPDdOOm4YCt17JSGThCGmcpK5H/HCh4e2wegkno7CTsgDX4CeqBFxhkleJmY3nMApgC9dK+2m9mtbslmZR3HOxq9pTOvAdjuYyzR2acxcZpiNAazEoib7oFWwykRD7x7l95HQN62Rlpb3sHm5pgPOq+o1WVKohPtk19a9/ztiupTe1vS6kMKt8zxdmiaMqLsqa3S1YVWMxCZqyw209DT1fgoACJG1IyswIHUdCcfmLJh1RP3L07fXd61BOqPuPlERuPflbGlEf9NMpHPVmW1/UqQb0m6a4/fb9ZyS9t9VtOOp7QOEjpy4QmSTiOOn7a2tXuXs97L22INiD7OrJKpNO+6OD613VqocXFUlrzFmJjy5vBmVSLgmeYymHC0mGWkjosM/weHCZyJ5PrsgC8oFru18MKn5zO7VIqZy0FNxLBbS2NkhUiYSWlad7AOL0ssz1sgIRJad/zHh4eTjK2rkTOTjK5xiIUPAOhbR3buo3aHfeJcS4z3VtzadeegiUoEBl4rSPtoVcEcpPsq5PTk9MGVdqsmdg56FtTtFe1vkEG/jVeWTBuKYINcdtO2A25f0Uaoro/Y8QlPvqcue2s3JDtdsE0TFVR17j9pQJlR/9xtOwg5lzjc078JSs0HATVX5Tkl7j9kPnV+crXztEkOgCLjZ3sosIVcZsPDftbI1laActB2bAaSZBlUJodm4OvGpyd/jJ6T5G4sgpL9Ui39vFtvR+N549zq+Ck8g7En310BpcYX13/B+pfx+g= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx index 3782eb8c1b..1b45702529 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-5.api.mdx @@ -5,7 +5,7 @@ description: "Get decision requirements by key" sidebar_label: "Get decision requirements by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/lcIPq2dazltOhRGMSDD3MLr0ASxhz0EwUBLZ5uNRGrkyakh6H/fHSkpdqx02ePQF1sk7+d33/FYS1QbL6c38ldItdfWXMPflXZQgEEvb0fSluAU0sE8k1O52n+C/V9v5UiWyqkCEBxr19LQgs7vYE9n2tBnqXBL3xn41OmSLdAmaQu7FlnrTLhDbyPZLskTugpG0qdbKJSc1hL3JdvXBmEDjkTX1hUK49ZP57Jpblndl9Z48KzxejLhv2P/iypNwbOr1JIpgyyiyjLXaUgy+eJZrj71bFdfIEVO3DEkqKMXnR3IeHTabGQzCjg8J2rG5xT3+bDRiPHAwY6qoGPc3/T45jVLE0q2cil8fsoc4aIMDgbBpxpz3hokTNOwyPkQ9HOzU7nOQsnB49MlIIBXORQ//tdSeFRY+WeCUBAL1GY4f23IlEmfACdsfAuYmXPW9Ui8OUXig3UrnWVgjjF4mbz8/6d7fprudSw4cOkj84SxKNa2Mtn3wYK3Q/1wcTUXBwkLCArfAR606SGtnMZ9GB0rUA7cq3Bl3tw2o5ogsHcawur28QT5CDg8PsRqL+L4obG0tTytNhDw4EE0lcnuLMlcltQk1EiOwe266VW5nCTqiGkzTZJ6az0207q0Dll4p5xWhH8Aks9iPdeqyhnA3KYqD9uPw11uQfAB3908+ZDWXPnofczYsY9jc+8m7yaDllj0CSsPfHiws0UsB+1E4UFLYZB29VmwXEy6q0lfY1XqTwHudvRfXs2uL5azV4vZYjG//Nw9A1o9ivCwzr2VNsQQEK+jkOykP3QU/e3PZaCTNmsb1FtaXYbnCYirakWtwqmcJmyFClOf/lDvQCiTidQWZQ58KVG7hMOO3/wlOrPUIqKwRqNlQgdNdLZiJmytRSZ57FgyzWFFInFSnlh0f38/TlVB95wak0MGgYIEeqGwbIvb7+3O6JFyZlPfa2sb1omDNTigKJPWkE+OHgDybDwZTyKrPBbKHDh6RuccAdfXCOErJmWuqJ5NG2XddtWN3J2xnuObfMpGiD2xP25kXa+Uhz9c3jS8TVPAhRZ/aKfQfJn2/E0Nu1a5h5Mo+gtR/tC+NbIX4l8ekoORd8Q1+9DRecUr2T7Wwm9D14/cgsqIghxaPLkg9pR4oHPyYOSe6W+dj7MlyaqK8ekxfMTrYH0wnve/BAGxtHdgfu6jQ15yfE3zD5p7AyA= +api: eJzlVt9v2zYQ/leIe9o61XLadCiEYUCKuoWXoQliD3sIjIKmzjYbiVTJkzNB0P8+HPUjdqx06ePQF1sk7767++6OxxpIbj0kt/Aelfbamhv8WmqHORrysIrAFugkaWvmKSSwri6x+vwGIiikkzkSOtauwcgcIYE7rCACbSCBQtIOIkjRK6cLRoAELrESdiPSzphwh9Yi6JYpJORKjMCrHeYSkhqoKhhfG8ItOohgY10uqd369RyaZsXqvrDGo2eNV9Mp/x3bX5RKoWdTyhpCQywiiyLTKgQZf/EsV59atusvqIgDd0wJ6daKTg9kPDltttBEgYfneM38nPI+HwdtOR452KPzuvX7mxZfv2Jph96WTuGnp+AIjTQ06gSfasp4a7RgmoZFzseon5u9zHQaUo6enk5B4ew6w/yX702FJ0mlfyYJOXovt+Pxa+NJGvUEOWHjW8TMnLNuYOL1KRMfrFvrNEVzzMGL+MX/P9zz03Bv2oQjp76tPGEsiY0tTfpjVMGbsX64uJ6Lg4AFBoUfgI8mAo+qdJqqMDrWKB26l+HKvF01UQ3K2juNYbV6PEE+Io2PD7GuRDt+cqSd5Wm1xcAHD6IE4v1ZnLo0ru+waoB9cPt+epUugwTqltMmieN6Zz01SV1YRyy8l07LddZSymdtPjeyzJjAzCqZhe3H7i53KPiA726efLRDwZlvrU+YO7ZxDPd2+nY6isSiT6A81MMDzo6oGMVphUeRwiDt87NguTboPidDjmWhLwPd3ei/up7dXCxnLxezxWJ+9al/BnR6TXSU5wGlczE4xOtWCHrpD32J/vH3MpSTNhsb1LuyugrPExTX5TrTikM5DdgKGaa+kIr0HoU0qVA2LzLkS6lwNhz29c1foofdWCdyazRZLuigSc6WXAk7a4mLvO1YqUIO20LioHwSx/f39xMl89KkcqJsziRkWqHxgceOtz+7neiRcmqVH7S1DevY4QYdGoVxB+TjowcAnE2mk2lbVZ5yaQ4MPaNzjogbckT4D8VFJrVh4OBl3XXVLezPWM/xTZ4wyCrq+uMW6notPf7lsqbh7a8lutDiD+0Umi/Vnr9TSDYy83jixXAhwk/dWyP9WfzHQ3LU875wTRU6Oit5Bd1jLfw2qyaCHcoUXXCtPblQCgs60Dl5MHLPDLfOx9kSIpAl8zNw+KiuA/qoP7+9CwJiae/Q/D54R7xk/5rmX5p7AyA= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx b/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx index fc0487f647..57d1ad2a75 100644 --- a/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key-6.api.mdx @@ -5,7 +5,7 @@ description: "Get decision definition by key" sidebar_label: "Get decision definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v0zAQ/lcsP8Homg4GQhVCGqKgMsSmtcDDNCE3ubZmiR1sp6OK8r9zZydpu2aDPaK9tLF9Pz9/57uSO7GwfHjJ30MsrdTqPcylkg6/+FWP6xyMoMU44UM+W5/C+scr3uO5MCIDB4Z0S65wgefXsMYzqfAzF26J3wnY2Mjcmxty1GZ6zpLaFX60vnrcwK9CGkA/zhTQ4zZeQib4sORunZN1qRwswKDoXJtMuLD16phX1RWp21wrC5Y0ng8G9LfrfVLEMViL+rFGU8qRiMjzVMY+xeinJbly37Oe/YTYUdqGAHEyeJHJlox1RqoFr3oehX+JmtAJQIy7DQVUOw5WiLsMsd7r5cXzbS8XAeAMM7d3eOwSPX1wOtvaX+7KoUv424PywisUynVmQqfSpbTVweuqIoHjLo6M1UqkMmFERrDubq4gE2YpZM8eyhnrhCvsP2aYIV3Fohs/qdCUirsPw8Z9sIyM0aZF4sU+Eh+0mckkAbWLwUF08P+ne7yf7kW4cKCrt7owMTClHZvrQiWPgwUvu+rh5HzMthJm4BUeAR64aSEujHRr3+FmIAyYQ/+2X15VvRIh0NcS/OrqdqP7CK6ry7HZmoUeib1zqamlLsCjQd1yyKPVUdSoHW7UbFSiVsUpJLNqem5hUlQpA8TVMIrKpbauGpa5No6EV8JIgdfhcaWzcL1zUaSEZ6pjkfrt29FPl8DogPoP9WuHayJC8N4nKMnHrrnXg9eDTkskeoeVDT02dpbO5Z12gnCnJT8ANNc1IbmQdHNF7ZWLXJ56/OuB5ex8dHEyHR1ORpPJ+OxLM7zUehjh9rW3VuoQfUC0DkK8kf7QMPbT96lnl1Rz7dVrlp35oQrYeTHDyqFU9hPWTPhpBf+cXAETKmGxzvIU6I3C6vGHDd3pizVmsWJYppE6mvjtNZ3RBTFhqbUjzocCRtMUViASJWWRRTc3N/1YZPjsiT46JBAwSMDJimRr3D7XO71byomObasttV9HBuZgAKOMakM22hli+FF/0B8EVlmXCbXl6K+FtANbe0MOfrsoTwXeZlXHWNZFdslXR3wzfmyXGW4PySqSKZTLJS/LmbDw1aRVRdvYI4x/ADbV5WsxkZa+saDnIrWwF1b7XPIn9byTPGX3TsOdiTQsVmtf3mlBK15PnP63wqeJL0EkyEcKLJycIJVyt6WzN/VSAbVv0sfRFGVFQXC1kN4iubfeGc+bd16ATfU1qLdtdI6WFF9V/QHkj0fJ +api: eJzlVm1v2zYQ/ivEfdo6xXLarCiEYUCGuoWXoQlib/sQGANNnW02EqmSJ6eGoP8+HCm/xUrWfBz6xRbJe334HO8aILn0kN3Be1Taa2ve40IbTdoamCVgK3SSF+McMphvrnDzz1tIoJJOlkjoWLcBI0uEDO5xAwloAxlUklaQQI5eOV0Fcxlc4UbYhcg7VyLf+0rA4ZdaO8whI1djAl6tsJSQNUCbiq1rQ7hEBwksrCslxa23F9C2M1b3lTUePWu8Hg7579j7pFYKvYcElDWEhlhEVlWhVUgx/exZrjn1bOefURGn7RgQ0tGLzg9kPDltltAmAYVviZrRiUCM+w1FVHsO1ui8jrE+6+XN60MvtxHgEg35Jzz2iV69OJ1D7U9P5dAn/NeL8iI00lBvJnyqqeCtHl63LQtc9HFkbNay0LlgMqKnp7lSOTsvsPzppZzxJKn235hhid7LZT9+2niSRvUfxo3nYBk5Z90OiTenSHywbq7zHM0xBq/SV///dC9O072NF4589d7WTqEwlsTC1ib/Pljwc189XN6MxUHCAoPCd4BHm4BHVTtNm9Dh5igdurPwtt/N2qQBZe29xrCaPW50H5H6upyYb0TskSXSynJLXWJAg7tlBun6PN2qne3VfNrc46YFDsmttz23dgVk0ESI2yxNm5X11GZNZR2x8Fo6LedFRJjP4vUuZF0wnoVVsgjbj6OfrlDwAfcf7te0QsFEiN4HDCX7ODb3bvhu2GuJRZ+wsqfH3s6KqOq1E4V7LYUBYHtdE5aLSW+vaHflstJXAf9uYLm+Gd1eTkdnk9FkMr7+tB1eOr02Obr2nZUuxBAQr6MQbKU/bBn7+9/TwC5tFjaodyy7DkMVipt6XmjFqZwmbIUM04qQivQahTS5ULasCuQ3qnI2HG7pzl9ia3ZhnSit0WSZ30GTnK2ZCStriTkfC1iqcIeRSJyUz9L04eFhoGRZm1wOlC0ZhEIrND7g2OH2R7eTPFLOrfI7bW3DOnW4QIdGYdoZ8unREAPng+FgGFnlqZTmwNF/FtIRbLsbIvxKaVVIbdhsiLHpiuwO1uewHz8OywwSyNjqLOnK5Q6aZi49/umKtuXtLzW68ADsqyvUYq49f+eQLWTh8SSs3XMJP3TzTv6jeHYa7k1ky2KzCeVd1LyCbuIMv+2sTWCFMkcXAosnl0phRQc6J1MvF9DuTfo4mkICsma4dpA+Inmw3hvPL78FATG192h+3UVHvOT42vZf5I9HyQ== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/by-key.api.mdx b/docs/apis-tools/operate-api/specifications/by-key.api.mdx index 06dc3839ef..1e50a6414f 100644 --- a/docs/apis-tools/operate-api/specifications/by-key.api.mdx +++ b/docs/apis-tools/operate-api/specifications/by-key.api.mdx @@ -5,7 +5,7 @@ description: "Get variable by key" sidebar_label: "Get variable by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/lcIPq2dazltNhRGMSAD3MLrsASxtz0EeaCks81GIjXy5NQQ9L/vjpSUOFbb7HHoiy2S9/O773hsJKqtl/Mb+ZdyWqUFyNuJtBU4hdqaZS7nMj18hIOcyEo5VQKCY/lGGlrQ6V0404Y+K4U7+s7BZ05XrE+bpCvsRux78xPp4J9aOyDT6GqYSJ/toFRy3kg8VGxSG4QtOBLdWFcqjFs/n8u2vWV1X1njwbPG69mM/45druosA+9JP7NkyiCLqKoqdBaySj55lmtOPdv0E2TIuTrGAHX0wjk+J7ygx66XxqMyGXx8tqLPyOHzxSP4g6hHp82WD/aqqMdPCGxD+TPuw2lqbQHKhGMwyuAyH9HlU40Fbw0saVvePh+Df2koCJ0LrjN4/HIZCCwyVf74X8tB2GLtv4nUm9ecV0nlUNtxSHRXpnG8wsbXwFg4Z92AxJtTJN5bl+o8B3OMwcvk5f8/3fPTdK9jwYFL723tMhDGotjY2uTfBwt+GuuHi6uleJSwgKDwHeDB1xpktdN4CBMjBeXAvQq36c1tO2kIAnunIaxunw6OD4DD1BDpQcRBQwNoZ3kqbSFAwCNnLpP9WdLL+qQh0Vayc7fvp1XtCpJrIpjtPEmanfXYzpvKOmThQZ2z47NYyI2qC0ausJkqwvbTONc7EHzAVzJPOqQ1lzx6n4apQD6Ozb2dvZ2NWmLRL1h5IMKDnR1iNWonCo9aClO0L8yK5WLSfTGG4qpKx8nfjfrLq8X1xXrxarVYrZaXf/Rjv9OjCB8XeLDShRgCCjMnCMle+n3Pzd/+XgceabOxQb3j02V4jIC4qlPqEU7lNGErVBj59Id6D0KZXGS2rArg26gbyqInNn+J3iz1hiit0WiZyUETna2ZCTtrkdkdW5VMc1iRSJyUJxbd399PM1XSBaem5JBBoCCBnics2+H2e7czeaKc28wP2tqGdeJgAw4oyqQz5JMw14nIMdmz6Ww6i6zyWCrzyNF4yxxhNZQF4TMmVaF0mP4hsKZrpxu5PzvqiImcsymiTWyMG9k0qfLwpyvalrfp3nehqR+0Qtfl2vM39etGFR5OYhmuQPnDdfcqfCFOX4yjIfckNQc5PHskfQb2hd+W7hi5A5UT3TiaeHJBTKnwkc7Jy5D7Y7hnPizWJKtqBubh3XTM4WB9NJ53vwYBsbZ3YH4ZokNecnxt+y+MIezQ +api: eJzlVt1v2zYQ/1eIe9pa1XLabCiEYkAKuIWXYQlir30I/EBRZ4uNRKrkyakh6H8fjvpIHKtr+zj0xRZ5H7z73R1/bIDkzkNyCx+k0zItEDYR2AqdJG3NMoME0sMlHiCCSjpZIqFj/QaMLBESuAsybSCBSlIOEWToldMV20MCl3gQdiv2g/sIHH6utcMMEnI1RuBVjqWEpAE6VOxSG8IdOohga10pqdv6/RzadsPmvrLGo2eLl/M5/x0fuaqVQu8hAmUNoSFWkVVVaBWyij951mtOT7bpJ1TEuTrGgHR3Cuf4PeEFOz56aTxJo/Dyuw29stUPqHfgj6qenDY7FuxlUU9LyNVGSWLcR2lqbYHSBDEaaWiZTdiyVFPBW2OXtC1vn0/BvzR7WehMcJ3R09fLUDmbFlg+/9FyeJJU+28i9eol51Wi93I3DYnuyzSNV9j4LzAWzlk3IvHqFIl31qU6y9AcY/Asfvb/T/f8NN2bruDIpfe2dgqFsSS2tjbZz9EFv03Nw8X1UjxKWGAw+Anw4GsNVe00HQJjpCgduhfhNr3dtFEDyto7jWG1eUoc75FG1hDpQXREUyLllllphwECppwE4v1ZPOj6uLnDQwt8uNsPbFW7AhJoOjDbJI6b3Hpqk6ayjlh5NOfsWNYVcivrgpErrJJF2H4a5zpHwQK+kpnpKEfBJe9OnwVWsO6Ju9fz1/NJT6z6FS8PjfDgJyeqJv10ypOeAosOhVmxXpf0UIyxuLLSHfP3VH91vbi5WC9erBar1fLq74H2e7s2Oirw6KUPMQQUOCcowaD9bujNPz+uQx9ps7XBvO+nq/AYQXFdp4VWnMppwlbIQPlCKtJ7FNJkQtmyKpBvo56UxdDY/CUGt1vrRGmNJsudHCzJ2Zo7IbeWuLu7UZUq1LBrJE7KJ3F8f38/U7KsTSZnypYMQqEVGh9w7HH7q9+JnhhnVvnRWtuwjh1u0aFRGPeOfBx4HZ3vkj2bzWfzrqs8ldI8Omh6ZI6wGstC+IXiqpA6sH8IrOnH6Rb2Z0cTEUHCrjZRPxi30DSp9PiPK9qWtz/X6MJQP1iFqcu05+8Mkq0sPJ7EMl6B8MtN/yr8VZy+GCdDHprUHGB89gBE3WMt/LabNoIcZYYuRNNJLpTCih7ZnLwMeT7Ge+b9Yg0RyJqBeXg3Hfdw8D4Zz5u3QUGs7R2aP8boiJccX9v+C4wh7NA= sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/delete.api.mdx b/docs/apis-tools/operate-api/specifications/delete.api.mdx index 87a0f9a05d..a187e6f28d 100644 --- a/docs/apis-tools/operate-api/specifications/delete.api.mdx +++ b/docs/apis-tools/operate-api/specifications/delete.api.mdx @@ -5,7 +5,7 @@ description: "Delete process instance and all dependant data by key" sidebar_label: "Delete process instance and all dependant data by key" hide_title: true hide_table_of_contents: true -api: eJzlVktv20YQ/iuLPTWpLMqJWwRCUcBtFEBNUBuWihwMH1bkSNyY2mV3h3IFgv+9M7skLYlyX7ciF2kf8/z2mxnWEtXGy+m9vHU2Be/nxqMyKciHkbQlOIXamnkmpzKDAhDkSJbKqS0tHevV0tCGrh9hT3fa0LJUmNM6A586XbIBOvwIe2HXooxuhO78jKSD3yvtgHygq2AkfZrDVslpLXFfsmltEDbgSHRt3VZhPPr+SjbNA6v70hoPnjXeTCb8d+x6UaXsk/RTS6YMsogqy0KnIb3ki2e5eujZrr5AipyzYzBQRy9bsqY2cCDo0Wmzkc2ohSn7Z+GPJGosWOjnXJkNLFBh5emCr67O5TI3O1XoTDBo4PHlnCjiVQHbb/9tbj6G8Hfhv33Dyf4VEP0Ln7uMB4OLA0BmzlnXI/F2iMQH61Y6y8AcY/A6ef3/T/dqmO5dfHDgp/e2cikIY1GsbWWyr4MF352rh+vbuThIWEBQ+ArwoEMPaeU07kMbXoFy4C64DU/vH5pRTRDYRw1h93Dajd+HLjXoxkKZTKiiEBmUYDJlUGQKlVjtRezv1PdzezINqNlPZbK7TFprF501n9Sk1UiO1O26eVG5guTriHwzTZI6tx6baV1ahyy8U04reqUAN9/FV1+rqmCYC5uqIhyfJrXMQfAFTySeNUh75kf0PmaE2cexuXeTd5Ozllj0BSvPrHm2kyOWZ+1E4bOWwvzqXnHBcjHp7uV6JqhSfwz4t8P25nZ2d72cXSxmi8X85tdu8LZ6FOEhG3orbYghIN5HIdlJf+iI/MvnZSCdNmsb1Fvy3YTvARC31YoKilMZJmyFCsOW/lDvIqFSuy3DUBzwjVeiM0uFJLbWaLRM+6CJzlbMhNxa5FKIdU2mOaxIJE7KE4uenp7GqdpSN1RjcsggUJBAHwYs2+L2qT0ZnShnNvW9trZhnzhYgwOKMmkN+YStMpFjspfjyXgSWeVxq8yBo/9aX0do9g+H8AcmZaHokZs29LotvHu5u4zd6rj06GzKJolgsYTuZV2vlIffXNE0fEzjxIVe8VxxoT4z7XlNRb5WhYdBTH1nld/ctV9ur8TLX3dnU+hobfah3ouKd7QMfA2/DbUwmYPKiKAcVby5Jm6VeKAz+Irjiuqb1PvZp9lyRuKqYqx6PE+IHxycDemHn4KAWNpHMD/2ASJvOcSm+RMnstvx +api: eJzlVktv3DYQ/ivEnNpUXq0TtwiEooDbbAA3QW14t+jB2AOXml0xlkiFHK2zEPTfiyEleV/u61bkJJGc58dvZtgCyY2H7AHunFXo/Y3xJI1CWCZga3SStDU3OWSQY4mEkEAtnayQ0LFeC0ZWCBk84g4S0AYyqCUVkECOXjldswHI4APuhF2LOroRevCTgMPPjXaYQ0auwQS8KrCSkLVAu5pNa0O4QQcJrK2rJMWtH66g65as7mtrPHrWeD2d8ufQ9bxR7BMSUNYQGmIRWdelViG99JNnufbUs119QkWcs2MwSEcvFXovN7gn6Mlps4Eu6WHK/1n4CZCmkoV+KaTZ4JwkNR66jo+uzuVyY7ay1Llg0NDTyznVzq5KrL77t7n5GMLfhf/mNSf7V0CMN3zuMG6cHOwBMnPOuhGJN6dIvLdupfMczSEGr9JX//90r07TvY8Xjnz13jZOoTCWxNo2Jv86WPD9uXq4vrsRewkLDApfAR5dAh5V4zTtQhteoXToLrgNZw/LLmlBWfuoMayWx934XehSJ91YSJMLWZYixxpNLg2JXJIUq52I/b1CKuzRNKACMki3l2lv7WKw5tP2EXcdcKRuO8yLxpWQQRuR77I0bQvrqcva2jpi4a10Wq7KCDyfxVtfy6ZkmEurZBm2j5NaFCj4gCcSzxoqUDA/ovcJI8w+Ds29nb6dnrXEoi9YeWbNs52CqD5rJwqftRTm13CLc5aLSQ83NzJB1vpDwL8ftrd3s/vrxexiPpvPb25/GwZvr9clB2wYrfQhhoB4HYVgkH4/EPnXPxaBdNqsbVDvyXcb3gMo7ppVqRWncpqwFTIMWyEV6W0klLJVHYbiCd/4Twxm19aJyhpNlmkfNMnZhplQWEtcCrGupQp3GInESfksTZ+eniZKVo3J5UTZikEotULjA449bh/7neRIObfKj9rahnXqcI0OjcK0N+RTtspEjsleTqaTaWSVp0qaPUf/tb4O0BwvjvALpXUptWFvIfS2L7wH2F7GbnVYepBAxiaXSV9CD9C2K+nxd1d2HW9/btCFXvFccaE+c+35P4dsLUuPJzGNnRW+ue9fbt+Kl193Z1MYaG12od7LhleQhEdkfEp2yy6BAmWOLkQVT66Vwpr2dE5ecVxRY5N6N/s4W8wgAdkwViOeR8QPDs6G9OPPQUAs7COan8YAiZccYtf9CSey2/E= sidebar_class_name: "delete api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx b/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx index c3098e28e3..51c027b162 100644 --- a/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx +++ b/docs/apis-tools/operate-api/specifications/get-statistics.api.mdx @@ -5,7 +5,7 @@ description: "Get flow node statistic by process instance id" sidebar_label: "Get flow node statistic by process instance id" hide_title: true hide_table_of_contents: true -api: eJzlV99P5DYQ/lcsP7XXZbPc0eq0qipRCU70qgOxVH1APHiT2V0fiZ3ak+VWUf73zthJCCSogrfqeIDYnp+fv/EMtUS19XJ5K6+cTcH7C+NRmRTk3UzaEpxCbc1FJpdyC7hCWnrUqZczWSqnCkBwrF5LQwuSuocDnWlDn6XCHX1n4FOnS7ZDm5/hIOxGlNGb0J27mXTwT6UdkCt0FcykT3dQKLmsJR5KNq0NwhYciW6sKxTGrV9OZNPcsbovrfHgWeP9YsF/nrpeVSn7nItrwMoZL3yfjiCLAncgtnoPZhTdTGydrUrIxPogNrl9EMaSbYoktRSUQXamyjLXacAr+erZYz3OQTmnAkAIhR/s2/VXSJFRdYw66piHSlHvNR74AnpZj06b7QjZGwpfZwwuJ9JHGVJ72Ol0F/YJpipHL5QDobZbB1uFhHkzi75gEu+xI7SocmGqYg2OXUblHjA/CmPi1gg9ls0he6PTTv21brVJdUa35t/ot9fvafMfadqizAHfnmen/7pEyTNqzNnbOYl9IalBATf8M5MnU5VyYfYqJy5xSYLHl3lObF3nUPz0It9f4DVXXjUN/zCLD+8ZvoJKUW1hXAHhKtv3Y+owbowOBricOWed7JD4MEbi3Lq1zuiyn2LwLnn3/0/3ZJzudbxw4Kv3tnIpELmQaF6Z7Ptgwc9T9XB6dSEGCQsICt8BHrTpIa0ctaDQ5NdAfcMdcZNf3t41s5ogsPcawuru+Vv2CXDQh/puy030eYelziU5J9zZdtYIEwYNEEuZ7I+TVv6ofwCTmoJoEj+cSDy4fTeOVC4n1TpC3yyTpN5Zj82yLq3DhoT3ymlF1xTw5rN47RtF7ZE0c5uqPGxPvdB8wANP9wwzQaL3OUPMPp6a+7j4uJi0xKIvWHmkzaOdHWI5aScKT1oK41F3jSuWi0l3V/c4nJT6cxjf2lnu8urs+vTm7Gh1tlpdXH7p5rpWjyIc0qG30oYYAuJ1FJKd9HnH5D/+vgms02Zjg3rLvsswdYK4qtZUUZzKOGFLA0fgTzt3KJMNuuRzcvGX6Mxyyy6s0WiZ90ETabhjJuysxThZcWGTaQ4rEomT8sSih4eHeaoKeg7VnBwyCBQk0NzJsi1uf7Y7s2fKmU19r61tWCcONuCAokxaQz5hq0zkmOzxfDFfRFZ5LJQZOHp1gT2Bsb8xhG+YlLmi223amOu2+G7l/ji+U0/Lj/aWcdQfVCDRLBbSrazrtfLwl8ubhrepq7jwZDzWXajSTHv+ppLfqNzDKMD+gZU/XLf/HvwoXv4XYjKfjtzmEKo+r3hFn4G14XdDL5ncgcqIphxVPDklhpU40BkN+FxX/ZP16eyGZFXFqPXIPuN+sD4Zz6+/BwFxY+/B/NZHh7zk+JrmX71Gt3o= +api: eJzlV0tv4zYQ/ivEnNqtYjm7abEQigIpkCzSLTZB7KKHwAeaGlvcSKSWHNk1BP33YqhH7EhBkdyKzSXmY17ffDMc1UBy6yF5gDtnFXp/YzxJoxBWEdgSnSRtzU0KCWyRFiRJe9LKQwSldLJAQsfiNRhZICTwiAeIQBtIoJSUQQQpeuV0yXoggc94EHYjytaa0L25CBx+q7TDFBJyFUbgVYaFhKQGOpSsWhvCLTqIYGNdIand+uUCmmbF4r60xqNniffzOf87Nb2oFNuciXukyhkv/BCO2FgnKEOx1Ts0I+8isXW2KjEV64PY5HYvjE2RQVDWEBpiY7Isc60CXvFXzxbrcQzSORkAIiz80b5df0VFjKpj1Em3cUhFeqfpwAkY7npy2mxHyC4zFDplcDmQwcsQ2j7TKgv7Dn2VkxfSoZDbrcOtJEyhiVpbOIn32BBZkrkwVbFGxyZb4QEwP3JjImsRKL6bY/pGo734a81qo3SKhvwb7Q7yA23+I0xblDnS2+Ps5V8XaBMBacrZ2nVu919sikcF3PBfBBdTlXJjdjLXqeCSRE8v87x0dp1j8dOLfH+B11x51TT8x1F8eM/wFei93OK4AkIqu/4xddhujA6OcLlyzjrokfgwRuLaurVOUzSnGLyL3/3/w70Yh3vfJhw59d5WTqEwlsTGVib9Pljw81Q9XN7diKOABQaB7wCPJgKPqnKaDuGRX6N06M74kU8eVk1Ug7L2UWNYrZ73sk9IR+/Q8NryI/r8hRWa+VUgZbabNcKEQRkkEO/O4+7+2dAA4/oRD03sjycSj27XjyOVyyGBuoW+SeK4zqynJqlL66iBCHbSabnOW+T5rE37RlY545xbJfOwPdWh+YAHnr4NM0Fa6zOGmG2cqvs4/zif1MRXX9DyRJsnPRlROamnvTypKYxHfRoXfK8Nuk/d03BS6s9hfOtmudu7q/vL5dXZ4mqxuLn90s91nVwTndBh0NK5GBzidXsJ+tvXPZP/+HsZWKfNxgbxjn23YepEcVetc604lHHAVsgwy/VzhzTp0Sv5nFz8S/Rq+ckurNFkmfdBkpytmAmZtdROVlzYUoUctkTioHwSx/v9fqZkUZlUzpQtGIRcKzQ+4Njh9me3Ez0TTq3yg7S2YR073KBDozDuFPmYtTKR22DPZ/PZvGWVp0KaI0OvLrATGIeMEf5DcZlLbdhM8Lnuiu8BdudtnzotP4ggaUf9owpcRV0hPUBdr6XHv1zeNLz9rUIXWsZT3YUqTbXn3ykkG5l7HDk4NFj44b77PPhRvPwJMRlPT25zCFWfV7yCKHyptN8rzaqJIEOZogtetSeXSmFJRzKjAZ/ramhZn66WEIGsGLUB2WfcD9on/fn193BBLO0jmt8G74iX7F/T/Au9Rrd6 sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/search-1.api.mdx b/docs/apis-tools/operate-api/specifications/search-1.api.mdx index 58f971eb4f..57e0fc1182 100644 --- a/docs/apis-tools/operate-api/specifications/search-1.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-1.api.mdx @@ -5,7 +5,7 @@ description: "Search process instances" sidebar_label: "Search process instances" hide_title: true hide_table_of_contents: true -api: eJztWF9v2zYQ/yoEX9J2TiwncZsGwwA3cYBsWZLFXvaQBAMt0TZbSVRJyoln6LvvjpQtWVJcG9jLtiJALJF3x7vf/aUW1LCJpqcP9FZJn2t9GWvDYp/TpxaVCVfMCBlfBvSUas6UP/2zQ1tU8a8p1+aTDOb0dEEDrn0lEqQEuoGlI4mTR0QuUAOfL2PDY4M8LElC4Vvp7c8aGRdU+1MeMXwy84SDKDn6zH0DjCAMdDECpMDuWISGq2/TfeHzEpGAsyfA1qJjqSJm3NL7Y5pZPlT2nistnC4bmY4OkWmURPEStaDEo40S8cSKZQrM/WV7NSz9RSifr2XAl67Ynh/olTlnhjdqw+Pg1T3gbNpBpjTC8OidDS/v+7BwdvPr7VV/2D/H5971Wf8KHp8KDM/5WMQC/bq93hAULDYbQayEp5VNfaH8NGTqTWX3rRUqTIiSqoGN1oq/+JZOdlHfG68HHFOKzYFeGB7peiBmyCiV2Z6jHuI8bIZDqmBNlbqnBmfwdt6Hn6eshMMAFcrKK7+lXM0b4OEvLEpCp0gvDOspfsdNqmJNWBjW85y8CfiYpaEhypKRUGhDEHIiNOl4b0G7GQtT9ABqg3rxgIzmZGV082n1k7RjZdqH2AYUUMh6VhZH5Q55WGFLq5Q5shbA7KmkGosDkrAJPD0LMyXL6GnWMmIv5KhBV4YhRPZGYnLPVH7snhUNZYq8/9DtHn38eHzc8brdkw/et00jj/FQkgk3xEw5ifmLsToSXyZzu2QNJ3JM9lDWPb7BgRDYElaKqN5zhAePMVpLdMJ9Mc4rM9FTmYYB2GSgoqPQEuM66RrSFqCj1q6QV7Ltga6BRVtVkKyPLmwzyL3kUNvsnK5X906LjJdiAOf1boAQHu4WakWDqjaWw1X16Xo745NlNn2x+wqFZhqVcrugExlrl7CHntfQk1PfQfhPteBqGduxvH3vzN87c0Nnztumq1W7tVsjDQu3MqqkwB3X0Kd0XQ8kOm5KJHATg7IBmS6C17MJAB+FPPph16xCX6d6yyCPQGUo+I2eWRa2xk23UNso4dJXSqoVDEd1GC6kGokg4PE6Bu/a7/795h7Xzb2WhlzINA7+c+Z2m4K8d3tJSuFMuGX4H0S7nff9VAkzt215BOMIV/u2Wz1AJV0ABPKL4PYNxpWtL74RN1OJDT6R2gLBzBTe2rNOOyffX5G33RBEURc1g75nVUkVVDe6cNhmp+32YgqistNFAgUzs8OHEmyUT+245/xqJ3HgDKXPwqk7fV3tIYx1uBGzyI6LOOZhBLjTD2yhz+8yhbgT78RrlISkr0gp4qKQMzUmaZTjiBslZW5SdH4aIJ0zeumbom0kArtRi6Jp8H5z27/rDfv7g/5gcHlzjQ0Fj8v5cG4o+XslJVfRKoTvjoguqS+WofrzH0MbVpgGd8UHkr67TK2PhfYErz7deLXZpej3pZHF2ziQeGvjRnlgCKpL+XBRzBDNo4JXHgTKs4mdZL3q3L6wDqrOtqtDK0MtemEsLeB5Qt7Y706c3KYjKDLo/HqISMLsSAs/Rsy4nf59iUjjmF6/fomYLMVCcSGRBPMkKmQ5jZIp5s5USuOUxFoHolEtl3oYBhry7vn5+cBnETQDdgAHIgygJIfxG2nzSLvKV1oV5kD6esUtpH1vKz6Gmwdo2c4F6TZKnS2DgnYOvAPP5aE2EYtLB22oOWuAraLZwEWxnYQMIj/LtVvk5eiBzjpFCOyXZeUlCdzqKssDXSxGTPPfVZhluPwVPyVgWSwKkSuZdMpZ4KLCRT09c11kf4gKrS5N9dsIllvH0QNPJ2Yj7VOpxt7eDIaYnvnXyQjyA1YVe8Yvl/D/lD7CHwaiBcfWDru+oCGLJ6ltM9TJxYRmKaKzQrCS/9ayZcGJ5yUtf/xkCchQfuHxT7DhrDH46m5zfwMoNl4Y +api: eJztWG1PIzcQ/ivWfOHuupDl7V6iqhIHQeJ6BUpS+gGiyvFOEh+79p7tBdIo/70ae5NssgsXpPZD2+MTsWfG42eeefFOwfGRhfYNXBot0NozZR1XAqEfgc7RcCe1OkugDRa5EeM/diECg18LtO6jTibQnkKCVhiZkyS0oevlWB7sMVkatBCB0MqhcqTD8zyVwltvfbGkOAUrxphx+s9NcoQ26MEXFA4iyA354iRa2h3K1KH5ttwdTipCUjkcoYEIhtpk3IWltwcw83rk7DUaK4Mvzyrt79WVenxU0bPOSDUiqUGeqTm2SaNEzg0q9/Pmznr501Q/nOsE5wHbXN86btwJd9joDarkyT3rGndIqciIREfHvbPrDkRwfPHL5edOr3NC/x+dH3c+d06gP4tAKiGTkgOllYHWKXJVgfQEh1JJ4sbmt3KouHLPQrxGcW8bhDSiSLl5tbb72huVLiVL68lBWMg/cUOihMw5Gq6SlhvDJxCBdJjZOplnpKiN21yjniaYNsOhTbLiSj2O3WOI4KTTPYb+rIJDlxyaVVd+LdBMGuDBR57laXDkKE3rZeIKXWGUZTxN67WCvUpwyIvUMePFWCqtYwQ5k5btxq8hgnueFhQB8ob8woQNJmxx6ebT6ifZoMqtQJVINSIjqzm7PKoMyM0CW1iXLJH1AM76Fde4SljOR5iwB+nGbM6eZi8z/sj2G3zlRCG2NZCja27KY7e86TucsLfvDg/3P3w4ONiNDw/fv4u/fTV2q3qajdAxN0am8NF5H5nQ+cQv+YszPWRbZOuaftktJpXTbKvC6q0guHOr6LbM5ijksKzuzI51kSYs406MvdGK4qroCtIeoP3opZCvZdsNrIAF0TpIPkanvqGUUQqoPR+cw7genYgN52YGE7baHAjCvZdRbdnk1pvT3qL6HMYvxmfm/6iF21wrGxJ0L44b+nghAmR/V9teL1svLGffu/n3bv4PdfOy1Yb69rIW7bTj6UaXqjhwhbZIna37QUIHTcl4wh1nUt3zVCZPZ2Ru9CDF7IeXZiYxobAbJkqG1vJRM6XmxbBxMyzUNiq4dIzRZgHDfh2GU20GMklQrWLwpvXm33/dg/p1z7Vjp7pQyX/uuodNJD+6PGMVOjP0Cv8Dtvs3giiMdBPfygfIDZpt3/Fu+rNoCkLrO4n+Vz/a/MGdoRtrGgpybT0Q3I2hDa373VYpvr0Qb4XBCcgXc4/GelcKk0IbpgHbWbvVmo61dbP2NNfGzfzAYiQflJM+7YW4+ukd2pBqwdNxOH3V7d4YGW0onvkRk0ZDYkA4fccX+vL9szT3Pn4fN1oi0SesLHmxtDN2Lm+0E4QbLc3CdBni1CW5cOl5bJZtI5fUjSKgq0EbLi47V0e9zna30+2eXZxTQ6HjSj2aKirxXlgpXfQO+cbqhWAufTqn6qffe55WlAZXyw8znfAAWx0l/QlxfUKqLfn5ZzkRrI09y43KtBM/O8vEK5NKddZI1pfKuWQ5fiynDGcKfGquiKtTQ3XM8aNyvP4wmPporg/PCyfWpmZyYqh9dMrsvfAfx5BdFoNUCmJKnU+acT9DMy6cvEf/vBCawkLvgPr7Tio2NzvUhmVaSafJIa/pjC4o0cZau+AkFUYufIqEPCXO2Har9fDwsCN4VqiE7widEQypFKis50NJy8/lSrSmnGhhF9pS+98tg0M0qAS2SkO2RVbv5wyC3Z14Jw5Ja13GVeWgZwrUCmAL6jt8dK085dKPkd67aVm7buB+FxYU2K7aKutXPyrL0A1MpwNu8TeTzma0/JW+VVANXVatUF9hjDwJrAgpAseh5Wz3yKHFq6z+/KHaHDSOhMDcPSvbrxTky4tujxKr/ISa6YR0DH+gz6v8AdpwC7dARPTg+ELj16eQcjUqfE+CYJeynxeEznIKXy0W/mbz6qQmFS9//OgFWE/fofoJovI2jn6G5+Jf7YeYrw== sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -36,15 +36,15 @@ Search process instances ## Request -

Body

required
+

Body

Search process instances -
    filter object
    sort object[]
  • Array [
  • ]
+
    filter object
    sort object[]
  • Array [
  • ]
Success -
Schema
    items object[]
  • Array [
  • ]
+
Schema
    items object[]
  • Array [
  • ]
Data invalid diff --git a/docs/apis-tools/operate-api/specifications/search-2.api.mdx b/docs/apis-tools/operate-api/specifications/search-2.api.mdx index 6dd740755a..56feec86ac 100644 --- a/docs/apis-tools/operate-api/specifications/search-2.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-2.api.mdx @@ -5,7 +5,7 @@ description: "Search process definitions" sidebar_label: "Search process definitions" hide_title: true hide_table_of_contents: true -api: eJzlWFtv2zYU/isEX7J1jm9N2tQYBriJA6Qbmiz2tgcnGGiJttlIpEpSST3B/33nkLQsW0qaDHtZhwCxSZ4bz+U7hy6oZQtDB1N6pVXEjTnjcyGFFUrS2xZVGdcMFxcxHVDDmY6Wf/Zpi2r+OefGvlfxig4KGnMTaZE5tgEdOzrCv7A0S7gB8khJy6VFUpZliYic0M4ng/QFNdGSpwy/2VXGQYKafeKRBcZMowlWgBQ4nYvEcv11uju+qhAJ0L0AthadK50y67feHNF1i0qW8gqpsVrIBR7cc22Et+5JMa/7SD3LUhkciJ5qkAfXZ9I2HuKpsAlu1YMAh0b8xZ9ph4/QcL7rJaY1WwG9sDw1de+hAUZp+3yOelx40nxtpeMdU8JJi3KZp5h2w/EprM5G8HFb9cQYDVpXd37NuV41OqhMNNAzTJJ6QsImyTwnEdJYJuEr+S7mc5YnlqCDiTCk1/0ebLlnSY7+Rt1jPFFzornNteQxSYSxjyZ8XQWTceB1nCjKKTuu6AnxPXb6QhheIB4jR2Yr4jK5KtWJmpbBoYEgRMQ5fn27UepFhUR7nvaWV43EXMYQ1Y0V/qomuK7pqq2vWucSYs+8jC1eYl7VMSU/RMNAyM02Em1yI8lEkQW3xC45kfyL9aSRylZuy5mPHAco83dcmQPQZBXsbCvuwBO2b6Qz2WQ8EvMAdcQsVZ7EBOoVjEWhFcZd0n/kLx/NPQCY0lOWJJC1oWqAvt8/7r199+6k9/rNydv+Sc8X3bnD1W061b0cKMCdARh3cm8X/ir2bwG7xNNeiWjH3YZ77YvaT1cHCdh9hOZAb3XO3YbJlDQeAvrdbkOa5FFwwb/Ui/ah8YWQ+S21qNA/fGG8rO9YZVnyLEdUTLj2NdxkCZIdNcX/jFkGJQuZKeLHkwBiNEt4+sNLkwEwx+bmmZFIwegAZbUYbOCrOUBu46ngjLRWunTD64Y6Vnom4pjLXR+86rz671/3qH7dj8qSc5XL+Ju77nFTkg+vLkglnQl3DP+DbHejb5RrYVeum8ygDXJ96EB2ertuFeACdSe4W0GbfHKEiEtAwXaRcrtU2JkyZZwrmF3CqnPf6wSGwwpDxzdgivZoBGhnTq4B42jh/bsedDrFEoStB0UGsLl2DVMLNgsjLJ752LrxFDgTFbFk6fXvmj6BSQIP3JADEwpOFpgFXnsb/ZiVM+VG3En3pNsoCUkfkbLNja2cpbVZoxxP3Chp7acUH6sx0vlLb+KzbR6Z+Jlj9/D9j15eja6Hk9HheDQeX1x+xLaC6gIfNrhKzEspwURnEK49Ed1Qn2/S9cMfE5daWArX27ftyL8sdkcZp6FbGlY+acp+3K112y3RtslWUt3PQ9398a1wvtqfkEpRe6MROmSu3N1DfVy61zsnV/kMah7jUI+WIswNRvBhxb0flCOFl7YwONafHEKSjViodZIqSHyFBjlOq1WOabxUynojEXpANJrlqwAjYqAEHh4e2hFLAZtZGxSiG8BIDkMc0gbf/hJ2WnvMsYpMyS2UW3c0n3PNwcpOEGQ6O2MS7bW77a4vCWNTJiuKnoSAHZeVqWXhodDJEibcG9TZVwR0mNL7nkfNfXygmxjjryu+0Ke0KGbM8N90sl7j9md86CJSbXHBoxhdchb7zPBJSE89sB9O0KRy7q7PtYiAnmMI0c7sk7S3FdC7uhxPsFrC7zypipFHswf8DQj+D+gN/GEyZv5+QOT2C5owucgd8lMvF+uL5eif0od75ehutql/uapY+eN7RwAPtTsuf4IDfxuLS/8u+BvLQG6S +api: eJzlWN9v2zYQ/leIe8nWKf6RJm0qDAPcNAXaDU1We9tDEgy0dLbZUqRKUkk9wf/7cCQty7aaJsNetr5Z5N3x+N3dd0fX4PjcQnoFl0ZnaO0rnAklnNAKbhLQJRpOH29ySMEiN9nizyNIwOCnCq17qfMlpDXkaDMjSq+WwtjLMfzMi1KihQQyrRwqR6K8LKXIvNH+B0vyNdhsgQWnX25ZIqSgpx8wc5BAacgFJ9DS7kxIh+brch9x2RISyuEcDSQw06bgLiw9O4ZVAooX2BK1zgg1p41bNFYE7+418/SoJT3h805j07JQEV8CskPCoeLKdW7SrnCSlvZjtErAir/wgW6GAI5m2yByY/gSEhAOC7sPLjlgtXEP19gPG8rua2uTb7kSdxJAVRWUlaPxGSTw6nx8BjdtJMbk0Kq98muFZtkJUJOHaQ0jKffzdSQlK4MmE8o6rjK07LscZ7ySjhHATFg2HHwPCdxyWRHedPaYdvSMGXSVUZgzKaz7Yj3sH8FVHnW9Jpnyh520zonxPfHnxTA8wjxFjk2XzCd626o3ddUEB6JAjIgHfnWzPjSYion2sNOTcDQJo8qFmq+9CFe1EbquqyZf9c4nxI57JZ8/xr02MI0+M2gr6ewmEj12rdhEszk65hbIFH52QTTT5dIvefdJ44Bs/k5f9oAJ5TQ7aFXcQRDsXSvvsi0xE7PIhMwudCVzVnCXLbzRluK26D/CK0RzhwCu4IxLiTmLVQMJHB2dDJ+/eHE6fPrs9PnR6TAU3WtPu5t02kc5SkyXLDLhVu5t01/L/w2fN3Q7bBjtZNBxr11Tu+m68pxg0JZa2VDyR4NBR1pUWbzyv9SadqnwkRT5DXWs2E5CnTyuDTntuHwQTi0X3oeS7vKExI670uMVd5wJdculyL+cI6XRU4nFD4/NFeu4q+wDA1WgtZHZ9mKwZrPuAPmF+4Jzbow2DQxPO8pam6nIc1TbGDzpP/nvX/d4/7rvtGOvdaXy/911T7qSfHT5hrXSmaFX+Aay3U/CWWWEW/rmMkVu0Bx6Dr66WSU1ZFp/FOi/bpL7J4q8IRTqJgW6haZGVWrroeBuASn0b4f9qHDYUuiHfgzkjyFG9u5URkIKdcB3lfb79UJbt0rrUhu38v3TCD6NEy3thdj6aRVSkDrjchHO33Z9skBGG37m0TM/aFAWhNN7hGPZjJhrc6eD00GnJRL9gpVNbmzsLJwrO+0E4U5LqzC0hFiNSS5ceh2fTfMoxc9I3SO0R7i4PH8/mpwfjs/H4zcX76it0HFRjxpcK+aNleiid4i+gxCspV+v0/XtHxOfWlQK7zcv4fPw0NiebPwJg8ax5oXTtOvBdjPeSOz04M3GpvW2CiAMTYPdGa/2CO6OUY2pnfmJYJppj0ismgv/DwCyy2oqRUbR2Y+hZtxPU4xnTtyGaTrTBIXDvONdIhRbm51pwwqthNPkkNd0RleU3AutXXCSCIlnPi1DbVCcbNrv393d9TJeVCrnvUwXBIMUGSrrYxAR/yWuJDvKuc5soy20/+4bnKFBlWE/GrL9rdkKhr1BbxAKxbqCq9ZB9xLDFmRNwjn87Pql5MI/VL1/deSMK7gdBi7dZQ1Yx5j+oQnlfwV1PeUWfzNytaLlT/QaJv7asEXgNlggz0NmhNSEs0D3hxNyqRnO94dh4sWgMcoyLN29sjctKry8GE8oneN/RYXOScfwO/ofid9BCtdwDZSMZbhfWof1GiRX88r3Awh2qep4Rfg0GO4Uqb/ZmhXUsuXljy+9AJvoj6h+giTextFneDz8DaxJhiw= sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -36,15 +36,15 @@ Search process definitions ## Request -

Body

required
+

Body

Search examples -
    filter object
    sort object[]
  • Array [
  • ]
+
    filter object
    sort object[]
  • Array [
  • ]
Success -
Schema
    items object[]
  • Array [
  • ]
+
Schema
    items object[]
  • Array [
  • ]
Data invalid diff --git a/docs/apis-tools/operate-api/specifications/search-3.api.mdx b/docs/apis-tools/operate-api/specifications/search-3.api.mdx index dd38bd07ef..2c30e8922d 100644 --- a/docs/apis-tools/operate-api/specifications/search-3.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-3.api.mdx @@ -5,7 +5,7 @@ description: "Search incidents" sidebar_label: "Search incidents" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWG1v2zYQ/ivEfXG7qbGc9xjDANdWOrWp7NlOWiwNDFqiY7aSqJJU0szwfx+OlGU5VpoG24d1qz9Z5PHuufcjF6DptYL2JfhpyCOWarhyQGRMUs1F6kfQBsWoDOeTPXBAss85U/qliO6gvYCIqVDyDCmhDSNDR3jBSIEDoUg18mwvgGZZzEPDtflR4YEFqHDOEor/9F3GoA1i+pGFGhzIJGLQnCncnfFYM/k43Sd2VyHiqWbXTIIDMyETqu3S4T4szbmQKdVjM55yxPTmqUf9VGmahuzbD1qSklRpydNrcICleYIeOA9GA6/rn/peDxw4D94E/XcBOOD3J287g4EfvJp4w2F/CA687r+cBP3J0BsPfW8EDnjvve752O8HkzN/NPYCb7i53+0HPd/sr1h478fDTnc8ueicnXvlardzdub1Jt6Z99YLxuXyefBbJ+iZHVyZeBdeMAYH3nqjUeeVNxn5f3gT733X83oGfMGm53X9UVXoegHFdjYAnfaHbydBfzw57Z8HPbhaOpAwpeh1jdGWDoSSmWAa86SeQGmqv2rvTnfsX3iohf9q2Bkb4ENv1D+7MH8HXtDzg1cGyEcxfYKfWUpTjamzhQp3uY5xqcw3hMr/ZI8y39s1pCbJOrPNfKBS0jtwgGuWqO08QblKSP3tJ7YzkMV1CjkgZLQBZdvMo67x/KgLV1UDjBDQsrrye87kXdUu7AtNstgi6MTxdskZMp3LVBEax+u6Q55FbEbzWBNptknMlSZoY8IVabnPd8CBGxrnaHOUb7mQXZeU1qgXk9AvhmolqcqocOKuixxRNzK9I6XZ6vmtIaN3WESQjKURT6/xdKMa440NWcaZl6VfNrOhdIq1+tKY/dTU0CeBsmWXRQYLurexQ07xMGkUmdkgIU0bmkwZyRWLyEzI4hShaWS0qsLequP1dWVZwVuy2cK7VshiM6SNusLecL7FvjtfRfpAYazvI7C7e9A6Ojk5bu0dHh+2Do+gTMAn+WxArxkCLfpavb8yem1dlCvUK5PshotcFcHPItJAyReomWoQoyF5ZtL/+Wb8VivLZVWDo6Pjg0oMWWsac2dFdX56JP1db5XiIzKTIlmrva3tv8yx92r4Zetw//DE3XePD/ZPTpwT1z1qnZzsHuwf7e/tHh9fLc0PRy+ViVTZYrjrujXzVx4i5H9u7LrfG57YM35MYz+mse9vGisS2laQp41YWmgafxOsiuQhU3msVQUA7u7XJXiPakp4ekNjHj2c5ZkU05glPz8129FDuXoUvh1DvxYLvMjF2s36tKsaxJNSyNIMezWNX8gpjyKWbtrgp+ZP37+6+9vqBkKTU5Gn0X9O3YO6IO8MfFIJZ8LMgf9BtJvLXZhLru/MNDFlVDL5wnTRy6uls4BQiE+cma8r5/HHl4TpucB5JBPKGIDqObShedNqlmRNO4sAypY3TCojOpcxtGFhbblsN5uLuVB62V5kQuqlGackp9PiZoZ71o/m1gVtiEVI47mVuglzPGcEN1KaMCJmRM8ZQY9b6Tumo5fT/ordsXvs1nJC0ge4rONgzWeudVbLxxLXclragc36ZYR0VumVL9b9IePYlBxA1aAN/YGHbezFyBthj8XOgeKKc0tnw78llwKiAYTflghW1Ker0Hz9bmzCCMN+uH6U8+yFeXPQNRLch6Yst36GclfBe28QKlNh3cE3e/96vWj5686+6ttutStXZwRzg3bvD8gL44L7Q3YpZjVed+y1Ce08E8akRYr1zWsmI4N8GvMQ3bsdBIJQMzwTGmp+w8ztIhRoS7yIFAYiq1zHf2TFFu+8iUi5FgjInNRS5JgdcyF0YSORahqauLbJhY5W7Wbz9vZ2J6RJnkZ0JxQJmiHmIUuVcWIRS2fFinPvcCRCVZ7mwnw3JZsxydKQNQtGqolcMbmtsq0dd8e1maZ0QtOKoJoqsmGoMk41+6KbWUx5iowMqkVRYC7hpmWifc2jKDJXTlErLmGxmFLFzmW8XOLyZ3z5wcK2Li226MGc0chGgY1j6No+8GKMQMqL3fY9BwumPdEJQ5bpr9JeVarloD/CYXpavHEnIsIzkt7i+ze9hTZ8gA+AgWeMYqqBWV9ATNPr3GaH5YspSnO0Smm5exltNFuVkPSugvKXl4aAjMUnlv4KTqGNxk/zPrD8C/QS51o= sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -33,15 +33,15 @@ Search incidents ## Request -

Body

required
+

Body

Search incidents -
    filter object
    sort object[]
  • Array [
  • ]
+
    filter object
    sort object[]
  • Array [
  • ]
Success -
Schema
    items object[]
  • Array [
  • ]
+
Schema
    items object[]
  • Array [
  • ]
Data invalid diff --git a/docs/apis-tools/operate-api/specifications/search-4.api.mdx b/docs/apis-tools/operate-api/specifications/search-4.api.mdx index 86413414c9..cac9c73f3f 100644 --- a/docs/apis-tools/operate-api/specifications/search-4.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-4.api.mdx @@ -5,7 +5,7 @@ description: "Search flownode-instances" sidebar_label: "Search flownode-instances" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWVtz4jYU/isavaQXb3CyZJMwnc444LR0WUOxSdpJGUbYIqhrJCrJyVKG/945krENOLtJZx962X1ZJB2d+/l0jrPGmtwr3LrD16l45CKhXa404THFYweLJZVEM8G7CW5hRYmM55MmdrCkf2RU6SuRrHBrjROqYsmWQIlbODR0aJYzfMVyjgo7OBZcU67hElkuUxYb9o3fFdxcYxXP6YLAL71aUtzCYvo7jTV28FKCMppRBaczlmoqP033nq4qRIxrek8ldvBMyAXRdutNE2/MvZgqtbX+7UsvduiMcQbGPP+q0kTqDtG0Qq+0ZPweTilPnjwD3wYQrOSjxwFZ1N9nPGYJ5fr5ulqSfVagZbaA9BkF4cBvd6+7fgc7eDDst/0wxA4OR1eTcuXf+EE02d0LI28YTcwJdnA3iPzhO7/T9SJ/0vai9o/1R9GPw/5tcXTVHwUdb/hrseEHneJ36A9vum1/EnnhW+zgod/2uzfFchT6w+3vd14w8nrbVf6f/0u7Nwrhxg9e5N96vxpVDvcG3tDr9fxeZcuae+WFfqeyG/o/j/yg7U+ue/1bkDrqRd1JNwgjD3av+h2ganu93sRrR92bbgTrq1HYDfwwnAxHvUL5sD3sDqJiBVZvzQreBv3bAI9tntXlURk8I8YHof13g54fmRiCs7uBB4txJWUqfKZCpJRwkx6UE65r0xFOmU5h63qbtluMAeXYn/STOfj61JAaYPFmu6VPpCQr7GCm6UIdQgLIV0Lq5984BBua1teZkMmOKoeODdvYwR0/bONx1REhKLSp7vycUbmq8w/9QBbL1Gripekh3A6pziRXiKRpgbmowFz0VUJnJEs1koYOpUxpBE5HTKET9+tj7OAHkmYQBFDIskOnLircUy9vQT4YqjwvVJVRHtVTFziCsWi6QoUf6/nV6A5xowkCesoTxu+BzVEOjEc78kyE74pgFehZBMlGYWPCcG2ej7+nk316aGJU2Rp/tGN8+TqVRaNlRjcV2YQnaJuWu7JL5Ur2yHnCF8UT8kwNnENPla9Qra8G5J6CqPwprffTktxbj2QKNFtK+sBEpvKcowk6ArE3oJ46QkZN9JUpw6+PUXsuhKKIcEQ/MKWBwXu6QjMpFiUnW/tUIS2Qliuk52wv46rgcHd6enZyfnl5cfL6zcX5+cVZJezWlSYAoPZnCH4ZHfJEcAppyZ5Zh375rHH0TBj3kPPu5E3zzaXbdC/OmpeXzqXrnp9cXp6eNc+br08vLsYb8w+aPLUUXFnoOXXdmk4vi6H3+Xx93T4ivxCpv7R7X9q9L+3eP7jdy3HLAt7LejgtNEmflb0VDYZUZalWNYoAVbMO0zpEE8T4A0lZ8jSwLaWYpnTx7UsBDmKTqU+aYfvdBVUqf6FqSjo3pe6wvnqrjvGlFLJww+uaLkTIKUsSynd98E3jm3+/uc1DcwOh0bXIePKfM/esLsm9QRdV0hlRc+F/kO1miowzyfTKNE9TSiSVr0zjcDfeOGscC/GeUbMaOy/4srWgei6gD1sKZTxB9By3cOPhpHFI37ANGQZt5AOVyiiTyRS38Np6d9NqNNZzofSmtV4KqTemL5SMTPNhEM5sZM18h1s4FTFJ51b8ruLRnCI44GRBkZghPacIcsBKPzaNTTGMbNlduBduLScgfYJLmRkln7nWy1o+lriW08Z2rTZSIdBZo7fRKV+OJYOuxsHcND+4P/CHXuS/Cv0w7PYDeFNAXH5v4+xEvOCSq2gUMk+dIcJb6uttsv50G5nEgkIYlt9AfTuj73bsRoJb32q6TzWS7k6bWH26k/2talN4uGt7wXJ/pwV0t0Wz18flnUPZIOxOHdV3v1J/dtZ396eMtQnh4ZSSK7Q7opganwkTkrxo++bjM0WDbJqyGNLjMIkEImYCQSTW7IGaMSsWEAuYxnIXV+Y3xtGW7UxItBCcaQEKmZtaigyqay6EtkoCHpLY1IUtTkgU1Wo0Hh8fj2OyyHhCjmOxADekLKZcmSTIc7GX7zh7lxMRq+I2E2bdkHRGJeUxbeSMVAO4AjhYY0+O3WPXVqrSC8Irgj6GSzseKxJe0w+6sUwJM+2cUW+dQ9YdfjjJE+mAWQ5bYydHnzu8Xk+JoiOZbjaw/Qd8xgLwLMHKAiueU5LYvLCVgdv2rXkVgUbFzHs4PgIo2xteHNOl/ijtuALEg34I88A0/yPFQiRwR5JH+AMGecQt/Bv+DUMqGu8YfDH7a5wSfp+ZxwhbvlD0JAP3lO3wLkYYy7agxFcVLb+7MgQoEu8p/x47uTUaluYjy+YvhYB+Tg== sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -36,7 +36,7 @@ Search flownode-instances ## Request -

Body

required
+

Body

Search flownode-instances diff --git a/docs/apis-tools/operate-api/specifications/search-5.api.mdx b/docs/apis-tools/operate-api/specifications/search-5.api.mdx index 6fc8223eea..30256e1e35 100644 --- a/docs/apis-tools/operate-api/specifications/search-5.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-5.api.mdx @@ -5,7 +5,7 @@ description: "Search decision requirements" sidebar_label: "Search decision requirements" hide_title: true hide_table_of_contents: true -api: eJztWFlv4zYQ/isEX9JuHR/ZOM0GRQFnkwDZFkkau+1DNihoaWxzI4laknLWNfzfO0Pqsi3nWPSlBwLEFjkz/DjHNyMvuRVTw0/u+BkE0kiV3MLnTGqIIbGG37e4SkELixuXIT/hBoQOZn/0eYtrFARjT1W44CdLHoIJtExJEuWGTo7BFxGnERgUD1Ri0SaJijSNZOCMdj4Zkl9yE8wgFvTNLlJAC2r8CQKLiqkmCFaiFdydyMiCfl5OhjUZY7VMpnzV4g+wqK1LhDRFay0+UToW1i8dHZJk2OCPy2ajiYihcWMO2kh/vydPfHtA0hqMynQAV7vMof9EYhtB0K60ES01BhL3jfwTXojER3kwWfe00FosUF5aiM12BAiDUdq+XGM7thA1e1jpcA1KvtPikGQxZe9g+B6fzs7x477ujCEBWtVXfslAL3b5qMxXPGoQRdt5jYusyAyma9rsmxAmIossIz8zaViv+y1CmosoI7cThCHtqAnq2UwnELJIGruzdpqPEUmY6zttMucO7NfOykPdd2fmEXnlERRIJkwASYiOZuMFc0leP8MZviujxnOBPFQuIqv7AoI3mmfgy7G0PBBSWEfSepUjWs+idZmzATcV06+Du+W3NbRktkLb/piMFJuCZXYGLIEv1gm0WKDShVtzlyGFPTL+Gz2ZPYa1qnClKtQ9L4j23AVMigAnOcsyM1NZFDIsc4RORmuK66Ltr3KfD/YGcdzxy2SuZADsNDMyAWNYUXfUEA4O+r3v37077r09Oj7q97u+cC8cv1c5uB2AXAJdm9NrJYxrO2i7dqmqg5T03Cvpsd9tuOxOm5u57ogmTwhUtDoDz+spXtmzykG325BTWRCge/6+LrlJuK8k4v+b53pjyDubr73XdUSrrIhe5LUailsw2EnMDjAkediURmfCCiQGzHQZ7s4lDPU4gvi71+aUscJm5oXhiDGdc/rcioRM0FQS7AiTW3gqROdaK1264W0DQSg9lmEIyboP3nTe/POve7h93Stl2YXKkvBfd91+U5IPbi5ZLZ0ZOIX/QLa7uTzItLQL153G2GtB7ztSvrtftZboAvUgwT3dt14xtnC6gZ0p6nWpMs4Zws7wqTPvdUIddnxf54RAEy87AJlGYuNL79HVSaeznKHy6mSZIleuXMvVUozzcZr2fDTdmIyakQpENPPnrYMd4YRCG9QbaPKhiYXi7k9vk+fScq4tzB13j7uNlkh0h5UqGyo7M2vTRjteuNHSyg8/PjpDkvOXLiJSdYxU/gTUMnzb49c357eD0fn+8Hw4vLy+ol5Cx+V6iLAe5dJKDtEBomcvxAvpiyJBP/w+cslEyX9bva6f+7ec9WFIhvX3Knded3cjryTzi5TPZdvubjblSqbqxbVa8ANYd3OIXDrXbo5kpamNEYz8N1HOVXkBXbvfL4DdZGMkBQrbdnAVE24Aww8r5+AGykCRjyy+pSExuM2ikukbK8wiGbBYJdIqAuQ0rVYZZf1MKetBEjehaYLli4YCaLBiHh8f24GIkbxFGw8kNyBIwGGRZHPX/pyvtDaUQxWYUlsq99zRMAENiLKTGzKdtWGK99rddtdXkLGxSGoHPcMRa04rc9HiK0snjQTm7SpHuMzp447Pe6SnQ15ElX5R8kxwx5fLsTDwq45WK1r+TC/mRF4VcXhi4zMQoc8Fn5f8vef6/RFBKEf77YmZSNFrDDC+qX1S9r7GgjfXwxGVU/7bVqxC0tHikX73wv8n/CP+Ufo5d7had+tLHolkmrlmwL1dKkCRkT9Kn23Uq7tZQRDJoobyh1MnwEbqAZIfi7rEoRIf/RvHX2u/yG0= +api: eJztWG1v2zYQ/ivEfcnWqZad1l0qDAPcNgWyDU0We9uHJBho6mxzlUiVpJx6hv77cKQsy7bcJsW+7OWbRN4dH97LcyetwfG5heQG3qCQVmp1jR9KaTBH5SzcRaALNNxJrS5SSMAiN2Lx+xAiMPihROte6XQFyRpStMLIgiQhgbGXY/iR50WGFiIQWjlUjkR5UWRSeKPxH5bk12DFAnNOT25VICSgp3+gcBBBYQiCk2hpdyYzh+bzcjJtyVhnpJpDFcF7XLXWpXI4RwMRzLTJuQtLL56TZNrhj4tuo4rn2LmxRGNluN8nT3x2StIGrS6NwHfHzDlUXLlOELQrXUZLnYGsIrDyT3wgkhDl0WzX09wYvoIIpMPcHkaAMFht3MM1DmOLWbeHtUl3oNQ7EaAqc8re0fg1RPDmfPwa7trOGBOgqr3yc4lmdcxHTb4maxhl2WFej7KMbTKDmZY2+yrFGS8zx8jPTFo26H8NESx5VpLbCcKYdvSMGXSlUZiyTFp3tHa6j+EqrfW9NpnzBw5bZ9WhHvoz64g88ggKJONWoEqlmrPpivkkb5/hDd80UYNaoA6Vj0h1t4EQjNYZ+HAsUQBCCrtIokc5IvosWp85e3ALPv8yuAd+20FLZrdoe7dqotkcHXMLZAo/Oi8QMaGLlV/zlyGFEzL+K73ZEyaV0+ykVagnQbB3q/wFbIFCzmqWZXahyyxlOXdi4Y22FHdFe1/kvhDsPeK4gQu11FIge1VaqdBatqk7aginp8PBty9fng2evTh7MRz2Q+G+9fy+zcHDANQS0xWr6XUrPF2xI7TdutS2gzT0PGjocdjvuOxRm/u5XnmmMWgLrWxgkdN+vyOHSiHQ/o1dcZ9gH0m8/zfL3UZQd7JQa4/rgE47nj3Iay0U12jLzNkjYEjyeVcaveGOM6mWPJPp8VwqjJ5mmH/z2JyyjrvSPjAcOVpb0+VBJKSyjitxJEx+4VMhOjdGm8YNzzoIQZupTFNUuz54Ej/551/3+eF132nH3upSpf+66w67knx0dcFa6czQK/wHst3P4aI00q18N5oiN2ieelK+uauiNQit30v0b3fRI8YUoBu4habeVmjrncHdAhKIl4M4NWkc+jgQAkO87AGUJoME1sGjVRLH64W2rkrWhTau8i3WSD6tx2faC9H0YzEkkGnBs0U4bxfsZIGMNqg30KRDEwrFPZzeI88VzRy7MXfWP+t3WiLRI1a22bC1s3Cu6LQThDstVWHYCdEZk1y49CYi245RyB+RWkZoe3B5dX49mpw/HZ+PxxeX76iX0HG1XhXtRLmxUkP0gOg9CMFG+u0mQX/4beKTiZL/evt5fh6+anaHH5m2v6P8ef3jjXwrWV+keW/adn+/KW9ltr24VQth4OrvD41r79r9EawxtTdykf9m2ruqLqBL/78C2VU5zaSgsB0GVzPuBzDGhZNL9AOk0OQjhykrjPabm0qmJ7YxO9OG5VpJpwmQ13RGl5T1C61dAEncxIXP11A0FECbxPH9/X1P8LxUKe8JnZMbMilQWR+c2rU/1SvRnnKqhW20pfbvscEZGlQC49qQjXeGKRj0+r1+qCDrcq5aB32GI3ac1uSiw48uLjIuFRn1CNc1fdzAckB6JoVNVOkPUmCCG1ivp9ziLyarKlr+QB/iRF5b4gjEBgvkaciFkJfwOnD90wlBaEb5w4mZSDFojITAwn1S9q7FgleX4wmVU/0vK9cp6Rh+T/+5+D0kcAu3QOnn3eFr3a+vIeNqXvpmAMEuFSAvyR+Nz/bq1d9sQxBq1UL53SsvwCb6ParvN3UJjl7DF8ZfAH7Cog== sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -33,7 +33,7 @@ Search decision requirements ## Request -

Body

required
+

Body

Search examples diff --git a/docs/apis-tools/operate-api/specifications/search-6.api.mdx b/docs/apis-tools/operate-api/specifications/search-6.api.mdx index 84f7b4a469..eefeae0235 100644 --- a/docs/apis-tools/operate-api/specifications/search-6.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-6.api.mdx @@ -5,7 +5,7 @@ description: "Search decision instances" sidebar_label: "Search decision instances" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -36,7 +36,7 @@ Search decision instances ## Request -

Body

required
+

Body

Search examples diff --git a/docs/apis-tools/operate-api/specifications/search-7.api.mdx b/docs/apis-tools/operate-api/specifications/search-7.api.mdx index cec8aac214..9a22cd167e 100644 --- a/docs/apis-tools/operate-api/specifications/search-7.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search-7.api.mdx @@ -5,7 +5,7 @@ description: "Search decision definitions" sidebar_label: "Search decision definitions" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/isEX7J1ji0ncZoawwC3cYBsQ5LFXveQGgMt0TYbSVRJKqkn+L/vHFKSJVtO7WIv3YYAsUiey8dzlzJq2FzT/gO95L7QQsaXfCZiYeCJTlpUJlwxXFwHtE81Z8pf/Pmatqjin1KuzVsZLGk/owHXvhKJZevTkaUj/DOLkpBrIPdlbHhskJQlSSh8K7TzUSN9RrW/4BHDJ7NMOEiQ04/cN8CYKIRgBEiB05kIDVdfphNBhUYbJeI5XbXoI19W9gVAmoO0Fp1JFTHjts7PkDLIrXHdLChmEW88eOJKC3enF7WcnlS13IMxheIRWEjv0NhE+svB16ly3+y6QxPx+4PuBa5msWm8CZ4KE+JWQ8TBqRZ/8T3VuHAczOohwZRiS6AXhkd6O1QQgZbK7M+xHYQ8bHaSVEENSn7SojxOI0yywegdrC6H8DOpmmKEgFbVnd9SrpbNFirTChQNwnA7/WCTFE6Eh4JXk+9gwdLQEDQyEZp0ve8BzxMLU7Q56h/hiZwRxU2qYh6QUGizM8MbtbA4yNktM0qz+noVVbmbe1Zl7o3DNKAPCdM+jwOwMZkuiU3Kqgor96F0GM0Jci9ZZ6wmBQInNA++vaG0HA6krwNpHWSG1hfB2pjZQJuw+Veh3bJaDSxKXYNtf4jHksy5IWbBScw/G0vQIr5MlnbP3gUZjlD4e1zpIwJJKmFnnaFHjhDkWfw6AXyzvA8QvZBpGBDIb0COQiuMddL2V1nPuXqjYrieF3Cr8FLoBTCcnPS6r9+8ueienl+c93qeS9Mr23bWYbdt9JwC7Jl3gDUx7FW6SQX9upmVXaNbFsCe13CrmpzNMLblQ7maDcRGpdxu6AQ876rFiec1xEvq+1z/g016s4weWF7/793faO/OG6urAIc1ZCMNC/eyRwXDPdfQy3QjFKQ7a4r2S2YYFCdIQhHsDnmIyGnIox8ODX1tmEn1npaOIOvyCr7lRxGDqNhvPnQbL7lnqJRUpRlOG+qVVFMRBDyu2+BV59W3f92z7eveSEOuZBoH/7rr9pqCfHB3TSrhTLhl+A9Eu30p8FMlzNI2zin0e66Obe94mKxaGZhAPgpuV5PW/pMTxQuYhcQunEhtbcHMAladp26n4DiucHTcrEERkcLWYgGlCsoczZyFV/1OJ1uAtFU/S6Byrux0oASb5tM9njnv2rEdOEPps3DhANTBj2GIwQNsbziN4VCDceC0t9GSSTloF+IuvAuvURKS7pCyjo61nIUxSaMcR9woaeUGMuetEdK5SxceWvePRGC3LDo3vb0b3g/Gw+PRcDS6vr3BzoLqcj5AWPV6KSWHaAHh2hHRgvqqCNif/xjb4MJkuF9/5Bi6l6763CaC6kue1efV54/1aQ6+XJfThrd7llhT7xwhdnDfbGh7cS7wql2/knluEvU2x+bMOm5zNi1Vbcyl6J2ZtI7I0/XWflPi5C6dQgnCoNgOHUmYnUrhx4gnbqdpX6IHDLyTQhmyh0XdwCdSiIXSQyIJWSgRkOU0SqaYUwspjQOJlRBEIyyXkhgeGvLx+fm57bMIWgVrg0I0A4DkMEEjbe7EX/Od1gZzIH1dcgtp1x3FZ1xxQNnJBelObdqk3bbX9lx+ahOxuKLo5YpUs1kZ6Abe0TpJyIT9WGABZnmxeqBP3UowHNfF5QULnOvqzgPNsinT/HcVrla4/Qm/SWDpXJcpV1bpgrPAxYbLAvrOdZrjMWIq33m2XyuwJDuOAfg7MS/STipF+O52NMbkzb8/RjJAHsWe8dsk/O/TD/CH4Zi4+wGR3c9oyOJ5alsRdXIx3VmKBiqNuFEd7M2KchQvKyh/fGsJyFg+8vinogrAQAtL91r2Nx50W08= +api: eJztWFtv2zYU/ivEecnWKb6kdZsKwwC3SYFsQ5LFXveQGAMtHVtsJVIlqaSe4P8+HFKWZVtO42Iv3fYmkefynfuRSrB8biC8hTOMhBFKnuFMSGGFkjAJQOWoOb1cxBCCQa6j5M9XEIDGTwUa+0bFCwhLiNFEWuSOLYSRo2P4mWd5igYCiJS0KC2R8jxPReSEdj8Yoi/BRAlmnJ7sIkcIQU0/YGQhgFwTBCvQ0O1MpBb1l+lE3KAxVgs5h2UAH3HROBfS4hw1BDBTOuPWH718QZRx5Y2LdkGSZ9h6cY/aCG/To1qenzS13OCnQmjMUFqzR2Mb6S8Hm9PkvtxnQxvx+4Pssii5tK2W0K2wKR21ZNwyACP+wieq8ek4nG2mBNeaLyAAYTEzu6lCCIzS9ukcu0mIaXuQlI43oFQ3AaAsMiqy4egtBHB2PnoLk6YrRgRo2Tz5rUC9aPdQXVZhCcM03S2/YZqyVRBZXPMa9l2MM16klpGTmTCs3/seArjnaUE+J/0julEzptEWWmLMUmHs3gpv1cJlXLE7ZpLm9A0aqqowD5zKKhqHaaAYMm4ilLGQczZdMFeUTRVO7m0dMKgIqii5YCwnKwReaJV8T4YSeBxEvwkkOMgNwRfBupzZQpvz+Veh3fHaBliSugbbuZNjxeZomU2QSfxsHUHAIpUv3JmzhRiOSPh7ejNHTEir2FGjQo88YedOOvwmx0jMqjnATKKKNGYZt1HihDYYN0k7X+U9H+qtjuFnXoxO4ZkwCQRwcjLov3r9+rT//OXpy8Gg58v0nRs767TbdXpFMV2wagKsiacL1pgmDfTrYVZPjX7dAAe9Fqs25Gyn8dL1D40mV9L47nDS67XkRxFFaP7BobzdNg9sp//P6m90VleD1Ff8YQPYKsvTJ/mjgeEGTZFa0wqF6F60ZfsZt5wJec9TEe9P+VyraYrZD4emvrHcFuaJns7QmKpj78RRSGO5jNov/cFj4TnXWunaDc9b+pPSUxHHKDd98Kz77Ns398WuuZfKsneqkPG/ztxBW5IPry9YI50ZOob/QLa7j4Co0MIu3KCcIteoj93suJ0sgxIipT4KdG+T4OmbEpABNlE0dXNlnC+4TSCE7n2/u+I4bnB0/W4BhEjTaHGACp1CCKX38DLsdstEGbsMy1xpu3TbgBZ8Wm3zdOej69Z0CCFVEU8TD2AT/DhBRhc03mj7oiWG8sBr75An83qxXok77Z32WiUR6R4p6+xYy0mszVvleOJWSUu/gPlojYjOG72K0Hp+5IKm5Wpyw9X1+c1wfH48Oh+NLq4uabKQuopvGWxEvZZSQXSA6N0TwYr63Sphf/5j7JKLiuFm/VPj3H9kbe5pIm5+1Dl9vc39Y31bga/f622jt3+XWFPvXSH2cF9uaXt0L+g1p36j8vzm2dtek0sXuO1dtFa1tYdSdGbKBaIq1yv3DwnZdTFNRURJsZs6inG3lTIeWXGPbnuOFEXAYsxyrdzlqm/QE1uJnSnNMiWFVQTIcVqtCqqpRCnrQVIn5JGrBl+SlB4m7HYfHh46Ec8KGfNOpDJyQyoilMaFvgrir9VJsMUcq8jU3EK5967GGWqUEXYrQaa7sW1Cv9Pr9Hx9Gptx2VD0eEfa8Fmd6BY/226ecuF+DjiAZdWsbuG+30iG401xVcOaBFXfuYWynHKDv+t0uaTjT/QPglrnuk35tgoJ8tjnhq8CeOsnzfGYMNXfOLufFdSSPccwijC3j9JOGk34+mo0puKt/jdmKiYezR/oXyR/gBDu4A4oHXNvX1j68xJSLueFG0Xg5VK584IcVDtxqzs4y1btSC4aKH984wjYWH1E+dOqC4ClV/8Z9jeJZlWE sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -36,7 +36,7 @@ Search decision definitions ## Request -

Body

required
+

Body

Search examples diff --git a/docs/apis-tools/operate-api/specifications/search.api.mdx b/docs/apis-tools/operate-api/specifications/search.api.mdx index 4abf8ac4b9..24b38ff933 100644 --- a/docs/apis-tools/operate-api/specifications/search.api.mdx +++ b/docs/apis-tools/operate-api/specifications/search.api.mdx @@ -5,7 +5,7 @@ description: "Search variables for process instances" sidebar_label: "Search variables for process instances" hide_title: true hide_table_of_contents: true -api: eJztWOtv2zYQ/1cIfnHbObGcpo8Ew4A0TYBsQ5PFWffBywdaom02EqmSlFNP8P++u6Msy7aSOMAwYA8EiE3y7niP3z3oknsxcfx4yD8Lq8Qolfy2y00urfDK6IuEH3MnhY2nvMut/FpI5z+YZM6PS55IF1uVIx1QDYiKzSoxDuhjo73UHmlFnqcqJpm9Lw4ZSu7iqcwEfvPzXIIIM/oiYw+MuUUNvAIpcDpWqZf2abo7OW8QKbh7AmxdPjY2Ez5svT3kC+KLpXMX2nmhY/nTzowuhgt3J9cikw1S563SEzyYibRoP/G20OAnmTROR8akUmg6llpof5G08OKp8ilu1bFEldUf8kl1Xx8QKYXwZLzubWGtmAO98jJz21HAe52xfneO7fjKtM0gwKFN1lSpTrpc6iJD0J4MTmH18Qw+bpsOGKBCi+bOL4W086Zf5DeR5WnQ4CRNtwF9LX1htWMiTVeoZi8SORZF6pmlY5Yq5xn6mCnH+tFLvgouXj+ovN8u+iBqSG5wVkE7iFDEOcGfCZ2wpZ93UfRe+SnrbCO9wzpHUfSuf3R08Obw3WG/f/S2Q4JlwoSLpU7AxWw0ZwTehk6rNGxLH74plNe4GNYh5pXMKq4UvgUF7kpMMLIP2qblN98wDrDbbtuaBR28rrPPXpyafM7IEGbGrINqfcaV6zDSDHdzK2fKFA4C6yC+7iX7W4zfyLohdxnEkXfXJB5EEXiJ8Iw1WFksD1ApJG243GgXgAyELZW5iFHjv64gb+b1M/P9/zq9XacrvARUPq/4euNFupOhjZuvA8gbCuDpYRt8PgovmNLgCpU8jCEIFcjJvnsuliCyvnBPqh8aVAZgEJP2gKgKJO3Roo3HQnFmrbG1G15vu+Hc2JFKEqnXffCq9+qfb+7htrmfjGfnptDJv87cN20gP7m6YA04M0kM/wG009gXF1b5OTWrEXQjafeoRg9vF90SXGDulKQVdKvHh35qzFXVZksdsfNk0k8NNsHcOHKL8FNY9Wb9Xs3cqx8aTtqZtI4UKiwUN14GDy+Oe71yCiIWx2UO9XJBPXr54gCT8SxEl6Y04ExNLNJpuHVd+ZupZHiA1R8nAA9rxEG4fZ8aUD1wLcW9j95HrZKQ9AEpK3Ss5Ey9z1vlBOJWSYswLoRoDZAuGL2M0Kpr5Aqb37Kx8curs+uTm7O9wdlgcHH5CfsJXlfxgYbNqNdSKhVJIWpvRMSX1OdLwP742w2BC5PhevVEPAsD9vr0RDdE7Z09avbtqFa+HvqrZrzaaPRgHIaaXbeRDWGWjjYHrZKcuTmj1bI3RlT02NiQc6oUuqQ3smRXxQjKAgZqO5yGCRq94MOrmaQZPjboFZy2t/IEvrGlWEykzGjlDSpEnN6aAnE+NcYHJbE6gWhUK6QJhsxBjtzf3+/HIoPyLfbhQnQDKClhTETayrE/VzvdDebExK7mVobWPSvH0krQslcJcj0akCBNg7H9/Wg/CjnjfCZ046Kdq8Sa+2ocepj9e3kqFE1WpGtZFZAhn/XXSsAyyvgrRqgFQ16WI+HkrzZdLHD7K74EsZyt+EKp41MpkoCNgFN+Gqr/3g0qsgLg1uyMZTJwnEC8c/8o7W2jGl5dDm4woapfVDKTII8V9/hrC/w/5r/DH8KRnELZTvslT4WeFNQeeJCLKSgK9MpqIF3PWLJsWSL0vKHl9x+IgN2YO6l/gINgjcclvdAWfwKwvivT +api: eJztWFtv2zYU/ivEeXHbqZGcppcYw4A0TYB0Q5PFWfeQ5oGWjm22FKmSlBNP0H8fDinLsq02CTAM2CVPEc+F5/KdC12B4zMLo2v4yI3gE4lwE4Eu0HAntDrLYAQWuUnnEIHBryVa91ZnSxhVkKFNjSiID0Yw9lxs0aixEEGqlUPliJcXhRSp1xl/tiRQgU3nmHP6zy0LhBHoyWdMHURQGLLACbREnQrp0NzP9wWXHSahHM7QQARTbXLuwtGrA6i9XIrWninruErx5wcL2lQXj2BXPMcOq3VGqBkRFlyW/RRnSpVyh1mHOtFaIleejIord5b1yBJVOElHbS7JZPEH3mvui33P6lN4NN2MNjeGLyEC4TC3u1mge6027uESu/lF2edQBNpkG6Y0lAhQlTmB9mh8DBG8Oxkfw003AGMyqO6e/FqiWXbjgnc8L2Sw4EjKXUBfoiuNsoxLuUY1e5LhlJfSMePJTArrGMWYCcuGyVNYJ5euHzfR71e9n3Q0dySbpO0npOLUw59xlbFVnB9i6K1wczbYRfqADQ6T5PXw8HD/5cHrg+Hw8NXAK8aMcZuiyoSascmSefB2bFqXYV/5wLZSaHFx3aYYGp1NXn36ap+4Cz6jzH7TN4V3ruPcVJt+3zY8GNB1gz325FgXS+YdYXrKBmTWR/qyA+Yto9PC4ELo0jKDtpTOPmV/i/NbVXcNNudSQrShcT9Jbmr/R03YFlrZANz9JOnpxGVKFv51DXi7jh9Z3//35d2+3OAjoPBxzdZpx+WDHO3cfBlA3TGAqAd98HnHHWdCLbgU2bcxVBg9kZj/8FgsWcddae81PwykHK3ls/6EiAYk/dnyB99LxYkx2rRheLEbhlNtJiLLUG3G4Fn87J/v7sGuux+0Y6e6VNm/zt2XfSA/ujhjHTgz9AL/AbT7NS8tjXBLP5wmyA2a575HX9/UUQWp1l8E+q+b6J4l3w/ipmuzlY00eXJ0c01Dr9DWh4W7OYwgXgzjVjhuHxYWzQKN9QaVRsIIqhDhehTH1VxbV4+qQhtX+5m8emGMKiBayK7fymAEUqdczsOtm8ZfzZERgbo/TXw3R0Y4CLfv+QHULlgrdW+SN0mvJmL9hpY1OtZ65s4VvXoCc6+mOqwHIVtj4gtOrzK0nhqFoOG3GmxwfnFyeXR18nx8Mh6fnX+geULXNXJ1tJH1VktjojfIjzfPBCvu0xVg3/9+5cFFxXC5fhKehIV6c1vyNyT9kz3pzu2kNb5d8pthvD7ozGBnSuxO3U41hN052V6sKh/M7Z2s1b21klLEptoHpymhc/8mRnZRTqRIKVG76dSM+9WL8dSJBfqdPdUUFdqud+qECcVWaqmQcq2E02SQl3RGl4TzudYuGEndiaceoaFMKGV2FMe3t7d7Kc9LlfG9VOcUBilSVNanownsL81JtCWc6dS20kL779jgFA2qFONGkY39goTGBmeHe8leEmrGupyrzkUP7hIb4Wtx6PDOxYXkwm9W3taqaSDXsBhutIBVlulXi9ALrqGqJtzib0bWNR1/pZcftbO1XGh1MEeeBWwEnMJx6P7Pr8iQNQB3dmdqk0HiKE2xcN/lvel0w4vz8RUVVPMLSq4zkjH8ln5d4bcwgk/wCQiOPii+2v15BZKrWenHAwS9VIK8pKisF9LNivWerVqEWnas/PGtZ2BX+guqnyBqvHH06V9k9Z/w5iYI sidebar_class_name: "post api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null @@ -33,7 +33,7 @@ Search variables for process instances ## Request -

Body

required
+

Body

Search variables diff --git a/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx b/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx index 6d1356d49e..e8f3d08b78 100644 --- a/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx +++ b/docs/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx @@ -5,7 +5,7 @@ description: "Get sequence flows of process instance by key" sidebar_label: "Get sequence flows of process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVktv2zgQ/isET93WsZw2WwTGokAKOIXbogliFz0EOdDS2GYjkSo5ctYQ9N87Q0qOHyp297hoDhE5nPd8M+Naolp5Ob6Xt86m4P3UeFQmBfkwkLYEp1BbM83kWHr4UQG9XOf2yb/ffoKtHMhSOVUAgmMdtTR0IdbH8KYNHUuFazpn4FOnS1ZGRJIVdinKaFLozuZAOjKiHZA9dBUMpE/XUCg5riVuS1atDcIKHLEurSsURtLbC9k0DyzuS2s8eJZ4PRrx59D0rErZJsmnllQZZJaXyUv+nBhTzqkQCULh9+genTYrMkl/A3nRZ2dqNirXmeCAwOOhPVWWuU5DahNKwiKH4tV3z3I9TtjFd0hZAXFSQVDH6ChlWPl/zMyb15JcLChktYKeELhMbfb7HiPhNHB60ZgzaeKcdbLLxJvTTFxbt9BZBubf5fx/Fe7Fabh3seDApfe2cikIY1EsbWWy3wMFf/b1w9XtVOwFLCAI/Ab5IKKHtHIat2FELkA5cGc8Isf3D82gphTYRw3h9nA8KT8Aim7wiiVP3r7BKRZbEWcuzeK15Wm9gpAcnr5jmWzOk1bmrJPxSU0iTdJpPwvaJXvrNt08r1xO4nXMfjNOknptPTbjurQOG2LeKKcVVSqknN9i5ZeqyjnVuU1VHsjHgc3XIPiBNwaHhHRnjETrQ84y2zhUdzm6HPVqYtZfaHlGzrOeNWLZqycy92oK+6Wr5Iz5YtBd9Z6XRqnjbmyX4c3t5O5qPjmbTWaz6c2XbjG2cuThPiJ2WloXg0N8j0yy477uwPzx2zwAT5ulDeItAG/C7gZxWy2oqTiU04CtUGEZ0gf1BoQymUhtUebA4+sYZHwSnVpqJlFYo9Ey9IMkOlsxEtbWIrdD7G1SzW5FIHFQnlD09PQ0TFVBE1ENySAngZwEWtzM2+btc0sZHAlnNvU7aW3DPXGwBMcwTlpFPmGtDOQY7PlwNBxFVHkslNkz9F977CCLu4Ih/I1JmSsqbtO6XLf9dy8353FSHXYg0cZR5VETEtJiL93Lul4oD19d3jRMJjYXBsdz64VGzbTnM3X+UuUeTpzcjVn54q79ifWH+PXPsN6YOnybbWj8vOIbHQNww/+G5plcg8oIqexVfLkikJW4J8Orn7tpN6w+TOb0rCpO1i6hR4gPCntd+Ot9YBBz+wjm3c4h5Cu71DQ/ARnwu5g= +api: eJzlVt1v2zYQ/1eIe9o6xnLabCiEYUAKOIXXYQmSFH0I/EBTZ5uNRCrkyZkh6H8fjpSc2Fax7XGoX2R+3O/ufvfFFkitA+QPcOOdxhDmNpCyGmEhwdXoFRln5wXkEPCpQavxqnTP4cPuE+5AQq28qpDQM0YLVlUIOTzGM2Mhh1rRBiQUGLQ3NYNBDp9wJ9xK1EmlMINOCR6fGuOxgJx8gxKC3mClIG+BdjVDG0u4Rg8SVs5XitLWLxfQdQsWD7WzAQNLvJ1O+XOo+q7RrBMkaGcJLfGVN9kb/pwoU96r6AlhFV7tB/LGrqHjn4SLMT1zu1WlKQQ7hIEO9am6Lo2O1Ga1d8sSq5++BpYbMcItv6JmgNpzQMgk7wIpasI/MvPuLXQSKgxBrXHEBQ5Tz/7YYdo4dVwCGSp5a+a98zAw8e6UiSvnl6Yo0P47zv9X7l6cunubAo4c+uAar1FYR2LlGlt8H1nw81g9XN7MxSuHBUaB74CPTkJA3XhDu9gil6g8+jNukfnDopMtaOceDcbV4rhTfkQSQ+MVK+68Y41TLHci9dwKaeO4W68xksPdN4dse571MmeDTMjaR9x12YB+FtGBrfXboZ83voQc2sR+l2dZu3GBurytnacOJGyVN2pZJvL5LEV+pZqSqS6dVmXcPnbsfoOCD3hisEu0QcE5krRPmGXWcQj3fvp+OorEV7+B8pI5LzgbonoUJ10eRYrzZYjkHd9LTg/RexkatUmzsR+G1zez28v72dnd7O5ufv3nMBh7uU4eZMQepTcxGsTrdAmG21dDMv/+5T4mnrErF8X7BLyOsxvFTbMsjWZXTh12QsVhKJQms0WhbCG0q+oSuX0dJxn/EwPsynlROWvIcepHSfKu4UzYOEdcDqm2lY4xTInEToU8y56fnydaVY0t1ES7ikkojUYbIo89b3/0O/JIuHA67KWNi+vM4wo9p3HWA4WMUTmRk7Pnk+lkmrIqUKXsK0X/tcYOWNwHjPAvyupSGctaosltX38PsD1PneqwAkFCniCPinAh+1p6gLZdqoCffdl1vP3UoI+N46X0YqEWJvD/AvKVKgOeGLlvs/DDbf/E+lF8+xk26tOQ33YXC79seAUyvvbSm69bdBI2qAr00ap0cqk11vRKhkc/V9O+WX2c3YME1TBZe0KPMj4Cjprw64d4Qdy7R7S/7Q0iXrJJXfc3GfC7mA== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx b/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx index e9df1fff30..6769dce1f1 100644 --- a/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx +++ b/docs/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx @@ -5,7 +5,7 @@ description: "Get decision requirements as XML by key" sidebar_label: "Get decision requirements as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v0zAQ/iuWP/FSmu4FhCqEtIluKhtsWotAqibkJtfWW2IH2+moovx37uwka9cg+Ir40vrl7rm3584puRNLy4cz/gFiaaVWN/CjkAYyUM7y2x7XORjh8GKc8CH/maWnmwvYfD/gPZ4LIzJwYAig5Ao3KHIPG7yTCpe5cCtcJ2BjI3MCwUPUZnrBktoeM9sGe7zeojFnCuhxG68gE3xYcrfJCV8qB0swKLrQJhMuHL055lV1S+o218qCJY3DwYD+du1PijgGS6ZijVDKeWz46SIMjtZ7Fq0zUi0Rv6p6/LgLc6zWIpWJjwWs28UWeZ7K2Ocwyo2ep5C9vLOk12FLz+8gJgCUxMw7GSKxTrjC/jELR4ccXcwwPLGEjgioLgil4u7LcLAfN95Il9LRyBht2kwc7WfiTJu5TBJQuzl4Eb3498M93g/3JhQcqPRWFyYGprRjC12o5P9gweuufji5HrOtgBl4hf8gH3hoIS6MdBs/E+cgDJhXNBOHs9uqV2IK9L0Ev7t9OhrPwXXPRSYs+/bpks03LIxXHLsrTQN5CT4tNGiHPFofRIlJohKFKj/OyB2zbiZ0YXDA8TKktxpGUbnS1lXDMtfGVSi8FkYKLIXPKd2F0i5EkVIuUx2L1B8/9Xy6AkYX9AbQdHe4JxIE631KI9nYhXs7eDvoRCLR36A8UuMRZ+Vc3okThDuR/GPRlGpCciHopjxtuUUuL3zK6+ft6np0czIdvZqMJpPx1efmqav10MPtkrcotYveIdoHId5InzVs/fh16pkl1UJ79ZphV/4VBnZdzLFrKJT9gDUT/mXDPyfXwIRKWKyzPAWaT9g5/rKhOq1YA4vdwjKtpNPEba/pjC6ICSutHfE9NC9Ck1uBSBSURRY9PDz0Y5HhyBN9NEhJQCcBX2GSrfN2WZ/0nignOratttR+HxlYgAH0MqqBbESoROQQ7EF/0B8EVlmXCbVl6O+baCd/ban8p0CeCixrVTtb1g0242v67sEWw99hAKEuQyqFZpnxspwLC19MWlV0jK+D8a3/2Fu+ExNpaY0dvBCphT1f2kHJn9UfZMlz9ocvp07/GxarjW/vtKAdLj09/W+FY4mvQCTIR3It3JwglXK3pdN+IVHjtOPnfDRFGVFQdtoMPiG3R+30492pF2BTfQ/qfeuVoy35VVW/APihoiw= +api: eJzlVm1v2zYQ/ivEfVo71nLarCiEYUCKuUWWdgliFy0QGANNnW02EqmSlBND4H8vjpSUONbQfR36SeLLPXf33AuvBS82DvIb+BOlcsroa/zWKIsVau9gycHUaIVXRp8XkMN9Vb7dX+D+nxPgUAsrKvRoCaAFLSqEHG5xDxyUhhxq4bfAoUAnraoJBHK4wD0za1Z0+ph9rJBDtywg97ZBDk5usRKQt+D3NeEr7XGDFjisja2ET1uvTyGEJYm72miHjiReTqf0OdQ/b6RER6qk0R61j9h477P7qqT/I43OW6U3EEIIHE7HMM/1TpSqiL6g84fYoq5LJSOHWW3NqsTq16+O5EZ0mdVXlARQW2Leq+SJ88I37ocsvHoJgUOFzokNjnhAcXFeaDl+mDaO/ebglS9pa2atsQMTr46ZeGfsShUF6kMOnmfP///unh67e50CjhR6ZxorkWnj2do0uvg5suC3sXo4uzpnjxxmGAV+Aj4CB4eyscrvY09cobBoX1BPzG+WgbcgjblVGFfLp63xPfrxvsiEY18+fmCrPUvttUK/NdSQNxhpoUabQ7Y7yQpbZO0t7kNsZ2SO3fUdurEl5NAmekOeZe3WOB/ytjbWB+CwE1aJVZnYpbMU2rVoSuKyNFKUcfup5YstMjqgN4C6u98ioyRI2idEI+k4hHszfTMdRaKr/4LykBoPOFvv61GcdHkUKT4WfajmdC853YdnCLeo1UWkvHveLq9m12eL2Yv5bD4/v/y7f+o6ucAPQj6gdCZGg2idLkF/+12frX99XsTMUnptoniXYZfxFUZ21axKJcmVY4cNE/FlY0J6tUMmdMGkqeoSqT/V1sTDPtXpj/Wwa2NZZbTyhnI7SnprGsqErTGe8j0Vr5AxhimRyCmXZ9nd3d1EiqrRhZhIUxEJpZKoXeSx4+1Dt8OfCBdGukFambjOLK7RopaYdUAuI1RK5OTsyWQ6maascr4S+pGi/15EB/wNoYqjQF0KpQk/Gtt2BXYDO5p7Cku9PU8gVGVL3hXLDbTtSjj8ZMsQaPtbgzaW/kNtxUoslKP/AvK1KB0e2TI0SvilG8iKZ+wHk9Oo/X0W630s77KhFfA4paVZLSwDhy2KAm00LZ2cSYm1fyQzTEhUOEP7eT9bAAfREDsDg0+SO6KO2vH723iBLcwt6j8Gqzwtya4QvgP4oaIs sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx index a4d4935afc..c2c500718a 100644 --- a/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx +++ b/docs/apis-tools/operate-api/specifications/xml-by-key.api.mdx @@ -5,7 +5,7 @@ description: "Get process definition as XML by key" sidebar_label: "Get process definition as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVltv0zAU/iuWn7h0TccGQhFCGqJDg8GmtQikaQ9uctp6S+xgO92qKP+dc+wkXdtweUW8tL6c853bd45TcScWlsfX/NLoBKx9D3OppJNa8ZsB1wUYQZuzlMf8Ic/erT/Bmg94IYzIwYEh3Yor3KDAnb+TCpeFcEtcp2ATIwuPF3PUZXrOimCKpRtbA27gRykNoB1nShhwmywhFzyuuFsXBC6VgwUYFJ1rkwsXjl4d87q+IXVbaGXBksaL0Yj+to1PyoSson6iEUo5jw0PLsK4aL1n0Toj1QLx63rAj/swz9RKZDJl5DxYt40tiiKTiU9fhCHPMsif31rS67GlZ7eQEABKYtKdDJFYJ1xp/5iFoxccXcwxPLGAngioKAilkv7LcLAfN95Il9HR2Bhtukwc7WfiVJuZTFNQ2zl4Fj3798M93g/3KhQcqPRWlyYBprRjc12q9P9gwcu+fji5PGOPAmbgFf6DfOChhaQ00q39QJyBMGAOaCDG1zf1oMIU6DsJfnezOxc/gOsZikxY9v3zOZutWRisOHCXmgbxAnxOaMTGPFodRo3ywUbZRhUq1X62kW9m1c7q0uC041XIdR1HUbXU1tVxVWjjahReCSMF1sUnmO5CneeizCixmU5E5o93w5gugdEFvQY05x3uiRHB+pBySja24V6PXo96kUj0Fygbnmxwls4VvThBuBfJvxxt3SYkF4Jua9XVXhQyvHvNQ3dxOb46mY4PJuPJ5OziS/voNXro4eP6dyiNi94h2gch3kqfttT9+G3qaSbVXHv1hm4X/jUGdlnOsIUolP2ANRP+mcM/J1fAhEpZovMiAxpWLcla3tOKtbDYOizXSB9NRPeazuiSmLDU2hH5QycjNLkViERBWWTR/f39MBE5zj8xRIOUBHQS8Ekm2SZv583JYEc51YnttKX2+8jAHAygl1EDZCNCJSKHYA+Ho+EosMq6XKhHhv6yo7aS19XJfxQUmcCa1o2nVdNt13x1GMbRbr/haRxAqeWQV6FzrnlVzYSFryarazrGd8P4obBpNN+WqbS0xvaei8zCnm/dCOVPrppPpafsdx9UvcG0fFZr3+hZSTtceqL63xqnFV+CSJGZ5Fe4OUFSFe6RTvfhRC3UDaYP4ynKiJJS1aVzh+YetdePN++8AJvqO1BvO68cbcmvuv4JhPioRg== +api: eJzlVm1v2zYQ/ivEfdo6xnLabCiEYUCKuUXWbgliDxsQ+ANNnW02EqmSlBND4H8fjpTk2NZevg79JPHlnrt77o0teLFxkD/AnTUSnfsZ10orr4yGJQdToxW0uCkgh+eqfLf/iHvgUAsrKvRoSbYFLSqEHB7jmdKQQy38FjgU6KRVdcTL4SPumVmzOqlixUEXB4tfGmWxgNzbBjk4ucVKQN6C39cErrTHDVrgsDa2Ej5t/XAFISxJ3NVGO3Qk8Xo6pc+x8nkjSStwkEZ71D5i47PPnquS/s80Om+V3kAIIXC4GsO80TtRqoKR8ej8Mbao61LJSF9WW7MqsfrusyO5EV1m9RklAdSWSPcqeeK88I37VxbevIbAoULnxAZHPKCgOC+0HD9MG+d+c/DKl7Q1s9bYgYk350y8N3aligL1MQevslf/f3evzt29TwFHCr0zjZXItPFsbRpdfB1Z8P1YPVzf3bAXDjOMAl8BH4GDQ9lY5fexIa5QWLQX1BDzh2XgLUhjHhXG1fK0L35AP9IUmXDsz18/sdWepcZaod8aasQbjJxQi80h211mnfDFQdhl7SPuQ+xtZJvd9b26sSXk0CauQ55l7dY4H/K2NtYH4LATVolVmaimsxTntWhKIrY0UpRx+9SNxRYZHdA0oD7vt8goI5L2CXFKOo7h3k7fTkeR6OrfoBzy5ICz9b4exUmXR5Hi5OjjNqd7yek+VkPsRa3S3OsG3e3d7P56MbuYz+bzm9vf+qHXyQV+FP8BpTMxGkTrdAn62+/71P3lj0VMM6XXJop36XYbpzGyu2ZVKkmunDtsmIhjjgnp1Q6Z0AWTpqpLpGbVJ1mf9/THeti1sawyWnlDiR4lvTUNZcLWGE/JnypZyBjDlEjklMuz7OnpaSJF1ehCTKSpiIRSSdQu8tjx9qnb4SfChZFukFYmrjOLa7SoJWYdkMsIlRI5OXs5mU6mKaucr4R+oeg/VtQReUOc4qOgLoXSBB4tbbtqe4DdZWpHp/UGHPIESiW35F3lPEDbroTD320ZAm1/adDGpnAotFiWhXL0X0C+FqXDM9uGFgrf3HdPpW/ZPz2oRp3p81nvY6GXDa2Ax5dber+FZeCwRVGgjXalk2spsfYvZIaHE5XQ0Jg+zBbAQTRE1UDnSZpH1FE7fnwXL7CFeUT902CVpyXZFcJfhPioRg== sidebar_class_name: "get api-method" info_path: docs/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx index eef02cea21..e1e428e5b1 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-id.api.mdx @@ -5,9 +5,9 @@ description: "Get decision instance by id" sidebar_label: "Get decision instance by id" hide_title: true hide_table_of_contents: true -api: eJzlV1tv2zYU/isCn7bOiZw2HQpjGOAuSqHVsI3YaQcEQUFLxzEbidRIyqkh6L/vHOpix5a9bE8b+iSK537Vp4JZ/mDY4I5dQSSMUDKUxnIZAbvvMZWB5pYuYzZgiw0+eizjmqdgQZNYwSS+IFEQSUg8Zdyu8ByDibTISBovw9hTSy+ubXiiMdJjGv7MhQY0YHUOPWaiFaScDQpmNxlpNlYL+cDK8p6YTaakAUP01/0+PZ4bmuVRBMag4khJC9ISC8+yREQuEv+rIb7i0I5afIXIUoCa4raisoKBHfrSY4+w2bkXaOoBNAovlU65ra5+viROjNTCoY4eA5mnlPnrYTgKrvAi+DQc3Q7n7nw7/jiefB6702wa/BZeh3h/j/pgzZPcxXLVqfgZyzUXSa67uTBOStUVLIUUxPzxxTHVok2vvFyw6YCwO6sNeevT3zCOXfedYPiEfSqqip90783rXam5Yz1esissyCycjL/Mh+9HARJG4Ty4GY6+BH9Mb4IZkfYqt60o1RD7OE/sqdpBHMost2aHh2vNNzRlFlLzrxtXHssY2e2iIMkKm9DV/o5wLjqO1utJbv8bbmOS8wSOtI8jyRi+vagvTmSgCrdiAcml7TR4QgESiXzZtctCicGJ2KMVCcYe32mYwUUC6U//dLfRasrNC2cjxYHnD92pbvd5F9F2DtNuUgKtlW4z8eYwE9dKL0Qcg3yeg1f+q/9/uJeH4d5UBQcqvVG5jsCTynpLlcv4++iCt13zMJyG3k7AHjiB7yAfhCIgyrWwG4e5FsA16DOHQe7we1JgCtSjAPd2v4+9PoA9RF7eYuM5zIZQbqUI3j2ASwWhtwHz1xd+I3PWyBi/EHHJyBm9bvBfrhPkL6rklgPfL1bK2HJQZEpbYl5zLTgWwmWUaFVhl9x9AVmiIp64632/5yvwiECrn9CjxXdqgcr6ucMhaOO5unf9d/1OTcR6RMu2MbZ6VtZmnXoq5k5NDqI2hZoRXxV0U5ztJzETBJmarxqbTBE8zIOzWQsdHJKu5dDD3YK3WmoXnUP0XjGxhvu66dXfP89dXwm5VE687q+JQ/fgTfMFzgyFchiw8rjD0/iwYg0el7EXqTRLgLZTDQPbpqKT16jFWfFShShOUWc7SatVTp2wUspWgIpGF1WTW1UjUVAGu+jp6ek84ikuPH6OBikJ6CQg9ifeOm+j+qa3JxyryLTSQrl3X8MSNKCXfq3I+A4/NACRXZz3z/tVVxmbcrlj6PQIPctZWx4L36yfJRxLWdYOFvV43bH1Bduize2A4eUAVWIbVYNyx4piwQ3c6qQs6Rq/C9oN/Xau3BTGwtAZ53jJEwMHPrUrkv1wU/9w/egd/ynrDKFpXrlhLexirP4VItxWErRdAY+xC8mpijDEBsrsjsjB3xiNTbuGPgRz5OU55anN5V5rO+2d7vzy3jF4c/UI8tfWOUuv5F9Z/gXHqxkU +api: eJzlV21v2zYQ/ivCfVo7JXLadCiEYoBbK4VWwwlipx0QBAVNnWM2EqmSlFND0H8fjnqxY8tetk8b+skS74V3z734UQmW3RsIb2GEXBihZCyNZZIj3PmgctTM0mECIczXcQI+5EyzDC1qMitBsgwhBEEiISGEnNkl+JCg4VrkZA0hxImnFl7S3OGJ9hIfNH4vhMYEQqsL9MHwJWYMwhLsOifPxmoh76Gq7kjZ5EoaNCR/NRjQz9OLpgXnaAz4wJW0KC2psDxPBXeZBN8M6ZX796j5N+SWEtSUtxX1LSLpicWHB1xvnQtp8R41+LBQOmO2PvrtnDSNZRb3ffiAssgI+YthPI5G4EP0eTi+Gc7c883k0+Tyy8Q9Ta+iD/FFHI3grvIBVywtXC6jXsdPVC6YSAvdr5VrRVCNcCGkIOVPz86pMW175fmGbQfE/ai24k1Mf6M4cd13ROEzaiPqih8N7/WrbauZUz1cslH0IZ7Gl5Ovs+H7cQQ+jONZdD0cf43+vLqOpiTaqdymolRDjaZI7bHaYRLLvLBmS4dpzdY0ZRYz868bVx5CjO7tk1Q+WGFTOtrdES5Ep9FFfVnY/0bYPugixQPt40QywR/P6osjCNTp1ioombS9Fx5xAFVF4vO+XRbLFUtF4tGKRGMP77Rcq3mK2a//dLfRairMM2cjQ2PYfT/U3T7vE9reYdoGJdJa6Q6J1/tIXCg9F0mC8ikGL4OX//90z/fTva4LjlR6owrN0ZPKegtVyOTn6II3ffMwvIq9rYQ9dAY/AR7EIpAXWti141xzZBr1ieMgt3eVXwJX6kGge7vb5V4f0e4zL2++9hxny9AuFdG7e3RQEHsLIVidBa3NSWtjglIkFVAwetXyv0KnEEJZg1uFQVAulbFVWOZKW1JeMS3YPK2xJVld2AVz/4CQKs5Sd7wb92yJHglo9RN7tEv0qAXq208dD1F6x93bwdtBrydSPeBl0xgbP0tr814/tXKvJ0dR20JNSa9Oui3O5i8xF0SZ2n81uLyKroez6GTaUQfHpBu7yn9S8M5LE6ILiN5rJWi1L9pe/ePLzPWVkAvlzJv+unTsHr2rYp4KTqnsJ6w85vi0x7gVK/SYTDyusjxF2k4NDeyaip681u1CaS9TUlhFne0srVYFdcJSKVsTKhpdxl0N60aipEwYBI+Pj6ecZYVM2ClXGYGQCo7SOBwb3MbNib9jnChuOmuh3HugcYEaJcegcWQCxx9agghnp4PTQd1VxmZMbl10fISeYNaVx+IPG+QpE5J8ugDLZrxuYXUGG7a5GTDwIRQJfXrVg3ILZTlnBm90WlV0/L1A7YZ+M1duChNh6DmBcMFSg3sxdSsSfrluPrheeIc/ynpTaJtXrqGjXQDNpxDxtoqo7RJZgtoFVQuGnGNut0z2vsZobLo19DGagQ+sIJw6LHda23nvDefde6fgzdQDyt+74Cy9UnxV9RfHqxkU sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx index 79260b9703..f36cdf8c8a 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-1.api.mdx @@ -5,9 +5,9 @@ description: "Get process instance by key" sidebar_label: "Get process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVllv4zYQ/isEn/ZwLGc3LRZGsYA3cRZu0sSI3e1DEBSUNLa5kUiVpJwagv57Z6jDjq0E3sdi/WDxmHu+4UzBnVhaPrznU6MjsHairBMqAv7Q4zoDI5zUahLzIQ83V7D5+5T3eCaMSMGBIcaCK9zg/SNs8E4qXGbCrXAdg42MzEgCHiI30wuWVXqYbBT1uIF/cmkAlTiTQ4/baAWp4MOCu01GoqVysASDpAttUuGqo1/PeFk+ELvNtLJgiePDYECf56pneUQ6kT/SKEo5IhFZlsjI+xd8t0RXHGrW4XeIHPlsKBpOVlrI12PM83yk+hsGS1Y6XmX6+IGYwixVTT7iHR7rjFRLL1YYdOPqeDM8/WWin250DE2Sj+dHeuMuhINOa0DFL94hZ9cNMeUpAW90Pp98G+PB+e0f0+vxfHxB69HN+fgalw/bGF7AQipJ+Trebky2UO7VIO4B38vmkTRRngjzZu/2rRcqXUKS9kumxF+Pn3UhcKLWIpExI6iDdS8jEX0NE0jf/ygiKcy5PRJfKVotlt35auuy67I6OLjYicnYGG3aSHw8jMSlNqGMY1DPY/AuePf/d/fs0N27KuFAqbc6NxEwpR1b6FzFPwcKfumqh9F0wnYcZuAZfoJ40IsIUW6k2/jmGQI+QubEN5R7fOwKDIF+lOB3D/s99Cu4gwbKwg2rei/25JWmVr0EHwrqwkMerE+Dmuek4bFBgSwlJ2PMumnkuUmQvqiCWw6DoFhp68phkWnjiHgtjBSYCB9RuqsSuxB5QpFMdCQSf7xv93wFjC5oVKAhwOGeIFBp7/vHGHU8F/dp8GnQKYlIX5CyBcZWzsq5rFNORdwpyQ8WTaJmRFc53SSnTbbI5JUPfj0F3U7Hd6P5+GQ2ns0mtzfNRFTzUW/fSXgrpTbRG0T7iog31JcNVn//a+5xJdVCe/YaX7d+UgM2zUOsGXLl0GHNhJ+C8OPkGphQMYt0miVAr9M+qmjFGrFYKyzV2Hs1IdtzOqNzQsJKa1f1cypdFE1mVUAipyyi6OnpqR+JFB880UeFFAQ0EnBiI9o6btf1SW+POdaRbbml9vvAwAKwdUcQ1IJsQFLXzZDFT/uD/qBClXWpUDuKXi+hZzFr0+PgXxdkicBUlrWBRV1e93x9ytsRZVtgeDYkkQijqlDueVGEwsKfJilLOsa+YHzRb+vKV2EsLa2xjhcisXBgU/tE8jd39eD8lr08XHe60IBXbXxVJzntcOlR6f9LGrxWIGKEIVlV3YwQQZnb4TkYoqlu2nfo63iOtCKnQLXB3MO2l95pz29fPAGb60dQn1vrHG3JvrL8DzUuW/w= +api: eJzlVt9v2zYQ/leIe2o7JXLabiiEYUCWOIWXNAkSr3sIjIGizjYbiVTJkzND0P8+HCU5jq0E2ePQF1sS77uf3/GuBpILD8kdXDur0PuJ8SSNQphFYEt0krQ1kwwSSNfnuP77CCIopZMFEjoG1mBkgZDAPa4hAm0ggVLSEiLI0CunS9YACZzjWti5KFs7QveGInD4vdIOM0jIVRiBV0ssJCQ10Lpk1doQLtBBBHPrCkntp18+QtPMGO5Lazx6RrwfjfjvqenbSrFNiEBZQ2iIRWRZ5lqF+OJvnuXqfcs2/YaKOGbH2SDdWuFYX+NewLHpr+i8bm28CPrwfh80lYstnCenzYKl0rIwfdWyQYlSOjR0/npng/xZbh8ubYY9FV6P9yQdnUrCQW/QZM+eeRo8YVBVMD2PT6aTr2OI4OTqy/XFeDo+5efjy5PxxfgUZg0zT+msq22nJbU2R2m2UnqKc2001/z1UREaaejFFO80T9ANSjtV5dK92Tl9G5RqylnTbts1TdNE8HGIxROzkrnOBLcLenqezaWzaY7FT/+V1VyEyr+SowV6LxfD1dz09tBh+2HvYCsnY+es22Tiw34mzqxLdZaheZqDd/G7/3+4H/fDvWkLjlx6byunUBhLYm4rk/0YLPh5qB+OrydiK2CBAfAD5IPvS1SV07QOAzhF6dAdhKF0N2uiGpS19xrD22x3Dn9G2hvCIl2Ldn4XSEvL436BIRU8yROIV0dxhznoMT6u73HdADvjVv0yULkcEqjb5DZJHNdL66lJ6tI6YuGVdFqmeZtbPmsLO5dVzpnMrZJ5+Lzr93SJgg943eBFgpYomAKt9cNwGVu3o+7T6NNoUBOLPqPlkRiPepZE5aCeVnhQU1hO+kLdslwbdF+cTbFlqc9D8rtN6up6fHM8HR/cjm9vJ1eX/VbV4XjybxV8o6VzMTgUhl8Qgl76rOfqH39NA6+0mdsA7/h1FbY9FNdVmmvFoewHbIUMm5SQivQKhTSZULYoc+TbaZdV/CR6tXPrRGGNJsvMDkhytmImLK2ldtpz60oVatgSiYPySRw/PDwcKllUJpOHyhachFwrND7kscvbRfcl2gFnVvkNWtvwHjuco0OjMO4U+Zi1rvpFDY4OR4ejllWeCmm2DL3cQk9ytikP4T8Ul7nUYR0JDtZde93B6gg2K8pjg0EECaucRV2j3EFdp9Ljny5vGv78vUIXmv6xr0IXZtrzcwbJXOYe93zaXJHw5qZbvt+K5xf0wRB68pp16Oq84jeI2t04/Da8li1RZuiCV+3JsVJY0hZmbxHnvtncQ5/HU4hAVpyox8XuKbeD9kF/fv09CIipvUfz28Y74lf2r2n+BXkpdA4= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -40,7 +40,7 @@ Get process instance by key Success -
Schema
+
Schema
Invalid request diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx index e2d2de9146..85681d95ad 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-2.api.mdx @@ -5,9 +5,9 @@ description: "Get process definition by key" sidebar_label: "Get process definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVltv0zAU/iuWn7h0TTcGmiqENESHBohNaxEP04Sc5LT1ltjBdjqqKP+dc+wkXdsw4BHx0sY+9+/cXHEnFpaPr/ml0QlY+w7mUkknteI3A64LMIIO5ykf83j9EdbfjviAF8KIHBwYEq24wgPS72CNNKnwsxBuid8p2MTIwqsbc5Rmes6KYImlG1MDbuB7KQ2gGWdKGHCbLCEXfFxxty5IuVQOFmCQda5NLly4enXM6/qGxG2hlQVLEkejEf1tG5+WCVlF+USjKuWIRRRFJhMfYXRria/at6zjW0gcRW0IDyeDFYr2T9wbNPB0rNYZqRZEWCGAMlh9VM2LI+KOi1w1WaJ09OjDsIRyvUSiSpfR1X6m65rox32wnauVyGTKKD9g3a/hQ3DiDPLnfwujdcKV9g8hyNFvsegHUypUpZJ+Yrh4DJWJMdp0SLzYR+JMm1imKahtDJ5Fz/79cI/3w70KCQdKvdWlSYAp7dhclyr9P6rgZV8/nF6eswcBM/AC/wEeeGkhKY10az/zYxAGzIGfgtc39aBCCPSdBH+62R3978H1zH0Wr1lYGrhMlpp2zAI8GLQ+xjxaHUaN1MFGykYVCtWcHDKrdgeVJkOJKgBcj6OoWmrr6nFVaOOIeSWMFJgMjyrRQnLnoswIzUwnIvPXu77PlsCIQGOc9pfDM5VBsD4kIMnGtrqT0cmoVxOx/kLLpjg2epbOFb16AnOvJr8R22RNiS8E3SaoS7go5EcPf7PALy4nV6ezycF0Mp2eX3xul3kjRyvoQdI7LY2L3iE6Bybecp+19frh68zXllRz7cWbGrvwjwxgl2WMfUOh7AesmfDrG/+cXAETKmWJzosMaEK1ldUWO32xVi32C8s1lo6m6vaSzuiSKmGptaOKD+2LqsmtUEgUlMUqur+/HyYix6EnhmiQQEAnAZ8axNvg9qm5GewIpzqxnbTU/hwZmIMB9DJqFNlo6y3AD4ej4ShUlXW5UA8M/a6NtlDrEuTgh4uKTGAy68bFqmmxa746DMNnt8nwdkxKsZRCs1zzqoqFhS8mq2u6xv1gfPNvest3YiotfWM3z0VmYc+rblTyJ1fNq+8pe+xt2BtGW8Jq7Xs7K+mEn742/W+NU4kvQaRYjORXoJxiHRXugczeG5C6p5tH7ycz5BUlgdUBulPhXnuvP6/fegY203eg3nTeOTqSf3X9Ez6D8Xg= +api: eJzlVt9v4zYM/lcEPm03N0573XAwhgEdljt0HdaiybCHIhhkmY51tSWfJKcLDP/vAyXb+eXrbo/DvSSWRH4kP5KiWnB8YyF5ggejBVr7C+ZSSSe1gnUEukbDaXGbQQLp7g53f11BBDU3vEKHhlRbULxCSOAZdxCBVJBAzV0BEWRohZG1h0vgDndM56wOlli2NxWBwU+NNJhB4kyDEVhRYMUhacHtagKXyuEGDUSQa1NxF7Z+uIauW5O6rbWyaEnjaj6nv2Pjy0aQVYhAaOVQORLhdV1K4SOMP1qSa88t6/QjCkdRG+LDyWCFov0S96KenlHUOiPVhg62aKwMVl+FeXt1IL3im0mwtK5Un0TK1oSEQ8WVmzykU+lK2jovhK6j8+spVm/VlpcyY5Q+tO7z7NZGpyVW3/1Xlq3jrrFfyFCF1vLNNNdSWceVmD4MG6+xsjBGm5GJt+dMvNcmlVmG6piDN/Gb/3+41+fhPoaEI6Xe6sYIZEo7lutGZV9HFXw/1Q83D7fsIGCGXuEr4KOLwKJojHQ7PxJS5AbNhb8kn9Zd1ILQ+lmiX61PJ8MHdBNjgaU7FmZKha7QNII26Mmg6ZJAvL2Me62LvZaN22fcdUAOme0wohpTQgJtILhL4rgttHVd0tbaOBLeciN5WgZ+6SwkN+dNSWyWWvDSb5/6viqQ0QHd8jTeXIGMyiBYnxGRZOMY7t383XwSiUQ/g7Ivjj1O4Vw9iROEJ5H8wByStSS5EPSQoDHhvJZ3nv5+vt8/LB5vVouL5WK5vL3/fZj1vR6NoIOkjyi9i94hWgchGKTfD/X6658rX1tS5dqr9zV2798gyB6atJSCQjkPWDPupzvjwsktMq4yJnRVl0g31FBZQ7HTFxtgc21YpZV0mqrbazqjG6qEQmtHFR/alwufw1BIFJRN4vjl5WUmeNWojM+EroiEUgpU1vPY8/ZbvxOdKGda2FFbar+ODeZoUAmMeyAbHz0V4HI2n81DVVlXcXVg6N/a6Ii1MUEO/3ZxXXKpCNW72PYt9gTby3D5nDYZRJAQ6Drqm+UJ2jblFv8wZdfR9qcGjW/+fW/5Tsykpe8MkpyXFs+8Gq9K+OaxfxR+y157Ok6GMZSw2vneLhtaQRRebf63W3cRFMgzNN6vcHIjBNbuQOfsiUjdM95HHxYriIA3RNZI6EmFe/RJf3782QuwlX5G9dPonaMl+dd1/wB6G/xX sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -40,7 +40,7 @@ Get process definition by key Success -
Schema
+
Schema
Invalid request diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx index 15e65cd3da..16b32c5492 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-3.api.mdx @@ -5,9 +5,9 @@ description: "Get incident by key" sidebar_label: "Get incident by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v2zYQ/isCP61dGjtNNhTGMMCNFU+NIxmynRYLAoOWzzETWdRIypkh6L/3jnqJE6tr83HoF5s63utzd7zLmeF3mvVumJdEYgmJYbdHTKaguBEy8Zasxxa7S9jNT9kRS7niGzCgSCJnCX7g/QPs8E4keEy5WeN5CTpSIiUNSERpR64cURs4Ygr+yYQCVG5UBkdMR2vYcNbLmdmlpFIkBu5AIetKqg03Jen3M1YUtySuU5lo0CTxvtulv+cmJ1kUgdYoH0lUhUaRhadpLCIbV+deE19+aFku7iEiH1NFKBhRWqEYf8Q9K0emB7ASiSBbl68V9RJteBLBjwuWLA2rNkokd8gJSbah3M78ydg99y48d4DUmX/pB599PHnB/Ko/Hnv+cO6GYRAi6VPwce4H89Cdhp47QcJ54A+8qRf4DYv7ZRr2z6fz6/5o5jbU8/5o5A7m7si9cv1pQ575f/X9gb0hyty9xlukX7mTSX/ozife36jjy7nrDqxzlZoBujvZN/pEILP9Zw5dBOEVOj2dXwQzf8BuEZEN4sjvWkDBu0iBLYKp2LQzIPzmP/HE6L1rl6LwhmF/ah0P3UkwurbHsYuQ+UPryL1cvCKPkPDEUNMdeEW3wsREajq1KIh81tYAXrLlsVg61GmgzbcbAWtuEcPm19c2BGGU6e/GdfqefScboqr21sv2wt4Hw1VKqgaJ00MkLqRaiCXi9RyDt523//9wzw7DDcuEA6Vey0xF4CTSOCuZJcufowp+a+uH/thz9gJ2wAr8BHjQcwZRpoTZ2Zm9AK5AvbPz7AYfqBwhkA8C7Nfty9E9BNPMbWexc8pRjyvAWtJmcAcWAhr6PdbZnnRqXt3JkbVgZFxt630hUzHy5SWYRa/TyddSm6KXp1IZYt5yJTgCbxGkuzKRK57FhFwsIx5b8ks/p2tw6II2Eto1DH5Tykvrx3a4oo3n6j50P3RbNRHrN7Q8FcKTnrUxaauekrlVk91j6sRMiK8Muk5Gk1yeiksLerVsBWOXJs67Cc5PnIH14lXJoYf7CW60VC5ah+i7ZGI190Vdm58+T20diWQlrXhVT4FdCMEZZwvsEQrlMGDpcLt04Z8RW3B4snQiuUljoNeo2m2curDp5NRqsTecjcR1SVIlW0mjZEaVsJbSlMOXWhVVk1tlIVFQGqvo8fHxOOIbfOD4MRokENBJwAWReCvcRhXl6IXwUka6kRbSfncUrEABetmpFOkOaaVCLoM9Oe4ed8uq0mbDkz1D7S3zDKsmLQb+NZ005pjConIsr9rphm1PbHKrhsJzj1Rh2ZSNccPyfME1zFRcFETGd1/Zpn7qI9t1S6HpjP264rGGA1+aJ5D9ElZ7+RvncGdvdbku0mRnuzfO6AuPtvrsb0FL0Br4EsuNvClv+lgpqdmTOdjNqT+ad2bo0srIMwKmAe9FDVvtrf788dEyOFP5AMmfjXeGPsm/ovgKBVte4w== +api: eJzlVm1v2zYQ/ivCfdo6NUr6MhTCMMC1mUyNIxu2nAYLAoGWzjEbiVRJKp1h6L8PR8nKi921/Tj0iy0d7/W5O/HZguW3BsJriGQmcpQWbnxQFWpuhZJRDiEsN+e4SV+DDxXXvESLmiy2IHmJEMIdbsAHISGEits1+JCjybSoyAOEcI4bT608sQvgg8bPtdCYQ2h1jT6YbI0lh3ALdlORSyEt3qIGH1ZKl9y2ot/fQNPckLmplDRoyOLV8TH9PQ05r7MMjQEfMiUtBQ23wKuqEJmrK/hkSG+7H1ktP2FGOVaaULCijUI1fk96zo5Cj3AlpKBY5z9qGkljuczw+w1blV7VWC3kLfiAsi6pt4t4PmXD6DRiI/BhEZ/Hk48x+BBN0ovBdBrFZymbzSYz8OHD5H0aT9IZS2YRm4MP7IoNF0k0idNxNE9YzGZPz4eTeBS5850LdpXMBsMkvRyMF6yXDgfjMRulbMwuWJz04kX81yAeuROSpOySxQn4cMHm88EZS+fR3yxlV0PGRi75zs2IDaP546APAgo7eJLQ6WR2kcaTJD2dLOIR3DQ+lGgMvz0AWuNDptENSSLKwwrGcvufeA+GSXTJqIrobDZIXOIzNp+ML93jlMWjKD5ziXxSyx/oM0ouLS3lXlZ0KmxBon6Tm4bEbw4tSCTveSFyjzYRjf36olRaLQssf/vRhSGMavPNul6/gm90Q3TbcPDw8OA/BoNprXSPxOt9JE6VXoo8R/kUgxfBi/9/uW/2y521DUdqvVG1ztCTynorVcv855iCt4f2YTCNvEcFe+gMfgI86HOGWa2F3bg7fYlco37p7rvrm8bfQqbUnUD3dvP8aj9D29/r3nLjtVSgRLtWxBxu0UFApCCE4P4k2OmaYHuHmwYouL7f8YlaFxDCtgWzCYNgu1bGNuG2UtqS8j3Xgi+LFks6axu54nVByBUq44UTP88zWaNHB8RYiIvYNXrU8jb6kbt8lX7m7t3xu+ODnkj1K14eBuHBz9ra6qCfVvmgJ8dzdo2Zk15b9K4ZfXN5Jc4d6B0Zm0wZ3Tgv52xO1+GOmHV2jf+kwb2XLkWXEL23SrDTPt3N5oePiZsjIVfKmXfzNHGEEb1pvSxERqXsF6w87kiZxzMr7tHjMvcyVVYF0teo4z7ebrDpydu5XSntlUoKq2iSnaXVqqZJWCtl28uXVpVnroftIFFRJgyCL1++HGW8rGXOjzJVEgiFyFAah2OH27iT+M+Mc5WZ3loo9x5oXKFGmWHQOTIBeaVBbos9OTo+Om6nytiSy0eBDq/ME6z6tlj8xwZVwYUkXy6xbbdO13B/4prbLRT4EJKrG79bjGvYbpfc4EIXTUPizzVqt9QPe+S2LheGnnMIV7wwuJdL/wmEX2Ydb//V2+f0B1PeDancuO0tanoDv6XT7rchErRGnqN22bQngyzDyj6y2ePutB/9d+aMEWXkNQHTg/dshp33g/n88d4peIm6Q/lnn52lV8qvaf4FfTtoRQ== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -37,7 +37,7 @@ Get incident by key Success -
Schema
+
Schema
Invalid request diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx index 2d0d3a2952..6563ac201e 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-4.api.mdx @@ -5,9 +5,9 @@ description: "Get flow node instance by key" sidebar_label: "Get flow node instance by key" hide_title: true hide_table_of_contents: true -api: eJzlV1tv4kYU/iuWn9ptEshuWq1QVcmAyboQQ22TdBVFaLCHMBsz447HpMjyf+854wsQnN3sY7UvyZz7Zb4zPuSmIo+p2bs3R7F45iKiDk8V4SE1H85MkVBJFBPcicyeudyN6W5xZZ6ZCZFkQxWVaJmbHAiQP9EdyBiHY0LUGs4RTUPJEvQATLA2xMpYVYEMVkc6MyX9J2OSQhQlM3pmpuGabojZy021S9A344o+UgmqKyE3RJWs367MonhA8zQRPKUpWrzvdvHfcWw/C0OapmAfCnDFFaqQJIlZqAvsfElRLz+NLJZfaKiwaIntUKyMgsW+JT1th6Hrvo6/13BIV4wzTPLtphBKqiFR9EA/VZLxR5RSHr0qw9txEQbRV8WuvvIWBcZDFkF/355rqfLSFWaZbRCYc9ef2QNn5NhD4M686cD2fTj58/5iT9m3thssjnl+YHnBQkuActzA9m7soWMF9mJgBYNP7aLgkze9a0T96dwdWt7nhmG7w+bs296tMwATyx8D6dkD27ltyDmI6/ON5c6tSU1V/+y/B5O5jxbXEPjO+qxTOeXNLM+aTOzJAasst2/59vCA69t/zW0XEhpNpncYdT4JnIXjQiOQ258OUWsAzhbWIHBunQDpPsRzoWMLbz5pkvcHnjMLGgqrrstyx+70zjUfSpy14Wh/eTqMjUGnN7OJHeg7xGY7roXEwwFkDvwshYgp4RoelBOuWuGIUqZiZI1q2NZvSlGg+KrtLXD4lsQsMvDRoal6/U2AAVzGdPPL974N2JUs/Sb8P7zH+jYw4uTxtWGqqmkTts/NYVNsKYVsOvHhtBMjIZcsgt4f9+Bd593/v9yr03K98sIpXn0qMhlSgwtlrETGox8DBb+2zYM1c4yDgg2qDX6AfuADRsNMMrXTe8ySEknluf6038PLlEMLxBOjmnp4uc5cU6V3GeNomTGWO6NchGBBWgvcmx6pbgauRD2zs73s1BvQeW2UdnKwKUzMR27rtSqTMRjkZX+LXqeTr0Wqil6eCKlQeUskI3AXuqkoK+92RbIYmxmLkMSa/TL1YE0NFODihiuZAhpRUEa/0MsHxDh297H7sdvqCVVf8bLHxt7PWqmk1U+p3OpJb3n1XfmoVxZd309z3yRhY939aiedzmwPPjTnPnzfnKlb76eVHWR4eOeNlypFnZD+HGkls9Ye1XD98y7Q0GJ8JbR5BbGp3pupMcuWMDZYymnBwiB6JYV/im2pQXhkhGKTxBQfqGr3a2CFJ6N2C+NibATshALBrS2VFBkiYS2EKr/AOL3gGtMqgYRFpYCi5+fni5Bs4M0jFxAQmwBJUlifUbfq26TinL0wjkSYNtZMaLoj6YpKCll2KkdpB70ikMtiLy+6F90SVanaEH4Q6FtTdNS15oIU/Vd1kpgwvSLoFPNqwu7N7aVZLqrHMwbMHvoEJJWzcm/m+ZKkdC7jokA2fB2kHv39aOlBjFiKZ5jlFYlTepJU81CaP3nVD5mfja/82mktogYw3+nJjjOk4KiRqf8WuCytKYkAiphWKbEARYk6sDn5VYOz0zxG1zYuriTDVu3XrWN8a++t+fze1wpGIJ4o/6PJTiGJ+RXFf+pfx+g= +api: eJzlV1tv2zYU/isCn7ZOjdI2HQphGKDYTKvFlT1JTlYEhkFLxzEbmVRJKplh6L8Ph7rEjp1eHoe+2CLPhefyHerTlhh2q4l/Qy4K+SBkDqHQhokMyMwlsgTFDJcizIlPFptL2MzPiEtKptgaDCi03BLB1kB8cgcb4hIuiE9KZlbEJTnoTPESPRCfXMLGkUtn2R7k8O4klyj4UnEFOfGNqsAlOlvBmhF/S8ymRN9cGLgFRVyylGrNTLP1+xmp6xma61IKDRotXp+e4t/+2UmVZaA1cUkmhQFhUIWVZcEzm6D3WaPe9vBkufgMmcGkFZbD8OYUTPZ7wrN2eHRX18sfNRzCkguOQX6/qTZMmSEzsKOvjeLiFqUg8mdl2J0IYZB/VRzZlh9R4CLjOQjz/bE2Kk9dYZTVGoE5jZIJHYQXIR0Sl0zi8YAmCXFJMj2fP67oFY3S+f5ekgZxOrcS4pIwSmn8kQ7DIKXzQZAOPhwXpR/i8XUvOh9Po2EQf+o3aDTsnxMaX4UDOk+D5JK4JKYDGl71y2lC4+75YxBNg1G3av/oP4PRNEGL90FKr4NPNpTDvUkQB6MRHe1sNemeBwkd7uwm9O8pjQZ0fjEaX+Op01EazsMoSQPcPR8PUWsQjEbzYJCGV2GK6/NpEkY0SebxdNQHnwzicJL2K8y6Syu6jMbXEZk1ODuGo8fm2WMoHjr+OBnR1PYQix1GAS5mO5DZ8bOQsgAmLDxAMGGOwhGl3BS4ddHBtrtT6hrFZ8fuglDcs4LnDl46oM3zd0Kp5KKA9W8/ejdgVSr9Tfi/eY35rUFrdvvcMLXZHBMen5vdolClpOor8eawEhdSLXieg9ivwQvvxf8/3bPDdOOm4YCt17JSGThCGmcpK5H/HCh4e2wegkno7CTsgDX4CeqBFxhkleJmY3nMApgC9dK+2m9mtbslmZR3HOxq9pTOvAdjuYyzR2acxcZpiNAazEoib7oFWwykRD7x7l95HQN62Rlpb3sHm5pgPOq+o1WVKohPtk19a9/ztiupTe1vS6kMKt8zxdmiaMqLsqa3S1YVWMxCZqyw209DT1fgoACJG1IyswIHUdCcfmLJh1RP3L07fXd61BOqPuPlERuPflbGlEf9NMpHPVmW1/UqQb0m6a4/fb9ZyS9t9VtOOp7QOEjpy4QmSTiOOn7a2tXuXs97L22INiD7OrJKpNO+6OD613VqocXFUlrzFmJjy5vBmVSLgmeYymHC0mGWkjosM/weHCZyJ5PrsgC8oFru18MKn5zO7VIqZy0FNxLBbS2NkhUiYSWlad7AOL0ssz1sgIRJad/zHh4eTjK2rkTOTjK5xiIUPAOhbR3buo3aHfeJcS4z3VtzadeegiUoEBl4rSPtoVcEcpPsq5PTk9MGVdqsmdg56FtTtFe1vkEG/jVeWTBuKYINcdtO2A25f0Uaoro/Y8QlPvqcue2s3JDtdsE0TFVR17j9pQJlR/9xtOwg5lzjc078JSs0HATVX5Tkl7j9kPnV+crXztEkOgCLjZ3sosIVcZsPDftbI1laActB2bAaSZBlUJodm4OvGpyd/jJ6T5G4sgpL9Ui39vFtvR+N549zq+Ck8g7En310BpcYX13/B+pfx+g= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx index 3782eb8c1b..c269bbffae 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-5.api.mdx @@ -5,9 +5,9 @@ description: "Get decision requirements by key" sidebar_label: "Get decision requirements by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/lcIPq2dazltOhRGMSDD3MLr0ASxhz0EwUBLZ5uNRGrkyakh6H/fHSkpdqx02ePQF1sk7+d33/FYS1QbL6c38ldItdfWXMPflXZQgEEvb0fSluAU0sE8k1O52n+C/V9v5UiWyqkCEBxr19LQgs7vYE9n2tBnqXBL3xn41OmSLdAmaQu7FlnrTLhDbyPZLskTugpG0qdbKJSc1hL3JdvXBmEDjkTX1hUK49ZP57Jpblndl9Z48KzxejLhv2P/iypNwbOr1JIpgyyiyjLXaUgy+eJZrj71bFdfIEVO3DEkqKMXnR3IeHTabGQzCjg8J2rG5xT3+bDRiPHAwY6qoGPc3/T45jVLE0q2cil8fsoc4aIMDgbBpxpz3hokTNOwyPkQ9HOzU7nOQsnB49MlIIBXORQ//tdSeFRY+WeCUBAL1GY4f23IlEmfACdsfAuYmXPW9Ui8OUXig3UrnWVgjjF4mbz8/6d7fprudSw4cOkj84SxKNa2Mtn3wYK3Q/1wcTUXBwkLCArfAR606SGtnMZ9GB0rUA7cq3Bl3tw2o5ogsHcawur28QT5CDg8PsRqL+L4obG0tTytNhDw4EE0lcnuLMlcltQk1EiOwe266VW5nCTqiGkzTZJ6az0207q0Dll4p5xWhH8Aks9iPdeqyhnA3KYqD9uPw11uQfAB3908+ZDWXPnofczYsY9jc+8m7yaDllj0CSsPfHiws0UsB+1E4UFLYZB29VmwXEy6q0lfY1XqTwHudvRfXs2uL5azV4vZYjG//Nw9A1o9ivCwzr2VNsQQEK+jkOykP3QU/e3PZaCTNmsb1FtaXYbnCYirakWtwqmcJmyFClOf/lDvQCiTidQWZQ58KVG7hMOO3/wlOrPUIqKwRqNlQgdNdLZiJmytRSZ57FgyzWFFInFSnlh0f38/TlVB95wak0MGgYIEeqGwbIvb7+3O6JFyZlPfa2sb1omDNTigKJPWkE+OHgDybDwZTyKrPBbKHDh6RuccAdfXCOErJmWuqJ5NG2XddtWN3J2xnuObfMpGiD2xP25kXa+Uhz9c3jS8TVPAhRZ/aKfQfJn2/E0Nu1a5h5Mo+gtR/tC+NbIX4l8ekoORd8Q1+9DRecUr2T7Wwm9D14/cgsqIghxaPLkg9pR4oHPyYOSe6W+dj7MlyaqK8ekxfMTrYH0wnve/BAGxtHdgfu6jQ15yfE3zD5p7AyA= +api: eJzlVt9v2zYQ/leIe9o61XLadCiEYUCKuoWXoQliD3sIjIKmzjYbiVTJkzNB0P8+HPUjdqx06ePQF1sk7767++6OxxpIbj0kt/Aelfbamhv8WmqHORrysIrAFugkaWvmKSSwri6x+vwGIiikkzkSOtauwcgcIYE7rCACbSCBQtIOIkjRK6cLRoAELrESdiPSzphwh9Yi6JYpJORKjMCrHeYSkhqoKhhfG8ItOohgY10uqd369RyaZsXqvrDGo2eNV9Mp/x3bX5RKoWdTyhpCQywiiyLTKgQZf/EsV59atusvqIgDd0wJ6daKTg9kPDltttBEgYfneM38nPI+HwdtOR452KPzuvX7mxZfv2Jph96WTuGnp+AIjTQ06gSfasp4a7RgmoZFzseon5u9zHQaUo6enk5B4ew6w/yX702FJ0mlfyYJOXovt+Pxa+NJGvUEOWHjW8TMnLNuYOL1KRMfrFvrNEVzzMGL+MX/P9zz03Bv2oQjp76tPGEsiY0tTfpjVMGbsX64uJ6Lg4AFBoUfgI8mAo+qdJqqMDrWKB26l+HKvF01UQ3K2juNYbV6PEE+Io2PD7GuRDt+cqSd5Wm1xcAHD6IE4v1ZnLo0ru+waoB9cPt+epUugwTqltMmieN6Zz01SV1YRyy8l07LddZSymdtPjeyzJjAzCqZhe3H7i53KPiA726efLRDwZlvrU+YO7ZxDPd2+nY6isSiT6A81MMDzo6oGMVphUeRwiDt87NguTboPidDjmWhLwPd3ei/up7dXCxnLxezxWJ+9al/BnR6TXSU5wGlczE4xOtWCHrpD32J/vH3MpSTNhsb1LuyugrPExTX5TrTikM5DdgKGaa+kIr0HoU0qVA2LzLkS6lwNhz29c1foofdWCdyazRZLuigSc6WXAk7a4mLvO1YqUIO20LioHwSx/f39xMl89KkcqJsziRkWqHxgceOtz+7neiRcmqVH7S1DevY4QYdGoVxB+TjowcAnE2mk2lbVZ5yaQ4MPaNzjogbckT4D8VFJrVh4OBl3XXVLezPWM/xTZ4wyCrq+uMW6notPf7lsqbh7a8lutDiD+0Umi/Vnr9TSDYy83jixXAhwk/dWyP9WfzHQ3LU875wTRU6Oit5Bd1jLfw2qyaCHcoUXXCtPblQCgs60Dl5MHLPDLfOx9kSIpAl8zNw+KiuA/qoP7+9CwJiae/Q/D54R7xk/5rmX5p7AyA= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx index fc0487f647..2af5df108f 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key-6.api.mdx @@ -5,9 +5,9 @@ description: "Get decision definition by key" sidebar_label: "Get decision definition by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v0zAQ/lcsP8Homg4GQhVCGqKgMsSmtcDDNCE3ubZmiR1sp6OK8r9zZydpu2aDPaK9tLF9Pz9/57uSO7GwfHjJ30MsrdTqPcylkg6/+FWP6xyMoMU44UM+W5/C+scr3uO5MCIDB4Z0S65wgefXsMYzqfAzF26J3wnY2Mjcmxty1GZ6zpLaFX60vnrcwK9CGkA/zhTQ4zZeQib4sORunZN1qRwswKDoXJtMuLD16phX1RWp21wrC5Y0ng8G9LfrfVLEMViL+rFGU8qRiMjzVMY+xeinJbly37Oe/YTYUdqGAHEyeJHJlox1RqoFr3oehX+JmtAJQIy7DQVUOw5WiLsMsd7r5cXzbS8XAeAMM7d3eOwSPX1wOtvaX+7KoUv424PywisUynVmQqfSpbTVweuqIoHjLo6M1UqkMmFERrDubq4gE2YpZM8eyhnrhCvsP2aYIV3Fohs/qdCUirsPw8Z9sIyM0aZF4sU+Eh+0mckkAbWLwUF08P+ne7yf7kW4cKCrt7owMTClHZvrQiWPgwUvu+rh5HzMthJm4BUeAR64aSEujHRr3+FmIAyYQ/+2X15VvRIh0NcS/OrqdqP7CK6ry7HZmoUeib1zqamlLsCjQd1yyKPVUdSoHW7UbFSiVsUpJLNqem5hUlQpA8TVMIrKpbauGpa5No6EV8JIgdfhcaWzcL1zUaSEZ6pjkfrt29FPl8DogPoP9WuHayJC8N4nKMnHrrnXg9eDTkskeoeVDT02dpbO5Z12gnCnJT8ANNc1IbmQdHNF7ZWLXJ56/OuB5ex8dHEyHR1ORpPJ+OxLM7zUehjh9rW3VuoQfUC0DkK8kf7QMPbT96lnl1Rz7dVrlp35oQrYeTHDyqFU9hPWTPhpBf+cXAETKmGxzvIU6I3C6vGHDd3pizVmsWJYppE6mvjtNZ3RBTFhqbUjzocCRtMUViASJWWRRTc3N/1YZPjsiT46JBAwSMDJimRr3D7XO71byomObasttV9HBuZgAKOMakM22hli+FF/0B8EVlmXCbXl6K+FtANbe0MOfrsoTwXeZlXHWNZFdslXR3wzfmyXGW4PySqSKZTLJS/LmbDw1aRVRdvYI4x/ADbV5WsxkZa+saDnIrWwF1b7XPIn9byTPGX3TsOdiTQsVmtf3mlBK15PnP63wqeJL0EkyEcKLJycIJVyt6WzN/VSAbVv0sfRFGVFQXC1kN4iubfeGc+bd16ATfU1qLdtdI6WFF9V/QHkj0fJ +api: eJzlVm1v2zYQ/ivEfdo6xXLarCiEYUCGuoWXoQlib/sQGANNnW02EqmSJ6eGoP8+HCm/xUrWfBz6xRbJe334HO8aILn0kN3Be1Taa2ve40IbTdoamCVgK3SSF+McMphvrnDzz1tIoJJOlkjoWLcBI0uEDO5xAwloAxlUklaQQI5eOV0Fcxlc4UbYhcg7VyLf+0rA4ZdaO8whI1djAl6tsJSQNUCbiq1rQ7hEBwksrCslxa23F9C2M1b3lTUePWu8Hg7579j7pFYKvYcElDWEhlhEVlWhVUgx/exZrjn1bOefURGn7RgQ0tGLzg9kPDltltAmAYVviZrRiUCM+w1FVHsO1ui8jrE+6+XN60MvtxHgEg35Jzz2iV69OJ1D7U9P5dAn/NeL8iI00lBvJnyqqeCtHl63LQtc9HFkbNay0LlgMqKnp7lSOTsvsPzppZzxJKn235hhid7LZT9+2niSRvUfxo3nYBk5Z90OiTenSHywbq7zHM0xBq/SV///dC9O072NF4589d7WTqEwlsTC1ib/Pljwc189XN6MxUHCAoPCd4BHm4BHVTtNm9Dh5igdurPwtt/N2qQBZe29xrCaPW50H5H6upyYb0TskSXSynJLXWJAg7tlBun6PN2qne3VfNrc46YFDsmttz23dgVk0ESI2yxNm5X11GZNZR2x8Fo6LedFRJjP4vUuZF0wnoVVsgjbj6OfrlDwAfcf7te0QsFEiN4HDCX7ODb3bvhu2GuJRZ+wsqfH3s6KqOq1E4V7LYUBYHtdE5aLSW+vaHflstJXAf9uYLm+Gd1eTkdnk9FkMr7+tB1eOr02Obr2nZUuxBAQr6MQbKU/bBn7+9/TwC5tFjaodyy7DkMVipt6XmjFqZwmbIUM04qQivQahTS5ULasCuQ3qnI2HG7pzl9ia3ZhnSit0WSZ30GTnK2ZCStriTkfC1iqcIeRSJyUz9L04eFhoGRZm1wOlC0ZhEIrND7g2OH2R7eTPFLOrfI7bW3DOnW4QIdGYdoZ8unREAPng+FgGFnlqZTmwNF/FtIRbLsbIvxKaVVIbdhsiLHpiuwO1uewHz8OywwSyNjqLOnK5Q6aZi49/umKtuXtLzW68ADsqyvUYq49f+eQLWTh8SSs3XMJP3TzTv6jeHYa7k1ky2KzCeVd1LyCbuIMv+2sTWCFMkcXAosnl0phRQc6J1MvF9DuTfo4mkICsma4dpA+Inmw3hvPL78FATG192h+3UVHvOT42vZf5I9HyQ== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx index 06dc3839ef..11ffbbedf5 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/by-key.api.mdx @@ -5,9 +5,9 @@ description: "Get variable by key" sidebar_label: "Get variable by key" hide_title: true hide_table_of_contents: true -api: eJzlVt9v2zYQ/lcIPq2dazltNhRGMSAD3MLrsASxtz0EeaCks81GIjXy5NQQ9L/vjpSUOFbb7HHoiy2S9/O773hsJKqtl/Mb+ZdyWqUFyNuJtBU4hdqaZS7nMj18hIOcyEo5VQKCY/lGGlrQ6V0404Y+K4U7+s7BZ05XrE+bpCvsRux78xPp4J9aOyDT6GqYSJ/toFRy3kg8VGxSG4QtOBLdWFcqjFs/n8u2vWV1X1njwbPG69mM/45druosA+9JP7NkyiCLqKoqdBaySj55lmtOPdv0E2TIuTrGAHX0wjk+J7ygx66XxqMyGXx8tqLPyOHzxSP4g6hHp82WD/aqqMdPCGxD+TPuw2lqbQHKhGMwyuAyH9HlU40Fbw0saVvePh+Df2koCJ0LrjN4/HIZCCwyVf74X8tB2GLtv4nUm9ecV0nlUNtxSHRXpnG8wsbXwFg4Z92AxJtTJN5bl+o8B3OMwcvk5f8/3fPTdK9jwYFL723tMhDGotjY2uTfBwt+GuuHi6uleJSwgKDwHeDB1xpktdN4CBMjBeXAvQq36c1tO2kIAnunIaxunw6OD4DD1BDpQcRBQwNoZ3kqbSFAwCNnLpP9WdLL+qQh0Vayc7fvp1XtCpJrIpjtPEmanfXYzpvKOmThQZ2z47NYyI2qC0ausJkqwvbTONc7EHzAVzJPOqQ1lzx6n4apQD6Ozb2dvZ2NWmLRL1h5IMKDnR1iNWonCo9aClO0L8yK5WLSfTGG4qpKx8nfjfrLq8X1xXrxarVYrZaXf/Rjv9OjCB8XeLDShRgCCjMnCMle+n3Pzd/+XgceabOxQb3j02V4jIC4qlPqEU7lNGErVBj59Id6D0KZXGS2rArg26gbyqInNn+J3iz1hiit0WiZyUETna2ZCTtrkdkdW5VMc1iRSJyUJxbd399PM1XSBaem5JBBoCCBnics2+H2e7czeaKc28wP2tqGdeJgAw4oyqQz5JMw14nIMdmz6Ww6i6zyWCrzyNF4yxxhNZQF4TMmVaF0mP4hsKZrpxu5PzvqiImcsymiTWyMG9k0qfLwpyvalrfp3nehqR+0Qtfl2vM39etGFR5OYhmuQPnDdfcqfCFOX4yjIfckNQc5PHskfQb2hd+W7hi5A5UT3TiaeHJBTKnwkc7Jy5D7Y7hnPizWJKtqBubh3XTM4WB9NJ53vwYBsbZ3YH4ZokNecnxt+y+MIezQ +api: eJzlVt1v2zYQ/1eIe9pa1XLabCiEYkAKuIWXYQlir30I/EBRZ4uNRKrkyakh6H8fjvpIHKtr+zj0xRZ5H7z73R1/bIDkzkNyCx+k0zItEDYR2AqdJG3NMoME0sMlHiCCSjpZIqFj/QaMLBESuAsybSCBSlIOEWToldMV20MCl3gQdiv2g/sIHH6utcMMEnI1RuBVjqWEpAE6VOxSG8IdOohga10pqdv6/RzadsPmvrLGo2eLl/M5/x0fuaqVQu8hAmUNoSFWkVVVaBWyij951mtOT7bpJ1TEuTrGgHR3Cuf4PeEFOz56aTxJo/Dyuw29stUPqHfgj6qenDY7FuxlUU9LyNVGSWLcR2lqbYHSBDEaaWiZTdiyVFPBW2OXtC1vn0/BvzR7WehMcJ3R09fLUDmbFlg+/9FyeJJU+28i9eol51Wi93I3DYnuyzSNV9j4LzAWzlk3IvHqFIl31qU6y9AcY/Asfvb/T/f8NN2bruDIpfe2dgqFsSS2tjbZz9EFv03Nw8X1UjxKWGAw+Anw4GsNVe00HQJjpCgduhfhNr3dtFEDyto7jWG1eUoc75FG1hDpQXREUyLllllphwECppwE4v1ZPOj6uLnDQwt8uNsPbFW7AhJoOjDbJI6b3Hpqk6ayjlh5NOfsWNYVcivrgpErrJJF2H4a5zpHwQK+kpnpKEfBJe9OnwVWsO6Ju9fz1/NJT6z6FS8PjfDgJyeqJv10ypOeAosOhVmxXpf0UIyxuLLSHfP3VH91vbi5WC9erBar1fLq74H2e7s2Oirw6KUPMQQUOCcowaD9bujNPz+uQx9ps7XBvO+nq/AYQXFdp4VWnMppwlbIQPlCKtJ7FNJkQtmyKpBvo56UxdDY/CUGt1vrRGmNJsudHCzJ2Zo7IbeWuLu7UZUq1LBrJE7KJ3F8f38/U7KsTSZnypYMQqEVGh9w7HH7q9+JnhhnVvnRWtuwjh1u0aFRGPeOfBx4HZ3vkj2bzWfzrqs8ldI8Omh6ZI6wGstC+IXiqpA6sH8IrOnH6Rb2Z0cTEUHCrjZRPxi30DSp9PiPK9qWtz/X6MJQP1iFqcu05+8Mkq0sPJ7EMl6B8MtN/yr8VZy+GCdDHprUHGB89gBE3WMt/LabNoIcZYYuRNNJLpTCih7ZnLwMeT7Ge+b9Yg0RyJqBeXg3Hfdw8D4Zz5u3QUGs7R2aP8boiJccX9v+C4wh7NA= sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx index 87a0f9a05d..eb7cc632ca 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/delete.api.mdx @@ -5,9 +5,9 @@ description: "Delete process instance and all dependant data by key" sidebar_label: "Delete process instance and all dependant data by key" hide_title: true hide_table_of_contents: true -api: eJzlVktv20YQ/iuLPTWpLMqJWwRCUcBtFEBNUBuWihwMH1bkSNyY2mV3h3IFgv+9M7skLYlyX7ciF2kf8/z2mxnWEtXGy+m9vHU2Be/nxqMyKciHkbQlOIXamnkmpzKDAhDkSJbKqS0tHevV0tCGrh9hT3fa0LJUmNM6A586XbIBOvwIe2HXooxuhO78jKSD3yvtgHygq2AkfZrDVslpLXFfsmltEDbgSHRt3VZhPPr+SjbNA6v70hoPnjXeTCb8d+x6UaXsk/RTS6YMsogqy0KnIb3ki2e5eujZrr5AipyzYzBQRy9bsqY2cCDo0Wmzkc2ohSn7Z+GPJGosWOjnXJkNLFBh5emCr67O5TI3O1XoTDBo4PHlnCjiVQHbb/9tbj6G8Hfhv33Dyf4VEP0Ln7uMB4OLA0BmzlnXI/F2iMQH61Y6y8AcY/A6ef3/T/dqmO5dfHDgp/e2cikIY1GsbWWyr4MF352rh+vbuThIWEBQ+ArwoEMPaeU07kMbXoFy4C64DU/vH5pRTRDYRw1h93Dajd+HLjXoxkKZTKiiEBmUYDJlUGQKlVjtRezv1PdzezINqNlPZbK7TFprF501n9Sk1UiO1O26eVG5guTriHwzTZI6tx6baV1ahyy8U04reqUAN9/FV1+rqmCYC5uqIhyfJrXMQfAFTySeNUh75kf0PmaE2cexuXeTd5Ozllj0BSvPrHm2kyOWZ+1E4bOWwvzqXnHBcjHp7uV6JqhSfwz4t8P25nZ2d72cXSxmi8X85tdu8LZ6FOEhG3orbYghIN5HIdlJf+iI/MvnZSCdNmsb1Fvy3YTvARC31YoKilMZJmyFCsOW/lDvIqFSuy3DUBzwjVeiM0uFJLbWaLRM+6CJzlbMhNxa5FKIdU2mOaxIJE7KE4uenp7GqdpSN1RjcsggUJBAHwYs2+L2qT0ZnShnNvW9trZhnzhYgwOKMmkN+YStMpFjspfjyXgSWeVxq8yBo/9aX0do9g+H8AcmZaHokZs29LotvHu5u4zd6rj06GzKJolgsYTuZV2vlIffXNE0fEzjxIVe8VxxoT4z7XlNRb5WhYdBTH1nld/ctV9ur8TLX3dnU+hobfah3ouKd7QMfA2/DbUwmYPKiKAcVby5Jm6VeKAz+Irjiuqb1PvZp9lyRuKqYqx6PE+IHxycDemHn4KAWNpHMD/2ASJvOcSm+RMnstvx +api: eJzlVktv3DYQ/ivEnNpUXq0TtwiEooDbbAA3QW14t+jB2AOXml0xlkiFHK2zEPTfiyEleV/u61bkJJGc58dvZtgCyY2H7AHunFXo/Y3xJI1CWCZga3SStDU3OWSQY4mEkEAtnayQ0LFeC0ZWCBk84g4S0AYyqCUVkECOXjldswHI4APuhF2LOroRevCTgMPPjXaYQ0auwQS8KrCSkLVAu5pNa0O4QQcJrK2rJMWtH66g65as7mtrPHrWeD2d8ufQ9bxR7BMSUNYQGmIRWdelViG99JNnufbUs119QkWcs2MwSEcvFXovN7gn6Mlps4Eu6WHK/1n4CZCmkoV+KaTZ4JwkNR66jo+uzuVyY7ay1Llg0NDTyznVzq5KrL77t7n5GMLfhf/mNSf7V0CMN3zuMG6cHOwBMnPOuhGJN6dIvLdupfMczSEGr9JX//90r07TvY8Xjnz13jZOoTCWxNo2Jv86WPD9uXq4vrsRewkLDApfAR5dAh5V4zTtQhteoXToLrgNZw/LLmlBWfuoMayWx934XehSJ91YSJMLWZYixxpNLg2JXJIUq52I/b1CKuzRNKACMki3l2lv7WKw5tP2EXcdcKRuO8yLxpWQQRuR77I0bQvrqcva2jpi4a10Wq7KCDyfxVtfy6ZkmEurZBm2j5NaFCj4gCcSzxoqUDA/ovcJI8w+Ds29nb6dnrXEoi9YeWbNs52CqD5rJwqftRTm13CLc5aLSQ83NzJB1vpDwL8ftrd3s/vrxexiPpvPb25/GwZvr9clB2wYrfQhhoB4HYVgkH4/EPnXPxaBdNqsbVDvyXcb3gMo7ppVqRWncpqwFTIMWyEV6W0klLJVHYbiCd/4Twxm19aJyhpNlmkfNMnZhplQWEtcCrGupQp3GInESfksTZ+eniZKVo3J5UTZikEotULjA449bh/7neRIObfKj9rahnXqcI0OjcK0N+RTtspEjsleTqaTaWSVp0qaPUf/tb4O0BwvjvALpXUptWFvIfS2L7wH2F7GbnVYepBAxiaXSV9CD9C2K+nxd1d2HW9/btCFXvFccaE+c+35P4dsLUuPJzGNnRW+ue9fbt+Kl193Z1MYaG12od7LhleQhEdkfEp2yy6BAmWOLkQVT66Vwpr2dE5ecVxRY5N6N/s4W8wgAdkwViOeR8QPDs6G9OPPQUAs7COan8YAiZccYtf9CSey2/E= sidebar_class_name: "delete api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx index c3098e28e3..9b0793cadf 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/get-statistics.api.mdx @@ -5,9 +5,9 @@ description: "Get flow node statistic by process instance id" sidebar_label: "Get flow node statistic by process instance id" hide_title: true hide_table_of_contents: true -api: eJzlV99P5DYQ/lcsP7XXZbPc0eq0qipRCU70qgOxVH1APHiT2V0fiZ3ak+VWUf73zthJCCSogrfqeIDYnp+fv/EMtUS19XJ5K6+cTcH7C+NRmRTk3UzaEpxCbc1FJpdyC7hCWnrUqZczWSqnCkBwrF5LQwuSuocDnWlDn6XCHX1n4FOnS7ZDm5/hIOxGlNGb0J27mXTwT6UdkCt0FcykT3dQKLmsJR5KNq0NwhYciW6sKxTGrV9OZNPcsbovrfHgWeP9YsF/nrpeVSn7nItrwMoZL3yfjiCLAncgtnoPZhTdTGydrUrIxPogNrl9EMaSbYoktRSUQXamyjLXacAr+erZYz3OQTmnAkAIhR/s2/VXSJFRdYw66piHSlHvNR74AnpZj06b7QjZGwpfZwwuJ9JHGVJ72Ol0F/YJpipHL5QDobZbB1uFhHkzi75gEu+xI7SocmGqYg2OXUblHjA/CmPi1gg9ls0he6PTTv21brVJdUa35t/ot9fvafMfadqizAHfnmen/7pEyTNqzNnbOYl9IalBATf8M5MnU5VyYfYqJy5xSYLHl3lObF3nUPz0It9f4DVXXjUN/zCLD+8ZvoJKUW1hXAHhKtv3Y+owbowOBricOWed7JD4MEbi3Lq1zuiyn2LwLnn3/0/3ZJzudbxw4Kv3tnIpELmQaF6Z7Ptgwc9T9XB6dSEGCQsICt8BHrTpIa0ctaDQ5NdAfcMdcZNf3t41s5ogsPcawuru+Vv2CXDQh/puy030eYelziU5J9zZdtYIEwYNEEuZ7I+TVv6ofwCTmoJoEj+cSDy4fTeOVC4n1TpC3yyTpN5Zj82yLq3DhoT3ymlF1xTw5rN47RtF7ZE0c5uqPGxPvdB8wANP9wwzQaL3OUPMPp6a+7j4uJi0xKIvWHmkzaOdHWI5aScKT1oK41F3jSuWi0l3V/c4nJT6cxjf2lnu8urs+vTm7Gh1tlpdXH7p5rpWjyIc0qG30oYYAuJ1FJKd9HnH5D/+vgms02Zjg3rLvsswdYK4qtZUUZzKOGFLA0fgTzt3KJMNuuRzcvGX6Mxyyy6s0WiZ90ETabhjJuysxThZcWGTaQ4rEomT8sSih4eHeaoKeg7VnBwyCBQk0NzJsi1uf7Y7s2fKmU19r61tWCcONuCAokxaQz5hq0zkmOzxfDFfRFZ5LJQZOHp1gT2Bsb8xhG+YlLmi223amOu2+G7l/ji+U0/Lj/aWcdQfVCDRLBbSrazrtfLwl8ubhrepq7jwZDzWXajSTHv+ppLfqNzDKMD+gZU/XLf/HvwoXv4XYjKfjtzmEKo+r3hFn4G14XdDL5ncgcqIphxVPDklhpU40BkN+FxX/ZP16eyGZFXFqPXIPuN+sD4Zz6+/BwFxY+/B/NZHh7zk+JrmX71Gt3o= +api: eJzlV0tv4zYQ/ivEnNqtYjm7abEQigIpkCzSLTZB7KKHwAeaGlvcSKSWHNk1BP33YqhH7EhBkdyKzSXmY17ffDMc1UBy6yF5gDtnFXp/YzxJoxBWEdgSnSRtzU0KCWyRFiRJe9LKQwSldLJAQsfiNRhZICTwiAeIQBtIoJSUQQQpeuV0yXoggc94EHYjytaa0L25CBx+q7TDFBJyFUbgVYaFhKQGOpSsWhvCLTqIYGNdIand+uUCmmbF4r60xqNniffzOf87Nb2oFNuciXukyhkv/BCO2FgnKEOx1Ts0I+8isXW2KjEV64PY5HYvjE2RQVDWEBpiY7Isc60CXvFXzxbrcQzSORkAIiz80b5df0VFjKpj1Em3cUhFeqfpwAkY7npy2mxHyC4zFDplcDmQwcsQ2j7TKgv7Dn2VkxfSoZDbrcOtJEyhiVpbOIn32BBZkrkwVbFGxyZb4QEwP3JjImsRKL6bY/pGo734a81qo3SKhvwb7Q7yA23+I0xblDnS2+Ps5V8XaBMBacrZ2nVu919sikcF3PBfBBdTlXJjdjLXqeCSRE8v87x0dp1j8dOLfH+B11x51TT8x1F8eM/wFei93OK4AkIqu/4xddhujA6OcLlyzjrokfgwRuLaurVOUzSnGLyL3/3/w70Yh3vfJhw59d5WTqEwlsTGVib9Pljw81Q9XN7diKOABQaB7wCPJgKPqnKaDuGRX6N06M74kU8eVk1Ug7L2UWNYrZ73sk9IR+/Q8NryI/r8hRWa+VUgZbabNcKEQRkkEO/O4+7+2dAA4/oRD03sjycSj27XjyOVyyGBuoW+SeK4zqynJqlL66iBCHbSabnOW+T5rE37RlY545xbJfOwPdWh+YAHnr4NM0Fa6zOGmG2cqvs4/zif1MRXX9DyRJsnPRlROamnvTypKYxHfRoXfK8Nuk/d03BS6s9hfOtmudu7q/vL5dXZ4mqxuLn90s91nVwTndBh0NK5GBzidXsJ+tvXPZP/+HsZWKfNxgbxjn23YepEcVetc604lHHAVsgwy/VzhzTp0Sv5nFz8S/Rq+ckurNFkmfdBkpytmAmZtdROVlzYUoUctkTioHwSx/v9fqZkUZlUzpQtGIRcKzQ+4Njh9me3Ez0TTq3yg7S2YR073KBDozDuFPmYtTKR22DPZ/PZvGWVp0KaI0OvLrATGIeMEf5DcZlLbdhM8Lnuiu8BdudtnzotP4ggaUf9owpcRV0hPUBdr6XHv1zeNLz9rUIXWsZT3YUqTbXn3ykkG5l7HDk4NFj44b77PPhRvPwJMRlPT25zCFWfV7yCKHyptN8rzaqJIEOZogtetSeXSmFJRzKjAZ/ramhZn66WEIGsGLUB2WfcD9on/fn193BBLO0jmt8G74iX7F/T/Au9Rrd6 sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx index 58f971eb4f..5cba395026 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-1.api.mdx @@ -5,9 +5,9 @@ description: "Search process instances" sidebar_label: "Search process instances" hide_title: true hide_table_of_contents: true -api: eJztWF9v2zYQ/yoEX9J2TiwncZsGwwA3cYBsWZLFXvaQBAMt0TZbSVRJyoln6LvvjpQtWVJcG9jLtiJALJF3x7vf/aUW1LCJpqcP9FZJn2t9GWvDYp/TpxaVCVfMCBlfBvSUas6UP/2zQ1tU8a8p1+aTDOb0dEEDrn0lEqQEuoGlI4mTR0QuUAOfL2PDY4M8LElC4Vvp7c8aGRdU+1MeMXwy84SDKDn6zH0DjCAMdDECpMDuWISGq2/TfeHzEpGAsyfA1qJjqSJm3NL7Y5pZPlT2nistnC4bmY4OkWmURPEStaDEo40S8cSKZQrM/WV7NSz9RSifr2XAl67Ynh/olTlnhjdqw+Pg1T3gbNpBpjTC8OidDS/v+7BwdvPr7VV/2D/H5971Wf8KHp8KDM/5WMQC/bq93hAULDYbQayEp5VNfaH8NGTqTWX3rRUqTIiSqoGN1oq/+JZOdlHfG68HHFOKzYFeGB7peiBmyCiV2Z6jHuI8bIZDqmBNlbqnBmfwdt6Hn6eshMMAFcrKK7+lXM0b4OEvLEpCp0gvDOspfsdNqmJNWBjW85y8CfiYpaEhypKRUGhDEHIiNOl4b0G7GQtT9ABqg3rxgIzmZGV082n1k7RjZdqH2AYUUMh6VhZH5Q55WGFLq5Q5shbA7KmkGosDkrAJPD0LMyXL6GnWMmIv5KhBV4YhRPZGYnLPVH7snhUNZYq8/9DtHn38eHzc8brdkw/et00jj/FQkgk3xEw5ifmLsToSXyZzu2QNJ3JM9lDWPb7BgRDYElaKqN5zhAePMVpLdMJ9Mc4rM9FTmYYB2GSgoqPQEuM66RrSFqCj1q6QV7Ltga6BRVtVkKyPLmwzyL3kUNvsnK5X906LjJdiAOf1boAQHu4WakWDqjaWw1X16Xo745NlNn2x+wqFZhqVcrugExlrl7CHntfQk1PfQfhPteBqGduxvH3vzN87c0Nnztumq1W7tVsjDQu3MqqkwB3X0Kd0XQ8kOm5KJHATg7IBmS6C17MJAB+FPPph16xCX6d6yyCPQGUo+I2eWRa2xk23UNso4dJXSqoVDEd1GC6kGokg4PE6Bu/a7/795h7Xzb2WhlzINA7+c+Z2m4K8d3tJSuFMuGX4H0S7nff9VAkzt215BOMIV/u2Wz1AJV0ABPKL4PYNxpWtL74RN1OJDT6R2gLBzBTe2rNOOyffX5G33RBEURc1g75nVUkVVDe6cNhmp+32YgqistNFAgUzs8OHEmyUT+245/xqJ3HgDKXPwqk7fV3tIYx1uBGzyI6LOOZhBLjTD2yhz+8yhbgT78RrlISkr0gp4qKQMzUmaZTjiBslZW5SdH4aIJ0zeumbom0kArtRi6Jp8H5z27/rDfv7g/5gcHlzjQ0Fj8v5cG4o+XslJVfRKoTvjoguqS+WofrzH0MbVpgGd8UHkr67TK2PhfYErz7deLXZpej3pZHF2ziQeGvjRnlgCKpL+XBRzBDNo4JXHgTKs4mdZL3q3L6wDqrOtqtDK0MtemEsLeB5Qt7Y706c3KYjKDLo/HqISMLsSAs/Rsy4nf59iUjjmF6/fomYLMVCcSGRBPMkKmQ5jZIp5s5USuOUxFoHolEtl3oYBhry7vn5+cBnETQDdgAHIgygJIfxG2nzSLvKV1oV5kD6esUtpH1vKz6Gmwdo2c4F6TZKnS2DgnYOvAPP5aE2EYtLB22oOWuAraLZwEWxnYQMIj/LtVvk5eiBzjpFCOyXZeUlCdzqKssDXSxGTPPfVZhluPwVPyVgWSwKkSuZdMpZ4KLCRT09c11kf4gKrS5N9dsIllvH0QNPJ2Yj7VOpxt7eDIaYnvnXyQjyA1YVe8Yvl/D/lD7CHwaiBcfWDru+oCGLJ6ltM9TJxYRmKaKzQrCS/9ayZcGJ5yUtf/xkCchQfuHxT7DhrDH46m5zfwMoNl4Y +api: eJztWG1PIzcQ/ivWfOHuupDl7V6iqhIHQeJ6BUpS+gGiyvFOEh+79p7tBdIo/70ae5NssgsXpPZD2+MTsWfG42eeefFOwfGRhfYNXBot0NozZR1XAqEfgc7RcCe1OkugDRa5EeM/diECg18LtO6jTibQnkKCVhiZkyS0oevlWB7sMVkatBCB0MqhcqTD8zyVwltvfbGkOAUrxphx+s9NcoQ26MEXFA4iyA354iRa2h3K1KH5ttwdTipCUjkcoYEIhtpk3IWltwcw83rk7DUaK4Mvzyrt79WVenxU0bPOSDUiqUGeqTm2SaNEzg0q9/Pmznr501Q/nOsE5wHbXN86btwJd9joDarkyT3rGndIqciIREfHvbPrDkRwfPHL5edOr3NC/x+dH3c+d06gP4tAKiGTkgOllYHWKXJVgfQEh1JJ4sbmt3KouHLPQrxGcW8bhDSiSLl5tbb72huVLiVL68lBWMg/cUOihMw5Gq6SlhvDJxCBdJjZOplnpKiN21yjniaYNsOhTbLiSj2O3WOI4KTTPYb+rIJDlxyaVVd+LdBMGuDBR57laXDkKE3rZeIKXWGUZTxN67WCvUpwyIvUMePFWCqtYwQ5k5btxq8hgnueFhQB8ob8woQNJmxx6ebT6ifZoMqtQJVINSIjqzm7PKoMyM0CW1iXLJH1AM76Fde4SljOR5iwB+nGbM6eZi8z/sj2G3zlRCG2NZCja27KY7e86TucsLfvDg/3P3w4ONiNDw/fv4u/fTV2q3qajdAxN0am8NF5H5nQ+cQv+YszPWRbZOuaftktJpXTbKvC6q0guHOr6LbM5ijksKzuzI51kSYs406MvdGK4qroCtIeoP3opZCvZdsNrIAF0TpIPkanvqGUUQqoPR+cw7genYgN52YGE7baHAjCvZdRbdnk1pvT3qL6HMYvxmfm/6iF21wrGxJ0L44b+nghAmR/V9teL1svLGffu/n3bv4PdfOy1Yb69rIW7bTj6UaXqjhwhbZIna37QUIHTcl4wh1nUt3zVCZPZ2Ru9CDF7IeXZiYxobAbJkqG1vJRM6XmxbBxMyzUNiq4dIzRZgHDfh2GU20GMklQrWLwpvXm33/dg/p1z7Vjp7pQyX/uuodNJD+6PGMVOjP0Cv8Dtvs3giiMdBPfygfIDZpt3/Fu+rNoCkLrO4n+Vz/a/MGdoRtrGgpybT0Q3I2hDa373VYpvr0Qb4XBCcgXc4/GelcKk0IbpgHbWbvVmo61dbP2NNfGzfzAYiQflJM+7YW4+ukd2pBqwdNxOH3V7d4YGW0onvkRk0ZDYkA4fccX+vL9szT3Pn4fN1oi0SesLHmxtDN2Lm+0E4QbLc3CdBni1CW5cOl5bJZtI5fUjSKgq0EbLi47V0e9zna30+2eXZxTQ6HjSj2aKirxXlgpXfQO+cbqhWAufTqn6qffe55WlAZXyw8znfAAWx0l/QlxfUKqLfn5ZzkRrI09y43KtBM/O8vEK5NKddZI1pfKuWQ5fiynDGcKfGquiKtTQ3XM8aNyvP4wmPporg/PCyfWpmZyYqh9dMrsvfAfx5BdFoNUCmJKnU+acT9DMy6cvEf/vBCawkLvgPr7Tio2NzvUhmVaSafJIa/pjC4o0cZau+AkFUYufIqEPCXO2Har9fDwsCN4VqiE7widEQypFKis50NJy8/lSrSmnGhhF9pS+98tg0M0qAS2SkO2RVbv5wyC3Z14Jw5Ja13GVeWgZwrUCmAL6jt8dK085dKPkd67aVm7buB+FxYU2K7aKutXPyrL0A1MpwNu8TeTzma0/JW+VVANXVatUF9hjDwJrAgpAseh5Wz3yKHFq6z+/KHaHDSOhMDcPSvbrxTky4tujxKr/ISa6YR0DH+gz6v8AdpwC7dARPTg+ELj16eQcjUqfE+CYJeynxeEznIKXy0W/mbz6qQmFS9//OgFWE/fofoJovI2jn6G5+Jf7YeYrw== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -36,15 +36,15 @@ Search process instances ## Request -

Body

required
+

Body

Search process instances -
    filter object
    sort object[]
  • Array [
  • ]
+
    filter object
    sort object[]
  • Array [
  • ]
Success -
Schema
    items object[]
  • Array [
  • ]
+
Schema
    items object[]
  • Array [
  • ]
Data invalid diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-2.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-2.api.mdx index 6dd740755a..d59e2ac131 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-2.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-2.api.mdx @@ -5,9 +5,9 @@ description: "Search process definitions" sidebar_label: "Search process definitions" hide_title: true hide_table_of_contents: true -api: eJzlWFtv2zYU/isEX7J1jm9N2tQYBriJA6Qbmiz2tgcnGGiJttlIpEpSST3B/33nkLQsW0qaDHtZhwCxSZ4bz+U7hy6oZQtDB1N6pVXEjTnjcyGFFUrS2xZVGdcMFxcxHVDDmY6Wf/Zpi2r+OefGvlfxig4KGnMTaZE5tgEdOzrCv7A0S7gB8khJy6VFUpZliYic0M4ng/QFNdGSpwy/2VXGQYKafeKRBcZMowlWgBQ4nYvEcv11uju+qhAJ0L0AthadK50y67feHNF1i0qW8gqpsVrIBR7cc22Et+5JMa/7SD3LUhkciJ5qkAfXZ9I2HuKpsAlu1YMAh0b8xZ9ph4/QcL7rJaY1WwG9sDw1de+hAUZp+3yOelx40nxtpeMdU8JJi3KZp5h2w/EprM5G8HFb9cQYDVpXd37NuV41OqhMNNAzTJJ6QsImyTwnEdJYJuEr+S7mc5YnlqCDiTCk1/0ebLlnSY7+Rt1jPFFzornNteQxSYSxjyZ8XQWTceB1nCjKKTuu6AnxPXb6QhheIB4jR2Yr4jK5KtWJmpbBoYEgRMQ5fn27UepFhUR7nvaWV43EXMYQ1Y0V/qomuK7pqq2vWucSYs+8jC1eYl7VMSU/RMNAyM02Em1yI8lEkQW3xC45kfyL9aSRylZuy5mPHAco83dcmQPQZBXsbCvuwBO2b6Qz2WQ8EvMAdcQsVZ7EBOoVjEWhFcZd0n/kLx/NPQCY0lOWJJC1oWqAvt8/7r199+6k9/rNydv+Sc8X3bnD1W061b0cKMCdARh3cm8X/ir2bwG7xNNeiWjH3YZ77YvaT1cHCdh9hOZAb3XO3YbJlDQeAvrdbkOa5FFwwb/Ui/ah8YWQ+S21qNA/fGG8rO9YZVnyLEdUTLj2NdxkCZIdNcX/jFkGJQuZKeLHkwBiNEt4+sNLkwEwx+bmmZFIwegAZbUYbOCrOUBu46ngjLRWunTD64Y6Vnom4pjLXR+86rz671/3qH7dj8qSc5XL+Ju77nFTkg+vLkglnQl3DP+DbHejb5RrYVeum8ygDXJ96EB2ertuFeACdSe4W0GbfHKEiEtAwXaRcrtU2JkyZZwrmF3CqnPf6wSGwwpDxzdgivZoBGhnTq4B42jh/bsedDrFEoStB0UGsLl2DVMLNgsjLJ752LrxFDgTFbFk6fXvmj6BSQIP3JADEwpOFpgFXnsb/ZiVM+VG3En3pNsoCUkfkbLNja2cpbVZoxxP3Chp7acUH6sx0vlLb+KzbR6Z+Jlj9/D9j15eja6Hk9HheDQeX1x+xLaC6gIfNrhKzEspwURnEK49Ed1Qn2/S9cMfE5daWArX27ftyL8sdkcZp6FbGlY+acp+3K112y3RtslWUt3PQ9398a1wvtqfkEpRe6MROmSu3N1DfVy61zsnV/kMah7jUI+WIswNRvBhxb0flCOFl7YwONafHEKSjViodZIqSHyFBjlOq1WOabxUynojEXpANJrlqwAjYqAEHh4e2hFLAZtZGxSiG8BIDkMc0gbf/hJ2WnvMsYpMyS2UW3c0n3PNwcpOEGQ6O2MS7bW77a4vCWNTJiuKnoSAHZeVqWXhodDJEibcG9TZVwR0mNL7nkfNfXygmxjjryu+0Ke0KGbM8N90sl7j9md86CJSbXHBoxhdchb7zPBJSE89sB9O0KRy7q7PtYiAnmMI0c7sk7S3FdC7uhxPsFrC7zypipFHswf8DQj+D+gN/GEyZv5+QOT2C5owucgd8lMvF+uL5eif0od75ehutql/uapY+eN7RwAPtTsuf4IDfxuLS/8u+BvLQG6S +api: eJzlWN9v2zYQ/leIe8nWKf6RJm0qDAPcNAXaDU1We9tDEgy0dLbZUqRKUkk9wf/7cCQty7aaJsNetr5Z5N3x+N3dd0fX4PjcQnoFl0ZnaO0rnAklnNAKbhLQJRpOH29ySMEiN9nizyNIwOCnCq17qfMlpDXkaDMjSq+WwtjLMfzMi1KihQQyrRwqR6K8LKXIvNH+B0vyNdhsgQWnX25ZIqSgpx8wc5BAacgFJ9DS7kxIh+brch9x2RISyuEcDSQw06bgLiw9O4ZVAooX2BK1zgg1p41bNFYE7+418/SoJT3h805j07JQEV8CskPCoeLKdW7SrnCSlvZjtErAir/wgW6GAI5m2yByY/gSEhAOC7sPLjlgtXEP19gPG8rua2uTb7kSdxJAVRWUlaPxGSTw6nx8BjdtJMbk0Kq98muFZtkJUJOHaQ0jKffzdSQlK4MmE8o6rjK07LscZ7ySjhHATFg2HHwPCdxyWRHedPaYdvSMGXSVUZgzKaz7Yj3sH8FVHnW9Jpnyh520zonxPfHnxTA8wjxFjk2XzCd626o3ddUEB6JAjIgHfnWzPjSYion2sNOTcDQJo8qFmq+9CFe1EbquqyZf9c4nxI57JZ8/xr02MI0+M2gr6ewmEj12rdhEszk65hbIFH52QTTT5dIvefdJ44Bs/k5f9oAJ5TQ7aFXcQRDsXSvvsi0xE7PIhMwudCVzVnCXLbzRluK26D/CK0RzhwCu4IxLiTmLVQMJHB2dDJ+/eHE6fPrs9PnR6TAU3WtPu5t02kc5SkyXLDLhVu5t01/L/w2fN3Q7bBjtZNBxr11Tu+m68pxg0JZa2VDyR4NBR1pUWbzyv9SadqnwkRT5DXWs2E5CnTyuDTntuHwQTi0X3oeS7vKExI670uMVd5wJdculyL+cI6XRU4nFD4/NFeu4q+wDA1WgtZHZ9mKwZrPuAPmF+4Jzbow2DQxPO8pam6nIc1TbGDzpP/nvX/d4/7rvtGOvdaXy/911T7qSfHT5hrXSmaFX+Aay3U/CWWWEW/rmMkVu0Bx6Dr66WSU1ZFp/FOi/bpL7J4q8IRTqJgW6haZGVWrroeBuASn0b4f9qHDYUuiHfgzkjyFG9u5URkIKdcB3lfb79UJbt0rrUhu38v3TCD6NEy3thdj6aRVSkDrjchHO33Z9skBGG37m0TM/aFAWhNN7hGPZjJhrc6eD00GnJRL9gpVNbmzsLJwrO+0E4U5LqzC0hFiNSS5ceh2fTfMoxc9I3SO0R7i4PH8/mpwfjs/H4zcX76it0HFRjxpcK+aNleiid4i+gxCspV+v0/XtHxOfWlQK7zcv4fPw0NiebPwJg8ax5oXTtOvBdjPeSOz04M3GpvW2CiAMTYPdGa/2CO6OUY2pnfmJYJppj0ismgv/DwCyy2oqRUbR2Y+hZtxPU4xnTtyGaTrTBIXDvONdIhRbm51pwwqthNPkkNd0RleU3AutXXCSCIlnPi1DbVCcbNrv393d9TJeVCrnvUwXBIMUGSrrYxAR/yWuJDvKuc5soy20/+4bnKFBlWE/GrL9rdkKhr1BbxAKxbqCq9ZB9xLDFmRNwjn87Pql5MI/VL1/deSMK7gdBi7dZQ1Yx5j+oQnlfwV1PeUWfzNytaLlT/QaJv7asEXgNlggz0NmhNSEs0D3hxNyqRnO94dh4sWgMcoyLN29sjctKry8GE8oneN/RYXOScfwO/ofid9BCtdwDZSMZbhfWof1GiRX88r3Awh2qep4Rfg0GO4Uqb/ZmhXUsuXljy+9AJvoj6h+giTextFneDz8DaxJhiw= sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -36,15 +36,15 @@ Search process definitions ## Request -

Body

required
+

Body

Search examples -
    filter object
    sort object[]
  • Array [
  • ]
+
    filter object
    sort object[]
  • Array [
  • ]
Success -
Schema
    items object[]
  • Array [
  • ]
+
Schema
    items object[]
  • Array [
  • ]
Data invalid diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-3.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-3.api.mdx index dd38bd07ef..bf4ab7bd85 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-3.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-3.api.mdx @@ -5,9 +5,9 @@ description: "Search incidents" sidebar_label: "Search incidents" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -33,15 +33,15 @@ Search incidents ## Request -

Body

required
+

Body

Search incidents -
    filter object
    sort object[]
  • Array [
  • ]
+
    filter object
    sort object[]
  • Array [
  • ]
Success -
Schema
    items object[]
  • Array [
  • ]
+
Schema
    items object[]
  • Array [
  • ]
Data invalid diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-4.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-4.api.mdx index 86413414c9..1ecf358167 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-4.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-4.api.mdx @@ -5,9 +5,9 @@ description: "Search flownode-instances" sidebar_label: "Search flownode-instances" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -36,7 +36,7 @@ Search flownode-instances ## Request -

Body

required
+

Body

Search flownode-instances diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-5.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-5.api.mdx index 6fc8223eea..56935b6c5e 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-5.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-5.api.mdx @@ -5,9 +5,9 @@ description: "Search decision requirements" sidebar_label: "Search decision requirements" hide_title: true hide_table_of_contents: true -api: eJztWFlv4zYQ/isEX9JuHR/ZOM0GRQFnkwDZFkkau+1DNihoaWxzI4laknLWNfzfO0Pqsi3nWPSlBwLEFjkz/DjHNyMvuRVTw0/u+BkE0kiV3MLnTGqIIbGG37e4SkELixuXIT/hBoQOZn/0eYtrFARjT1W44CdLHoIJtExJEuWGTo7BFxGnERgUD1Ri0SaJijSNZOCMdj4Zkl9yE8wgFvTNLlJAC2r8CQKLiqkmCFaiFdydyMiCfl5OhjUZY7VMpnzV4g+wqK1LhDRFay0+UToW1i8dHZJk2OCPy2ajiYihcWMO2kh/vydPfHtA0hqMynQAV7vMof9EYhtB0K60ES01BhL3jfwTXojER3kwWfe00FosUF5aiM12BAiDUdq+XGM7thA1e1jpcA1KvtPikGQxZe9g+B6fzs7x477ujCEBWtVXfslAL3b5qMxXPGoQRdt5jYusyAyma9rsmxAmIossIz8zaViv+y1CmosoI7cThCHtqAnq2UwnELJIGruzdpqPEUmY6zttMucO7NfOykPdd2fmEXnlERRIJkwASYiOZuMFc0leP8MZviujxnOBPFQuIqv7AoI3mmfgy7G0PBBSWEfSepUjWs+idZmzATcV06+Du+W3NbRktkLb/piMFJuCZXYGLIEv1gm0WKDShVtzlyGFPTL+Gz2ZPYa1qnClKtQ9L4j23AVMigAnOcsyM1NZFDIsc4RORmuK66Ltr3KfD/YGcdzxy2SuZADsNDMyAWNYUXfUEA4O+r3v37077r09Oj7q97u+cC8cv1c5uB2AXAJdm9NrJYxrO2i7dqmqg5T03Cvpsd9tuOxOm5u57ogmTwhUtDoDz+spXtmzykG325BTWRCge/6+LrlJuK8k4v+b53pjyDubr73XdUSrrIhe5LUailsw2EnMDjAkediURmfCCiQGzHQZ7s4lDPU4gvi71+aUscJm5oXhiDGdc/rcioRM0FQS7AiTW3gqROdaK1264W0DQSg9lmEIyboP3nTe/POve7h93Stl2YXKkvBfd91+U5IPbi5ZLZ0ZOIX/QLa7uTzItLQL153G2GtB7ztSvrtftZboAvUgwT3dt14xtnC6gZ0p6nWpMs4Zws7wqTPvdUIddnxf54RAEy87AJlGYuNL79HVSaeznKHy6mSZIleuXMvVUozzcZr2fDTdmIyakQpENPPnrYMd4YRCG9QbaPKhiYXi7k9vk+fScq4tzB13j7uNlkh0h5UqGyo7M2vTRjteuNHSyg8/PjpDkvOXLiJSdYxU/gTUMnzb49c357eD0fn+8Hw4vLy+ol5Cx+V6iLAe5dJKDtEBomcvxAvpiyJBP/w+cslEyX9bva6f+7ec9WFIhvX3Knded3cjryTzi5TPZdvubjblSqbqxbVa8ANYd3OIXDrXbo5kpamNEYz8N1HOVXkBXbvfL4DdZGMkBQrbdnAVE24Aww8r5+AGykCRjyy+pSExuM2ikukbK8wiGbBYJdIqAuQ0rVYZZf1MKetBEjehaYLli4YCaLBiHh8f24GIkbxFGw8kNyBIwGGRZHPX/pyvtDaUQxWYUlsq99zRMAENiLKTGzKdtWGK99rddtdXkLGxSGoHPcMRa04rc9HiK0snjQTm7SpHuMzp447Pe6SnQ15ElX5R8kxwx5fLsTDwq45WK1r+TC/mRF4VcXhi4zMQoc8Fn5f8vef6/RFBKEf77YmZSNFrDDC+qX1S9r7GgjfXwxGVU/7bVqxC0tHikX73wv8n/CP+Ufo5d7had+tLHolkmrlmwL1dKkCRkT9Kn23Uq7tZQRDJoobyh1MnwEbqAZIfi7rEoRIf/RvHX2u/yG0= +api: eJztWG1v2zYQ/ivEfcnWqZad1l0qDAPcNgWyDU0We9uHJBho6mxzlUiVpJx6hv77cKQsy7bcJsW+7OWbRN4dH97LcyetwfG5heQG3qCQVmp1jR9KaTBH5SzcRaALNNxJrS5SSMAiN2Lx+xAiMPihROte6XQFyRpStMLIgiQhgbGXY/iR50WGFiIQWjlUjkR5UWRSeKPxH5bk12DFAnNOT25VICSgp3+gcBBBYQiCk2hpdyYzh+bzcjJtyVhnpJpDFcF7XLXWpXI4RwMRzLTJuQtLL56TZNrhj4tuo4rn2LmxRGNluN8nT3x2StIGrS6NwHfHzDlUXLlOELQrXUZLnYGsIrDyT3wgkhDl0WzX09wYvoIIpMPcHkaAMFht3MM1DmOLWbeHtUl3oNQ7EaAqc8re0fg1RPDmfPwa7trOGBOgqr3yc4lmdcxHTb4maxhl2WFej7KMbTKDmZY2+yrFGS8zx8jPTFo26H8NESx5VpLbCcKYdvSMGXSlUZiyTFp3tHa6j+EqrfW9NpnzBw5bZ9WhHvoz64g88ggKJONWoEqlmrPpivkkb5/hDd80UYNaoA6Vj0h1t4EQjNYZ+HAsUQBCCrtIokc5IvosWp85e3ALPv8yuAd+20FLZrdoe7dqotkcHXMLZAo/Oi8QMaGLlV/zlyGFEzL+K73ZEyaV0+ykVagnQbB3q/wFbIFCzmqWZXahyyxlOXdi4Y22FHdFe1/kvhDsPeK4gQu11FIge1VaqdBatqk7aginp8PBty9fng2evTh7MRz2Q+G+9fy+zcHDANQS0xWr6XUrPF2xI7TdutS2gzT0PGjocdjvuOxRm/u5XnmmMWgLrWxgkdN+vyOHSiHQ/o1dcZ9gH0m8/zfL3UZQd7JQa4/rgE47nj3Iay0U12jLzNkjYEjyeVcaveGOM6mWPJPp8VwqjJ5mmH/z2JyyjrvSPjAcOVpb0+VBJKSyjitxJEx+4VMhOjdGm8YNzzoIQZupTFNUuz54Ej/551/3+eF132nH3upSpf+66w67knx0dcFa6czQK/wHst3P4aI00q18N5oiN2ieelK+uauiNQit30v0b3fRI8YUoBu4habeVmjrncHdAhKIl4M4NWkc+jgQAkO87AGUJoME1sGjVRLH64W2rkrWhTau8i3WSD6tx2faC9H0YzEkkGnBs0U4bxfsZIGMNqg30KRDEwrFPZzeI88VzRy7MXfWP+t3WiLRI1a22bC1s3Cu6LQThDstVWHYCdEZk1y49CYi245RyB+RWkZoe3B5dX49mpw/HZ+PxxeX76iX0HG1XhXtRLmxUkP0gOg9CMFG+u0mQX/4beKTiZL/evt5fh6+anaHH5m2v6P8ef3jjXwrWV+keW/adn+/KW9ltr24VQth4OrvD41r79r9EawxtTdykf9m2ruqLqBL/78C2VU5zaSgsB0GVzPuBzDGhZNL9AOk0OQjhykrjPabm0qmJ7YxO9OG5VpJpwmQ13RGl5T1C61dAEncxIXP11A0FECbxPH9/X1P8LxUKe8JnZMbMilQWR+c2rU/1SvRnnKqhW20pfbvscEZGlQC49qQjXeGKRj0+r1+qCDrcq5aB32GI3ac1uSiw48uLjIuFRn1CNc1fdzAckB6JoVNVOkPUmCCG1ivp9ziLyarKlr+QB/iRF5b4gjEBgvkaciFkJfwOnD90wlBaEb5w4mZSDFojITAwn1S9q7FgleX4wmVU/0vK9cp6Rh+T/+5+D0kcAu3QOnn3eFr3a+vIeNqXvpmAMEuFSAvyR+Nz/bq1d9sQxBq1UL53SsvwCb6ParvN3UJjl7DF8ZfAH7Cog== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -33,7 +33,7 @@ Search decision requirements ## Request -

Body

required
+

Body

Search examples diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-6.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-6.api.mdx index 84f7b4a469..9635ddbad3 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-6.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-6.api.mdx @@ -5,9 +5,9 @@ description: "Search decision instances" sidebar_label: "Search decision instances" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztWW1PGzkQ/ivWfOGutySBFo5Gp5NSCFKuCDiStidBVJndCfF1Y29tL5CL8t9PY+9bNgsNbT/cC98Se94883jmcbIAy28MdC/hCENhhJIDaSyXIcI4AJWg5pYWI+iCQa7D6cd9CEDj5xSNfaOiOXQXEKEJtUhIErowdHIM7/ksidFAAKGSFqUlUZ4ksQid0fafhuQXYMIpzjh9svMEoQvq+k8MLQSQaArBCjS0OxGxRf1lORFVZIzVQt7AMoBPOK+sC2nxBjUEMFF6xq1f2n9FksZyi+s2AkCZzihZx73BSf8IAui/7528643c53enb0/PPpy6T8Pz/uHgeNA/gvEyALzlcerOfNRoeEXkmIs41c1SiVYhGnOEEyEFCb/d+EyZal7ezRWjHBjNWc23y5i+IHjKZ82HywXeozbCI+PR8F7uVrVGTvThkh31DwfDwdnpx1HvzUkfAjgZjPoXvZOP/T/OL/pD2qpVrqwo1VCjSWP7WO0wGsgktaYiw7XmcwhAWJyZrwaufChj5LdpZxmAFTampfq1diE6iSLqs9T+M8IOQKcxPgAftyUjvN8IF49kwB/Xi6Dk0jY6fMSA6xDiL9wQoL5t9iarresLKSb/Rmn79UWZCIybM6l0tBLK2lXpDQ8hgKP+8BDG1UQMKaBldeX3FPW8KT9F8+8uoBfH60OiF8csv7pMZJqG/RDhhKexZZRgJgzb6fwIJWLI95B21IRptKmWGLFYGPvgFGrwwWWUKTtVsuW87VUcZQXecw6zOjzFPtWOcROijIS8YddzttL+qo6c9cuiYFATzKrlirIc5/F4JxkINwws8FGRdHNYwZNSE2wcukNSLfaE33xF7A9mdCV0sl2G3rqSI8Vu0DI7RSbx3jqBgIUqmbs1dzJS2CIn7+mb2WJCWsW2Krd3ywu2rqQ7hUkwFJOMyzAzVWkcsRm34dQZrSiuira+KZceBrWucgkDeatEiOww5sYUriCA3d29nZ9fvz7Yebl/sL+31/E3+tgxqRKp65XIJCppzsZyqVTZG0TVQ5U8bW2k7xS9c6/zyKGdvTryl671aDSJksa3lt1OpwFEaUhM5/vxznrH/T7j8ZmOPtPRZzr6TEe/nY5mXNEPrqdxTKssjze6eZUILhz2TEMgJPWqqScfccuZkLc8FtHDjTnR6jrG2U9PbdDUIFOz4Q2doTEZ+Viras43Gjdt45WuJqavtdJFGl42TFWlr0UUoVzNwYv2i3//cV+tH/dUWXasUhn954671wTy3vmAVeDM0Cn8D9DuXrlhqoWdOzp3jVyj3nYM53K8DBYQKvVJoPs2DjYl/UDh26kiZpgo4zLB7RS60L7daefy24V825NioGj0LWrjgkl1DF1Y+Owuu+32YqqMXXYXidJ26XirFvw6e6zSnq+se4dCF2IV8njq3a8GPpoiow2aLPR8INpPGPDeW47mFG/H3NxB56DTaIlEH7BSIqO0M7U2abTjhRstLf3LwVdqSHL+0Hl1ysmRCGJk+dCEs/P+RW/U3x4WzESQu0xvGaxUvLCShegCou9eCHLp4xysv30YOWDRRbgof1nu+98QVl8UIqqyKeevUzDkkgjXKW6FgK0z23KzmdB2mulqZ5WMllaaOej6vqee6+sF4+zU+eQ6bcx54NoBS/p3Wc+arPnNCFBxx8dNbOypVkr2VFvxpKlDXkrCU2k8/nnYqT9xFw679QdjYbr2WCSATpTDYtatztx/GcjO0+tYhHQv1m+PYtw9HRkPrbhF99QNFYHQYsQyDFR+6RGS5WYnSrOZksIqCshpWq1SaitTpawPkgYBD11D8F2Jbojpttt3d3etkM9SGfFWqGaUhliEKI1Df5bpk2wlqClHKjSFtlDue1vjBDXKENuZIdN2XDeHFuy0Oq2Ob1HGzrisOHqsIa9krLjpFu9tO4m5kGTRhbfIevUl3O5UsL1dNZb163GQtd1LWCyuucF3Ol4uafkz/b5IU6Ps0n6iwBR55HHhmwAc+iG77S5Kica1dz9NI6/RC0NM7KOy48oEOj8bjqh3Zf95zVREOprfEbD5HXThCq6AoOiy4xqrW19AzOVN6qYweLvU7XhK6SlSWGuO7mR5N5bzSpS/vHECbKQ+ofw1b4Jg6av/neRvuEiA2w== sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -36,7 +36,7 @@ Search decision instances ## Request -

Body

required
+

Body

Search examples diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-7.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-7.api.mdx index cec8aac214..53311a2386 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-7.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search-7.api.mdx @@ -5,9 +5,9 @@ description: "Search decision definitions" sidebar_label: "Search decision definitions" hide_title: true hide_table_of_contents: true -api: eJztWFtv2zYU/isEX7J1ji0ncZoawwC3cYBsQ5LFXveQGgMt0TYbSVRJKqkn+L/vHFKSJVtO7WIv3YYAsUiey8dzlzJq2FzT/gO95L7QQsaXfCZiYeCJTlpUJlwxXFwHtE81Z8pf/Pmatqjin1KuzVsZLGk/owHXvhKJZevTkaUj/DOLkpBrIPdlbHhskJQlSSh8K7TzUSN9RrW/4BHDJ7NMOEiQ04/cN8CYKIRgBEiB05kIDVdfphNBhUYbJeI5XbXoI19W9gVAmoO0Fp1JFTHjts7PkDLIrXHdLChmEW88eOJKC3enF7WcnlS13IMxheIRWEjv0NhE+svB16ly3+y6QxPx+4PuBa5msWm8CZ4KE+JWQ8TBqRZ/8T3VuHAczOohwZRiS6AXhkd6O1QQgZbK7M+xHYQ8bHaSVEENSn7SojxOI0yywegdrC6H8DOpmmKEgFbVnd9SrpbNFirTChQNwnA7/WCTFE6Eh4JXk+9gwdLQEDQyEZp0ve8BzxMLU7Q56h/hiZwRxU2qYh6QUGizM8MbtbA4yNktM0qz+noVVbmbe1Zl7o3DNKAPCdM+jwOwMZkuiU3Kqgor96F0GM0Jci9ZZ6wmBQInNA++vaG0HA6krwNpHWSG1hfB2pjZQJuw+Veh3bJaDSxKXYNtf4jHksy5IWbBScw/G0vQIr5MlnbP3gUZjlD4e1zpIwJJKmFnnaFHjhDkWfw6AXyzvA8QvZBpGBDIb0COQiuMddL2V1nPuXqjYrieF3Cr8FLoBTCcnPS6r9+8ueienl+c93qeS9Mr23bWYbdt9JwC7Jl3gDUx7FW6SQX9upmVXaNbFsCe13CrmpzNMLblQ7maDcRGpdxu6AQ876rFiec1xEvq+1z/g016s4weWF7/793faO/OG6urAIc1ZCMNC/eyRwXDPdfQy3QjFKQ7a4r2S2YYFCdIQhHsDnmIyGnIox8ODX1tmEn1npaOIOvyCr7lRxGDqNhvPnQbL7lnqJRUpRlOG+qVVFMRBDyu2+BV59W3f92z7eveSEOuZBoH/7rr9pqCfHB3TSrhTLhl+A9Eu30p8FMlzNI2zin0e66Obe94mKxaGZhAPgpuV5PW/pMTxQuYhcQunEhtbcHMAladp26n4DiucHTcrEERkcLWYgGlCsoczZyFV/1OJ1uAtFU/S6Byrux0oASb5tM9njnv2rEdOEPps3DhANTBj2GIwQNsbziN4VCDceC0t9GSSTloF+IuvAuvURKS7pCyjo61nIUxSaMcR9woaeUGMuetEdK5SxceWvePRGC3LDo3vb0b3g/Gw+PRcDS6vr3BzoLqcj5AWPV6KSWHaAHh2hHRgvqqCNif/xjb4MJkuF9/5Bi6l6763CaC6kue1efV54/1aQ6+XJfThrd7llhT7xwhdnDfbGh7cS7wql2/knluEvU2x+bMOm5zNi1Vbcyl6J2ZtI7I0/XWflPi5C6dQgnCoNgOHUmYnUrhx4gnbqdpX6IHDLyTQhmyh0XdwCdSiIXSQyIJWSgRkOU0SqaYUwspjQOJlRBEIyyXkhgeGvLx+fm57bMIWgVrg0I0A4DkMEEjbe7EX/Od1gZzIH1dcgtp1x3FZ1xxQNnJBelObdqk3bbX9lx+ahOxuKLo5YpUs1kZ6Abe0TpJyIT9WGABZnmxeqBP3UowHNfF5QULnOvqzgPNsinT/HcVrla4/Qm/SWDpXJcpV1bpgrPAxYbLAvrOdZrjMWIq33m2XyuwJDuOAfg7MS/STipF+O52NMbkzb8/RjJAHsWe8dsk/O/TD/CH4Zi4+wGR3c9oyOJ5alsRdXIx3VmKBiqNuFEd7M2KchQvKyh/fGsJyFg+8vinogrAQAtL91r2Nx50W08= +api: eJztWFtv2zYU/ivEecnWKb6kdZsKwwC3SYFsQ5LFXveQGAMtHVtsJVIlqaSe4P8+HFKWZVtO42Iv3fYmkefynfuRSrB8biC8hTOMhBFKnuFMSGGFkjAJQOWoOb1cxBCCQa6j5M9XEIDGTwUa+0bFCwhLiNFEWuSOLYSRo2P4mWd5igYCiJS0KC2R8jxPReSEdj8Yoi/BRAlmnJ7sIkcIQU0/YGQhgFwTBCvQ0O1MpBb1l+lE3KAxVgs5h2UAH3HROBfS4hw1BDBTOuPWH718QZRx5Y2LdkGSZ9h6cY/aCG/To1qenzS13OCnQmjMUFqzR2Mb6S8Hm9PkvtxnQxvx+4Pssii5tK2W0K2wKR21ZNwyACP+wieq8ek4nG2mBNeaLyAAYTEzu6lCCIzS9ukcu0mIaXuQlI43oFQ3AaAsMiqy4egtBHB2PnoLk6YrRgRo2Tz5rUC9aPdQXVZhCcM03S2/YZqyVRBZXPMa9l2MM16klpGTmTCs3/seArjnaUE+J/0julEzptEWWmLMUmHs3gpv1cJlXLE7ZpLm9A0aqqowD5zKKhqHaaAYMm4ilLGQczZdMFeUTRVO7m0dMKgIqii5YCwnKwReaJV8T4YSeBxEvwkkOMgNwRfBupzZQpvz+Veh3fHaBliSugbbuZNjxeZomU2QSfxsHUHAIpUv3JmzhRiOSPh7ejNHTEir2FGjQo88YedOOvwmx0jMqjnATKKKNGYZt1HihDYYN0k7X+U9H+qtjuFnXoxO4ZkwCQRwcjLov3r9+rT//OXpy8Gg58v0nRs767TbdXpFMV2wagKsiacL1pgmDfTrYVZPjX7dAAe9Fqs25Gyn8dL1D40mV9L47nDS67XkRxFFaP7BobzdNg9sp//P6m90VleD1Ff8YQPYKsvTJ/mjgeEGTZFa0wqF6F60ZfsZt5wJec9TEe9P+VyraYrZD4emvrHcFuaJns7QmKpj78RRSGO5jNov/cFj4TnXWunaDc9b+pPSUxHHKDd98Kz77Ns398WuuZfKsneqkPG/ztxBW5IPry9YI50ZOob/QLa7j4Co0MIu3KCcIteoj93suJ0sgxIipT4KdG+T4OmbEpABNlE0dXNlnC+4TSCE7n2/u+I4bnB0/W4BhEjTaHGACp1CCKX38DLsdstEGbsMy1xpu3TbgBZ8Wm3zdOej69Z0CCFVEU8TD2AT/DhBRhc03mj7oiWG8sBr75An83qxXok77Z32WiUR6R4p6+xYy0mszVvleOJWSUu/gPlojYjOG72K0Hp+5IKm5Wpyw9X1+c1wfH48Oh+NLq4uabKQuopvGWxEvZZSQXSA6N0TwYr63Sphf/5j7JKLiuFm/VPj3H9kbe5pIm5+1Dl9vc39Y31bga/f622jt3+XWFPvXSH2cF9uaXt0L+g1p36j8vzm2dtek0sXuO1dtFa1tYdSdGbKBaIq1yv3DwnZdTFNRURJsZs6inG3lTIeWXGPbnuOFEXAYsxyrdzlqm/QE1uJnSnNMiWFVQTIcVqtCqqpRCnrQVIn5JGrBl+SlB4m7HYfHh46Ec8KGfNOpDJyQyoilMaFvgrir9VJsMUcq8jU3EK5967GGWqUEXYrQaa7sW1Cv9Pr9Hx9Gptx2VD0eEfa8Fmd6BY/226ecuF+DjiAZdWsbuG+30iG401xVcOaBFXfuYWynHKDv+t0uaTjT/QPglrnuk35tgoJ8tjnhq8CeOsnzfGYMNXfOLufFdSSPccwijC3j9JOGk34+mo0puKt/jdmKiYezR/oXyR/gBDu4A4oHXNvX1j68xJSLueFG0Xg5VK584IcVDtxqzs4y1btSC4aKH984wjYWH1E+dOqC4ClV/8Z9jeJZlWE sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -36,7 +36,7 @@ Search decision definitions ## Request -

Body

required
+

Body

Search examples diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search.api.mdx index 4abf8ac4b9..0bb5e4e40e 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/search.api.mdx @@ -5,9 +5,9 @@ description: "Search variables for process instances" sidebar_label: "Search variables for process instances" hide_title: true hide_table_of_contents: true -api: eJztWOtv2zYQ/1cIfnHbObGcpo8Ew4A0TYBsQ5PFWffBywdaom02EqmSlFNP8P++u6Msy7aSOMAwYA8EiE3y7niP3z3oknsxcfx4yD8Lq8Qolfy2y00urfDK6IuEH3MnhY2nvMut/FpI5z+YZM6PS55IF1uVIx1QDYiKzSoxDuhjo73UHmlFnqcqJpm9Lw4ZSu7iqcwEfvPzXIIIM/oiYw+MuUUNvAIpcDpWqZf2abo7OW8QKbh7AmxdPjY2Ez5svT3kC+KLpXMX2nmhY/nTzowuhgt3J9cikw1S563SEzyYibRoP/G20OAnmTROR8akUmg6llpof5G08OKp8ilu1bFEldUf8kl1Xx8QKYXwZLzubWGtmAO98jJz21HAe52xfneO7fjKtM0gwKFN1lSpTrpc6iJD0J4MTmH18Qw+bpsOGKBCi+bOL4W086Zf5DeR5WnQ4CRNtwF9LX1htWMiTVeoZi8SORZF6pmlY5Yq5xn6mCnH+tFLvgouXj+ovN8u+iBqSG5wVkE7iFDEOcGfCZ2wpZ93UfRe+SnrbCO9wzpHUfSuf3R08Obw3WG/f/S2Q4JlwoSLpU7AxWw0ZwTehk6rNGxLH74plNe4GNYh5pXMKq4UvgUF7kpMMLIP2qblN98wDrDbbtuaBR28rrPPXpyafM7IEGbGrINqfcaV6zDSDHdzK2fKFA4C6yC+7iX7W4zfyLohdxnEkXfXJB5EEXiJ8Iw1WFksD1ApJG243GgXgAyELZW5iFHjv64gb+b1M/P9/zq9XacrvARUPq/4euNFupOhjZuvA8gbCuDpYRt8PgovmNLgCpU8jCEIFcjJvnsuliCyvnBPqh8aVAZgEJP2gKgKJO3Roo3HQnFmrbG1G15vu+Hc2JFKEqnXffCq9+qfb+7htrmfjGfnptDJv87cN20gP7m6YA04M0kM/wG009gXF1b5OTWrEXQjafeoRg9vF90SXGDulKQVdKvHh35qzFXVZksdsfNk0k8NNsHcOHKL8FNY9Wb9Xs3cqx8aTtqZtI4UKiwUN14GDy+Oe71yCiIWx2UO9XJBPXr54gCT8SxEl6Y04ExNLNJpuHVd+ZupZHiA1R8nAA9rxEG4fZ8aUD1wLcW9j95HrZKQ9AEpK3Ss5Ey9z1vlBOJWSYswLoRoDZAuGL2M0Kpr5Aqb37Kx8curs+uTm7O9wdlgcHH5CfsJXlfxgYbNqNdSKhVJIWpvRMSX1OdLwP742w2BC5PhevVEPAsD9vr0RDdE7Z09avbtqFa+HvqrZrzaaPRgHIaaXbeRDWGWjjYHrZKcuTmj1bI3RlT02NiQc6oUuqQ3smRXxQjKAgZqO5yGCRq94MOrmaQZPjboFZy2t/IEvrGlWEykzGjlDSpEnN6aAnE+NcYHJbE6gWhUK6QJhsxBjtzf3+/HIoPyLfbhQnQDKClhTETayrE/VzvdDebExK7mVobWPSvH0krQslcJcj0akCBNg7H9/Wg/CjnjfCZ046Kdq8Sa+2ocepj9e3kqFE1WpGtZFZAhn/XXSsAyyvgrRqgFQ16WI+HkrzZdLHD7K74EsZyt+EKp41MpkoCNgFN+Gqr/3g0qsgLg1uyMZTJwnEC8c/8o7W2jGl5dDm4woapfVDKTII8V9/hrC/w/5r/DH8KRnELZTvslT4WeFNQeeJCLKSgK9MpqIF3PWLJsWSL0vKHl9x+IgN2YO6l/gINgjcclvdAWfwKwvivT +api: eJztWFtv2zYU/ivEeXHbqZGcppcYw4A0TYB0Q5PFWfeQ5oGWjm22FKmSlBNP0H8fDinLsq02CTAM2CVPEc+F5/KdC12B4zMLo2v4yI3gE4lwE4Eu0HAntDrLYAQWuUnnEIHBryVa91ZnSxhVkKFNjSiID0Yw9lxs0aixEEGqlUPliJcXhRSp1xl/tiRQgU3nmHP6zy0LhBHoyWdMHURQGLLACbREnQrp0NzP9wWXHSahHM7QQARTbXLuwtGrA6i9XIrWninruErx5wcL2lQXj2BXPMcOq3VGqBkRFlyW/RRnSpVyh1mHOtFaIleejIord5b1yBJVOElHbS7JZPEH3mvui33P6lN4NN2MNjeGLyEC4TC3u1mge6027uESu/lF2edQBNpkG6Y0lAhQlTmB9mh8DBG8Oxkfw003AGMyqO6e/FqiWXbjgnc8L2Sw4EjKXUBfoiuNsoxLuUY1e5LhlJfSMePJTArrGMWYCcuGyVNYJ5euHzfR71e9n3Q0dySbpO0npOLUw59xlbFVnB9i6K1wczbYRfqADQ6T5PXw8HD/5cHrg+Hw8NXAK8aMcZuiyoSascmSefB2bFqXYV/5wLZSaHFx3aYYGp1NXn36ap+4Cz6jzH7TN4V3ruPcVJt+3zY8GNB1gz325FgXS+YdYXrKBmTWR/qyA+Yto9PC4ELo0jKDtpTOPmV/i/NbVXcNNudSQrShcT9Jbmr/R03YFlrZANz9JOnpxGVKFv51DXi7jh9Z3//35d2+3OAjoPBxzdZpx+WDHO3cfBlA3TGAqAd98HnHHWdCLbgU2bcxVBg9kZj/8FgsWcddae81PwykHK3ls/6EiAYk/dnyB99LxYkx2rRheLEbhlNtJiLLUG3G4Fn87J/v7sGuux+0Y6e6VNm/zt2XfSA/ujhjHTgz9AL/AbT7NS8tjXBLP5wmyA2a575HX9/UUQWp1l8E+q+b6J4l3w/ipmuzlY00eXJ0c01Dr9DWh4W7OYwgXgzjVjhuHxYWzQKN9QaVRsIIqhDhehTH1VxbV4+qQhtX+5m8emGMKiBayK7fymAEUqdczsOtm8ZfzZERgbo/TXw3R0Y4CLfv+QHULlgrdW+SN0mvJmL9hpY1OtZ65s4VvXoCc6+mOqwHIVtj4gtOrzK0nhqFoOG3GmxwfnFyeXR18nx8Mh6fnX+geULXNXJ1tJH1VktjojfIjzfPBCvu0xVg3/9+5cFFxXC5fhKehIV6c1vyNyT9kz3pzu2kNb5d8pthvD7ozGBnSuxO3U41hN052V6sKh/M7Z2s1b21klLEptoHpymhc/8mRnZRTqRIKVG76dSM+9WL8dSJBfqdPdUUFdqud+qECcVWaqmQcq2E02SQl3RGl4TzudYuGEndiaceoaFMKGV2FMe3t7d7Kc9LlfG9VOcUBilSVNanownsL81JtCWc6dS20kL779jgFA2qFONGkY39goTGBmeHe8leEmrGupyrzkUP7hIb4Wtx6PDOxYXkwm9W3taqaSDXsBhutIBVlulXi9ALrqGqJtzib0bWNR1/pZcftbO1XGh1MEeeBWwEnMJx6P7Pr8iQNQB3dmdqk0HiKE2xcN/lvel0w4vz8RUVVPMLSq4zkjH8ln5d4bcwgk/wCQiOPii+2v15BZKrWenHAwS9VIK8pKisF9LNivWerVqEWnas/PGtZ2BX+guqnyBqvHH06V9k9Z/w5iYI sidebar_class_name: "post api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- @@ -33,7 +33,7 @@ Search variables for process instances ## Request -

Body

required
+

Body

Search variables diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx index 6d1356d49e..b378b45273 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/sequence-flows-by-key.api.mdx @@ -5,9 +5,9 @@ description: "Get sequence flows of process instance by key" sidebar_label: "Get sequence flows of process instance by key" hide_title: true hide_table_of_contents: true -api: eJzlVktv2zgQ/isET93WsZw2WwTGokAKOIXbogliFz0EOdDS2GYjkSo5ctYQ9N87Q0qOHyp297hoDhE5nPd8M+Naolp5Ob6Xt86m4P3UeFQmBfkwkLYEp1BbM83kWHr4UQG9XOf2yb/ffoKtHMhSOVUAgmMdtTR0IdbH8KYNHUuFazpn4FOnS1ZGRJIVdinKaFLozuZAOjKiHZA9dBUMpE/XUCg5riVuS1atDcIKHLEurSsURtLbC9k0DyzuS2s8eJZ4PRrx59D0rErZJsmnllQZZJaXyUv+nBhTzqkQCULh9+genTYrMkl/A3nRZ2dqNirXmeCAwOOhPVWWuU5DahNKwiKH4tV3z3I9TtjFd0hZAXFSQVDH6ChlWPl/zMyb15JcLChktYKeELhMbfb7HiPhNHB60ZgzaeKcdbLLxJvTTFxbt9BZBubf5fx/Fe7Fabh3seDApfe2cikIY1EsbWWy3wMFf/b1w9XtVOwFLCAI/Ab5IKKHtHIat2FELkA5cGc8Isf3D82gphTYRw3h9nA8KT8Aim7wiiVP3r7BKRZbEWcuzeK15Wm9gpAcnr5jmWzOk1bmrJPxSU0iTdJpPwvaJXvrNt08r1xO4nXMfjNOknptPTbjurQOG2LeKKcVVSqknN9i5ZeqyjnVuU1VHsjHgc3XIPiBNwaHhHRnjETrQ84y2zhUdzm6HPVqYtZfaHlGzrOeNWLZqycy92oK+6Wr5Iz5YtBd9Z6XRqnjbmyX4c3t5O5qPjmbTWaz6c2XbjG2cuThPiJ2WloXg0N8j0yy477uwPzx2zwAT5ulDeItAG/C7gZxWy2oqTiU04CtUGEZ0gf1BoQymUhtUebA4+sYZHwSnVpqJlFYo9Ey9IMkOlsxEtbWIrdD7G1SzW5FIHFQnlD09PQ0TFVBE1ENySAngZwEWtzM2+btc0sZHAlnNvU7aW3DPXGwBMcwTlpFPmGtDOQY7PlwNBxFVHkslNkz9F977CCLu4Ih/I1JmSsqbtO6XLf9dy8353FSHXYg0cZR5VETEtJiL93Lul4oD19d3jRMJjYXBsdz64VGzbTnM3X+UuUeTpzcjVn54q79ifWH+PXPsN6YOnybbWj8vOIbHQNww/+G5plcg8oIqexVfLkikJW4J8Orn7tpN6w+TOb0rCpO1i6hR4gPCntd+Ot9YBBz+wjm3c4h5Cu71DQ/ARnwu5g= +api: eJzlVt1v2zYQ/1eIe9o6xnLabCiEYUAKOIXXYQmSFH0I/EBTZ5uNRCrkyZkh6H8fjpSc2Fax7XGoX2R+3O/ufvfFFkitA+QPcOOdxhDmNpCyGmEhwdXoFRln5wXkEPCpQavxqnTP4cPuE+5AQq28qpDQM0YLVlUIOTzGM2Mhh1rRBiQUGLQ3NYNBDp9wJ9xK1EmlMINOCR6fGuOxgJx8gxKC3mClIG+BdjVDG0u4Rg8SVs5XitLWLxfQdQsWD7WzAQNLvJ1O+XOo+q7RrBMkaGcJLfGVN9kb/pwoU96r6AlhFV7tB/LGrqHjn4SLMT1zu1WlKQQ7hIEO9am6Lo2O1Ga1d8sSq5++BpYbMcItv6JmgNpzQMgk7wIpasI/MvPuLXQSKgxBrXHEBQ5Tz/7YYdo4dVwCGSp5a+a98zAw8e6UiSvnl6Yo0P47zv9X7l6cunubAo4c+uAar1FYR2LlGlt8H1nw81g9XN7MxSuHBUaB74CPTkJA3XhDu9gil6g8+jNukfnDopMtaOceDcbV4rhTfkQSQ+MVK+68Y41TLHci9dwKaeO4W68xksPdN4dse571MmeDTMjaR9x12YB+FtGBrfXboZ83voQc2sR+l2dZu3GBurytnacOJGyVN2pZJvL5LEV+pZqSqS6dVmXcPnbsfoOCD3hisEu0QcE5krRPmGXWcQj3fvp+OorEV7+B8pI5LzgbonoUJ10eRYrzZYjkHd9LTg/RexkatUmzsR+G1zez28v72dnd7O5ufv3nMBh7uU4eZMQepTcxGsTrdAmG21dDMv/+5T4mnrErF8X7BLyOsxvFTbMsjWZXTh12QsVhKJQms0WhbCG0q+oSuX0dJxn/EwPsynlROWvIcepHSfKu4UzYOEdcDqm2lY4xTInEToU8y56fnydaVY0t1ES7ikkojUYbIo89b3/0O/JIuHA67KWNi+vM4wo9p3HWA4WMUTmRk7Pnk+lkmrIqUKXsK0X/tcYOWNwHjPAvyupSGctaosltX38PsD1PneqwAkFCniCPinAh+1p6gLZdqoCffdl1vP3UoI+N46X0YqEWJvD/AvKVKgOeGLlvs/DDbf/E+lF8+xk26tOQ33YXC79seAUyvvbSm69bdBI2qAr00ap0cqk11vRKhkc/V9O+WX2c3YME1TBZe0KPMj4Cjprw64d4Qdy7R7S/7Q0iXrJJXfc3GfC7mA== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx index e9df1fff30..434048b759 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key-1.api.mdx @@ -5,9 +5,9 @@ description: "Get decision requirements as XML by key" sidebar_label: "Get decision requirements as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVm1v0zAQ/iuWP/FSmu4FhCqEtIluKhtsWotAqibkJtfWW2IH2+moovx37uwka9cg+Ir40vrl7rm3584puRNLy4cz/gFiaaVWN/CjkAYyUM7y2x7XORjh8GKc8CH/maWnmwvYfD/gPZ4LIzJwYAig5Ao3KHIPG7yTCpe5cCtcJ2BjI3MCwUPUZnrBktoeM9sGe7zeojFnCuhxG68gE3xYcrfJCV8qB0swKLrQJhMuHL055lV1S+o218qCJY3DwYD+du1PijgGS6ZijVDKeWz46SIMjtZ7Fq0zUi0Rv6p6/LgLc6zWIpWJjwWs28UWeZ7K2Ocwyo2ep5C9vLOk12FLz+8gJgCUxMw7GSKxTrjC/jELR4ccXcwwPLGEjgioLgil4u7LcLAfN95Il9LRyBht2kwc7WfiTJu5TBJQuzl4Eb3498M93g/3JhQcqPRWFyYGprRjC12o5P9gweuufji5HrOtgBl4hf8gH3hoIS6MdBs/E+cgDJhXNBOHs9uqV2IK9L0Ev7t9OhrPwXXPRSYs+/bpks03LIxXHLsrTQN5CT4tNGiHPFofRIlJohKFKj/OyB2zbiZ0YXDA8TKktxpGUbnS1lXDMtfGVSi8FkYKLIXPKd2F0i5EkVIuUx2L1B8/9Xy6AkYX9AbQdHe4JxIE631KI9nYhXs7eDvoRCLR36A8UuMRZ+Vc3okThDuR/GPRlGpCciHopjxtuUUuL3zK6+ft6np0czIdvZqMJpPx1efmqav10MPtkrcotYveIdoHId5InzVs/fh16pkl1UJ79ZphV/4VBnZdzLFrKJT9gDUT/mXDPyfXwIRKWKyzPAWaT9g5/rKhOq1YA4vdwjKtpNPEba/pjC6ICSutHfE9NC9Ck1uBSBSURRY9PDz0Y5HhyBN9NEhJQCcBX2GSrfN2WZ/0nignOratttR+HxlYgAH0MqqBbESoROQQ7EF/0B8EVlmXCbVl6O+baCd/ban8p0CeCixrVTtb1g0242v67sEWw99hAKEuQyqFZpnxspwLC19MWlV0jK+D8a3/2Fu+ExNpaY0dvBCphT1f2kHJn9UfZMlz9ocvp07/GxarjW/vtKAdLj09/W+FY4mvQCTIR3It3JwglXK3pdN+IVHjtOPnfDRFGVFQdtoMPiG3R+30492pF2BTfQ/qfeuVoy35VVW/APihoiw= +api: eJzlVm1v2zYQ/ivEfVo71nLarCiEYUCKuUWWdgliFy0QGANNnW02EqmSlBND4H8vjpSUONbQfR36SeLLPXf33AuvBS82DvIb+BOlcsroa/zWKIsVau9gycHUaIVXRp8XkMN9Vb7dX+D+nxPgUAsrKvRoCaAFLSqEHG5xDxyUhhxq4bfAoUAnraoJBHK4wD0za1Z0+ph9rJBDtywg97ZBDk5usRKQt+D3NeEr7XGDFjisja2ET1uvTyGEJYm72miHjiReTqf0OdQ/b6RER6qk0R61j9h477P7qqT/I43OW6U3EEIIHE7HMM/1TpSqiL6g84fYoq5LJSOHWW3NqsTq16+O5EZ0mdVXlARQW2Leq+SJ88I37ocsvHoJgUOFzokNjnhAcXFeaDl+mDaO/ebglS9pa2atsQMTr46ZeGfsShUF6kMOnmfP///unh67e50CjhR6ZxorkWnj2do0uvg5suC3sXo4uzpnjxxmGAV+Aj4CB4eyscrvY09cobBoX1BPzG+WgbcgjblVGFfLp63xPfrxvsiEY18+fmCrPUvttUK/NdSQNxhpoUabQ7Y7yQpbZO0t7kNsZ2SO3fUdurEl5NAmekOeZe3WOB/ytjbWB+CwE1aJVZnYpbMU2rVoSuKyNFKUcfup5YstMjqgN4C6u98ioyRI2idEI+k4hHszfTMdRaKr/4LykBoPOFvv61GcdHkUKT4WfajmdC853YdnCLeo1UWkvHveLq9m12eL2Yv5bD4/v/y7f+o6ucAPQj6gdCZGg2idLkF/+12frX99XsTMUnptoniXYZfxFUZ21axKJcmVY4cNE/FlY0J6tUMmdMGkqeoSqT/V1sTDPtXpj/Wwa2NZZbTyhnI7SnprGsqErTGe8j0Vr5AxhimRyCmXZ9nd3d1EiqrRhZhIUxEJpZKoXeSx4+1Dt8OfCBdGukFambjOLK7RopaYdUAuI1RK5OTsyWQ6maascr4S+pGi/15EB/wNoYqjQF0KpQk/Gtt2BXYDO5p7Cku9PU8gVGVL3hXLDbTtSjj8ZMsQaPtbgzaW/kNtxUoslKP/AvK1KB0e2TI0SvilG8iKZ+wHk9Oo/X0W630s77KhFfA4paVZLSwDhy2KAm00LZ2cSYm1fyQzTEhUOEP7eT9bAAfREDsDg0+SO6KO2vH723iBLcwt6j8Gqzwtya4QvgP4oaIs sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- diff --git a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx index a4d4935afc..a00d32b6d3 100644 --- a/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx +++ b/versioned_docs/version-8.6/apis-tools/operate-api/specifications/xml-by-key.api.mdx @@ -5,9 +5,9 @@ description: "Get process definition as XML by key" sidebar_label: "Get process definition as XML by key" hide_title: true hide_table_of_contents: true -api: eJzlVltv0zAU/iuWn7h0TccGQhFCGqJDg8GmtQikaQ9uctp6S+xgO92qKP+dc+wkXdtweUW8tL6c853bd45TcScWlsfX/NLoBKx9D3OppJNa8ZsB1wUYQZuzlMf8Ic/erT/Bmg94IYzIwYEh3Yor3KDAnb+TCpeFcEtcp2ATIwuPF3PUZXrOimCKpRtbA27gRykNoB1nShhwmywhFzyuuFsXBC6VgwUYFJ1rkwsXjl4d87q+IXVbaGXBksaL0Yj+to1PyoSson6iEUo5jw0PLsK4aL1n0Toj1QLx63rAj/swz9RKZDJl5DxYt40tiiKTiU9fhCHPMsif31rS67GlZ7eQEABKYtKdDJFYJ1xp/5iFoxccXcwxPLGAngioKAilkv7LcLAfN95Il9HR2Bhtukwc7WfiVJuZTFNQ2zl4Fj3798M93g/3KhQcqPRWlyYBprRjc12q9P9gwcu+fji5PGOPAmbgFf6DfOChhaQ00q39QJyBMGAOaCDG1zf1oMIU6DsJfnezOxc/gOsZikxY9v3zOZutWRisOHCXmgbxAnxOaMTGPFodRo3ywUbZRhUq1X62kW9m1c7q0uC041XIdR1HUbXU1tVxVWjjahReCSMF1sUnmO5CneeizCixmU5E5o93w5gugdEFvQY05x3uiRHB+pBySja24V6PXo96kUj0Fygbnmxwls4VvThBuBfJvxxt3SYkF4Jua9XVXhQyvHvNQ3dxOb46mY4PJuPJ5OziS/voNXro4eP6dyiNi94h2gch3kqfttT9+G3qaSbVXHv1hm4X/jUGdlnOsIUolP2ANRP+mcM/J1fAhEpZovMiAxpWLcla3tOKtbDYOizXSB9NRPeazuiSmLDU2hH5QycjNLkViERBWWTR/f39MBE5zj8xRIOUBHQS8Ekm2SZv583JYEc51YnttKX2+8jAHAygl1EDZCNCJSKHYA+Ho+EosMq6XKhHhv6yo7aS19XJfxQUmcCa1o2nVdNt13x1GMbRbr/haRxAqeWQV6FzrnlVzYSFryarazrGd8P4obBpNN+WqbS0xvaei8zCnm/dCOVPrppPpafsdx9UvcG0fFZr3+hZSTtceqL63xqnFV+CSJGZ5Fe4OUFSFe6RTvfhRC3UDaYP4ynKiJJS1aVzh+YetdePN++8AJvqO1BvO68cbcmvuv4JhPioRg== +api: eJzlVm1v2zYQ/ivEfdo6xnLabCiEYUCKuUXWbgliDxsQ+ANNnW02EqmSlBND4H8fjpTk2NZevg79JPHlnrt77o0teLFxkD/AnTUSnfsZ10orr4yGJQdToxW0uCkgh+eqfLf/iHvgUAsrKvRoSbYFLSqEHB7jmdKQQy38FjgU6KRVdcTL4SPumVmzOqlixUEXB4tfGmWxgNzbBjk4ucVKQN6C39cErrTHDVrgsDa2Ej5t/XAFISxJ3NVGO3Qk8Xo6pc+x8nkjSStwkEZ71D5i47PPnquS/s80Om+V3kAIIXC4GsO80TtRqoKR8ej8Mbao61LJSF9WW7MqsfrusyO5EV1m9RklAdSWSPcqeeK88I37VxbevIbAoULnxAZHPKCgOC+0HD9MG+d+c/DKl7Q1s9bYgYk350y8N3aligL1MQevslf/f3evzt29TwFHCr0zjZXItPFsbRpdfB1Z8P1YPVzf3bAXDjOMAl8BH4GDQ9lY5fexIa5QWLQX1BDzh2XgLUhjHhXG1fK0L35AP9IUmXDsz18/sdWepcZaod8aasQbjJxQi80h211mnfDFQdhl7SPuQ+xtZJvd9b26sSXk0CauQ55l7dY4H/K2NtYH4LATVolVmaimsxTntWhKIrY0UpRx+9SNxRYZHdA0oD7vt8goI5L2CXFKOo7h3k7fTkeR6OrfoBzy5ICz9b4exUmXR5Hi5OjjNqd7yek+VkPsRa3S3OsG3e3d7P56MbuYz+bzm9vf+qHXyQV+FP8BpTMxGkTrdAn62+/71P3lj0VMM6XXJop36XYbpzGyu2ZVKkmunDtsmIhjjgnp1Q6Z0AWTpqpLpGbVJ1mf9/THeti1sawyWnlDiR4lvTUNZcLWGE/JnypZyBjDlEjklMuz7OnpaSJF1ehCTKSpiIRSSdQu8tjx9qnb4SfChZFukFYmrjOLa7SoJWYdkMsIlRI5OXs5mU6mKaucr4R+oeg/VtQReUOc4qOgLoXSBB4tbbtqe4DdZWpHp/UGHPIESiW35F3lPEDbroTD320ZAm1/adDGpnAotFiWhXL0X0C+FqXDM9uGFgrf3HdPpW/ZPz2oRp3p81nvY6GXDa2Ax5dber+FZeCwRVGgjXalk2spsfYvZIaHE5XQ0Jg+zBbAQTRE1UDnSZpH1FE7fnwXL7CFeUT902CVpyXZFcJfhPioRg== sidebar_class_name: "get api-method" -info_path: docs/apis-tools/operate-api/specifications/operate-public-api +info_path: versioned_docs/version-8.6/apis-tools/operate-api/specifications/operate-public-api custom_edit_url: null hide_send_button: true --- From 9640251dc553cfa9ef174d361082e669807ab968 Mon Sep 17 00:00:00 2001 From: Giuliano Rodrigues Lima <91879848+grlimacan@users.noreply.github.com> Date: Thu, 12 Dec 2024 08:56:48 +0200 Subject: [PATCH 18/26] chore: remove OpenSearch warnings (#4750) * chore: Remove Optimize OpenSearch warnings * chore: Implementing suggestions from review * chore: Implementing suggestions from review --- .../backup-restore/optimize-backup.md | 42 +++++++++---------- .../advanced-features/import-guide.md | 28 +++++++------ .../shared-elasticsearch-cluster.md | 4 -- .../system-configuration-platform-7.md | 8 ++-- .../configuration/system-configuration.md | 8 ---- .../optimize-deployment/install-and-start.md | 4 -- .../advanced-features/import-guide.md | 28 +++++++------ 7 files changed, 58 insertions(+), 64 deletions(-) diff --git a/docs/self-managed/operational-guides/backup-restore/optimize-backup.md b/docs/self-managed/operational-guides/backup-restore/optimize-backup.md index fd86d993ec..2215873da0 100644 --- a/docs/self-managed/operational-guides/backup-restore/optimize-backup.md +++ b/docs/self-managed/operational-guides/backup-restore/optimize-backup.md @@ -11,20 +11,20 @@ This release introduces breaking changes, including the utilized URL. For example, `curl 'http://localhost:8092/actuator/backups'` rather than the previously used `backup`. ::: -Optimize stores its data over multiple indices in Elasticsearch. To ensure data integrity across indices, a backup of Optimize data consists of two Elasticsearch snapshots, each containing a different set of Optimize indices. Each backup is identified by a positive integer backup ID. For example, a backup with ID `123456` consists of the following Elasticsearch snapshots: +Optimize stores its data over multiple indices in the database. To ensure data integrity across indices, a backup of Optimize data consists of two ElasticSearch/OpenSearch snapshots, each containing a different set of Optimize indices. Each backup is identified by a positive integer backup ID. For example, a backup with ID `123456` consists of the following snapshots: ``` camunda_optimize_123456_3.9.0_part_1_of_2 camunda_optimize_123456_3.9.0_part_2_of_2 ``` -Optimize provides an API to trigger a backup and retrieve information about a given backup's state. During backup creation Optimize can continue running. The backed up data can later be restored using the standard Elasticsearch snapshot restore API. +Optimize provides an API to trigger a backup and retrieve information about a given backup's state. During backup creation Optimize can continue running. The backed up data can later be restored using the standard ElasticSearch/OpenSearch snapshot restore API. ## Prerequisites The following prerequisites must be set up before using the backup API: -1. A snapshot repository of your choice must be registered with Elasticsearch. +1. A snapshot repository of your choice must be registered with ElasticSearch/OpenSearch. 2. The repository name must be specified using the `CAMUNDA_OPTIMIZE_BACKUP_REPOSITORY_NAME` environment variable, or by adding it to your Optimize [`environment-config.yaml`]($optimize$/self-managed/optimize-deployment/configuration/system-configuration/): ```yaml @@ -48,13 +48,13 @@ POST actuator/backups ### Response -| Code | Description | -| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | -| 202 Accepted | Backup process was successfully initiated. To determine whether backup process was completed refer to the GET API. | -| 400 Bad Request | Indicates issues with the request, for example when the `backupId` contains invalid characters. | -| 409 Conflict | Indicates that a backup with the same `backupId` already exists. | -| 500 Server Error | All other errors, e.g. issues communicating with Elasticsearch for snapshot creation. Refer to the returned error message for more details. | -| 502 Bad Gateway | Optimize has encountered issues while trying to connect to Elasticsearch. | +| Code | Description | +| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | +| 202 Accepted | Backup process was successfully initiated. To determine whether backup process was completed refer to the GET API. | +| 400 Bad Request | Indicates issues with the request, for example when the `backupId` contains invalid characters. | +| 409 Conflict | Indicates that a backup with the same `backupId` already exists. | +| 500 Server Error | All other errors, e.g. issues communicating with the database for snapshot creation. Refer to the returned error message for more details. | +| 502 Bad Gateway | Optimize has encountered issues while trying to connect to the database. | ### Example request @@ -96,8 +96,8 @@ GET actuator/backup | 200 OK | Backup state could be determined and is returned in the response body (see example below). | | 400 Bad Request | There is an issue with the request, for example the repository name specified in the Optimize configuration does not exist. Refer to returned error message for details. | | 404 Not Found | If a backup ID was specified, no backup with that ID exists. | -| 500 Server Error | All other errors, e.g. issues communicating with Elasticsearch for snapshot state retrieval. Refer to the returned error message for more details. | -| 502 Bad Gateway | Optimize has encountered issues while trying to connect to Elasticsearch. | +| 500 Server Error | All other errors, e.g. issues communicating with the database for snapshot state retrieval. Refer to the returned error message for more details. | +| 502 Bad Gateway | Optimize has encountered issues while trying to connect to the database. | ### Example request @@ -135,8 +135,8 @@ Possible states of the backup: - `COMPLETE`: The backup can be used for restoring data. - `IN_PROGRESS`: The backup process for this backup ID is still in progress. -- `FAILED`: Something went wrong when creating this backup. To find out the exact problem, use the [Elasticsearch get snapshot status API](https://www.elastic.co/guide/en/elasticsearch/reference/7.17/get-snapshot-status-api.html) for each of the snapshots included in the given backup. -- `INCOMPATIBLE`: The backup is incompatible with the current Elasticsearch version. +- `FAILED`: Something went wrong when creating this backup. To find out the exact problem, use the [Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/get-snapshot-status-api.html) / [OpenSearch](https://opensearch.org/docs/latest/api-reference/snapshots/get-snapshot-status/) get snapshot status API for each of the snapshots included in the given backup. +- `INCOMPATIBLE`: The backup is incompatible with the current ElasticSearch/OpenSearch version. - `INCOMPLETE`: The backup is incomplete (this could occur when the backup process was interrupted or individual snapshots were deleted). ## Delete backup API @@ -154,10 +154,10 @@ DELETE actuator/backups/{backupId} | Code | Description | | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| 204 No Content | The delete request for the associated snapshots was submitted to Elasticsearch successfully. | +| 204 No Content | The delete request for the associated snapshots was submitted to the database successfully. | | 400 Bad Request | There is an issue with the request, for example the repository name specified in the Optimize configuration does not exist. Refer to returned error message for details. | | 500 Server Error | An error occurred, for example the snapshot repository does not exist. Refer to the returned error message for details. | -| 502 Bad Gateway | Optimize has encountered issues while trying to connect to Elasticsearch. | +| 502 Bad Gateway | Optimize has encountered issues while trying to connect to ElasticSearch/OpenSearch. | ### Example request @@ -167,22 +167,22 @@ curl --request DELETE 'http://localhost:8092/actuator/backups/123456' ## Restore backup -There is no Optimize API to perform the backup restore. Instead, the standard [Elasticsearch restore snapshot API](https://www.elastic.co/guide/en/elasticsearch/reference/7.17/restore-snapshot-api.html) can be used. Note that the Optimize versions of your backup snapshots must match the currently running version of Optimize. You can identify the version at which the backup was taken by the version tag included in respective snapshot names; for example, a snapshot with the name`camunda_optimize_123456_3.9.0_part_1_of_2` was taken of Optimize version `3.9.0`. +There is no Optimize API to perform the backup restore. Instead, the standard [Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/restore-snapshot-api.html) / [OpenSearch](https://opensearch.org/docs/latest/api-reference/snapshots/restore-snapshot) restore snapshot API can be used. Note that the Optimize versions of your backup snapshots must match the currently running version of Optimize. You can identify the version at which the backup was taken by the version tag included in respective snapshot names; for example, a snapshot with the name`camunda_optimize_123456_3.9.0_part_1_of_2` was taken of Optimize version `3.9.0`. :::note Optimize must NOT be running while a backup is being restored. ::: -To restore an existing backup, all the snapshots this backup contains (as listed in the response of the [create backup API request](#example-response)) must be restored using the Elasticsearch API. +To restore an existing backup, all the snapshots this backup contains (as listed in the response of the [create backup API request](#example-response)) must be restored using the restore API. To restore a given backup, the following steps must be performed: 1. Stop Optimize. -2. Ensure no Optimize indices are present in Elasticsearch (or the restore process will fail). -3. Iterate over all Elasticsearch snapshots included in the desired backup and restore them using the Elasticsearch restore snapshot API. +2. Ensure no Optimize indices are present in the database (or the restore process will fail). +3. Iterate over all ElasticSearch/OpenSearch snapshots included in the desired backup and restore them using the restore snapshot API mentioned above. 4. Start Optimize. -Example Elasticsearch request: +Example request: ```shell curl --request POST `http://localhost:9200/_snapshot/repository_name/camunda_optimize_123456_3.9.0_part_1_of_2/_restore?wait_for_completion=true` diff --git a/optimize/self-managed/optimize-deployment/advanced-features/import-guide.md b/optimize/self-managed/optimize-deployment/advanced-features/import-guide.md index f23cda4b3b..451ba66436 100644 --- a/optimize/self-managed/optimize-deployment/advanced-features/import-guide.md +++ b/optimize/self-managed/optimize-deployment/advanced-features/import-guide.md @@ -14,17 +14,17 @@ In general, the import assumes the following setup: - A Camunda engine from which Optimize imports the data. - The Optimize backend, where the data is transformed into an appropriate format for efficient data analysis. -- [Elasticsearch](https://www.elastic.co/guide/index.html), which is the database Optimize persists all formatted data to. +- [Elasticsearch (ES)](https://www.elastic.co/guide/index.html) or [OpenSearch (OS)](https://opensearch.org/), which serves as the database that Optimize uses to persist all of its formatted data. The following depicts the setup and how the components communicate with each other: ![Optimize Import Structure](img/Optimize-Structure.png) -Optimize queries the engine data using a dedicated Optimize REST-API within the engine, transforms the data, and stores it in its own Elasticsearch database such that it can be quickly and easily queried by Optimize when evaluating reports or performing analyses. The reason for having a dedicated REST endpoint for Optimize is performance: the default REST-API adds a lot of complexity to retrieve the data from the engine database, which can result in low performance for large data sets. +Optimize queries the engine data using a dedicated Optimize REST-API within the engine, transforms the data, and stores it in its own database such that it can be quickly and easily queried by Optimize when evaluating reports or performing analyses. The reason for having a dedicated REST endpoint for Optimize is performance: the default REST-API adds a lot of complexity to retrieve the data from the engine database, which can result in low performance for large data sets. Note the following limitations regarding the data in Optimize's database: -- The data is only a near real-time representation of the engine database. This means Elasticsearch may not contain the data of the most recent time frame, e.g. the last two minutes, but all the previous data should be synchronized. +- The data is only a near real-time representation of the engine database. This means the database may not contain the data of the most recent time frame, e.g. the last two minutes, but all the previous data should be synchronized. - Optimize only imports the data it needs for its analysis. The rest is omitted and won't be available for further investigation. Currently, Optimize imports: - The history of the activity instances - The history of the process instances @@ -47,7 +47,7 @@ This section gives an overview of how fast Optimize imports certain data sets. T It is very likely that these metrics change for different data sets because the speed of the import depends on how the data is distributed. -The import is also affected by how the involved components are set up. For instance, if you deploy the Camunda engine on a different machine than Optimize and Elasticsearch to provide both applications with more computation resources, the process is likely to speed up. If the Camunda engine and Optimize are physically far away from each other, the network latency might slow down the import. +The import is also affected by how the involved components are set up. For instance, if you deploy the Camunda engine on a different machine than Optimize and Elasticsearch/OpenSearch to provide both applications with more computation resources, the process is likely to speed up. If the Camunda engine and Optimize are physically far away from each other, the network latency might slow down the import. ### Setup @@ -135,7 +135,7 @@ During execution, the following steps are performed: 2. Map entities and add an import job 3. [Execute the import](#execute-the-import). 1. Poll a job - 2. Persist the new entities to Elasticsearch + 2. Persist the new entities to the database ### Start an import round @@ -175,33 +175,37 @@ First, the `ImportScheduler` retrieves the newest index, which identifies the la #### Map entities and add an import job -All fetched entities are mapped to a representation that allows Optimize to query the data very quickly. Subsequently, an import job is created and added to the queue to persist the data in Elasticsearch. +All fetched entities are mapped to a representation that allows Optimize to query the data very quickly. Subsequently, an import job is created and added to the queue to persist the data in the database. ### Execute the import Full aggregation of the data is performed by a dedicated `ImportJobExecutor` for each entity type, which waits for `ImportJob` instances to be added to the execution queue. As soon as a job is in the queue, the executor: - Polls the job with the new Optimize entities -- Persists the new entities to Elasticsearch +- Persists the new entities to the database The data from the engine and Optimize do not have a one-to-one relationship, i.e., one entity type in Optimize may consist of data aggregated from different data types of the engine. For example, the historic process instance is first mapped to an Optimize `ProcessInstance`. However, for the heatmap analysis it is also necessary for `ProcessInstance` to contain all activities that were executed in the process instance. -Therefore, the Optimize `ProcessInstance` is an aggregation of the engine's historic process instance and other related data: historic activity instance data, user task data, and variable data are all [nested documents](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) within Optimize's `ProcessInstance` representation. +Therefore, the Optimize `ProcessInstance` is an aggregation of the engine's historic process instance and other related data: historic activity instance data, user task data, and variable data are all nested documents ([ES](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) / [OS](https://opensearch.org/docs/latest/field-types/supported-field-types/nested/)) within Optimize's `ProcessInstance` representation. :::note -Optimize uses [nested documents](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html), the above mentioned data is an example of documents that are nested within Optimize's `ProcessInstance` index. +Optimize uses nested documents ([ES](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) / [OS](https://opensearch.org/docs/latest/field-types/supported-field-types/nested/)), the above mentioned data is an example of documents that are nested within Optimize's `ProcessInstance` index. -Elasticsearch applies restrictions regarding how many objects can be nested within one document. If your data includes too many nested documents, you may experience import failures. To avoid this, you can temporarily increase the nested object limit in Optimize's [index configuration](./../configuration/system-configuration.md#index-settings). Note that this might cause memory errors. +Elasticsearch and OpenSearch apply restrictions regarding how many objects can be nested within one document. If your data includes too many nested documents, you may experience import failures. To avoid this, you can temporarily increase the nested object limit in Optimize's [index configuration](./../configuration/system-configuration.md#index-settings). Note that this might cause memory errors. ::: Import executions per engine entity are actually independent from another. Each follows a [producer-consumer-pattern](https://dzone.com/articles/producer-consumer-pattern), where the type specific `ImportService` is the single producer and a dedicated single `ImportJobExecutor` is the consumer of its import jobs, decoupled by a queue. So, both are executed in different threads. To adjust the processing speed of the executor, the queue size and the number of threads that process the import jobs can be configured: +:::note +Although the parameters below include `ElasticSearch` in their name, they apply to both ElasticSearch and OpenSearch installations. For backward compatibility reasons, the parameters have not been renamed. +::: + ```yaml import: # Number of threads being used to process the import jobs per data type that are writing - # data to elasticsearch. + # data to the database. elasticsearchJobExecutorThreadCount: 1 - # Adjust the queue size of the import jobs per data type that store data to elasticsearch. + # Adjust the queue size of the import jobs per data type that store data to the database. # A too large value might cause memory problems. elasticsearchJobExecutorQueueSize: 5 ``` diff --git a/optimize/self-managed/optimize-deployment/configuration/shared-elasticsearch-cluster.md b/optimize/self-managed/optimize-deployment/configuration/shared-elasticsearch-cluster.md index 7025397992..bb01105678 100644 --- a/optimize/self-managed/optimize-deployment/configuration/shared-elasticsearch-cluster.md +++ b/optimize/self-managed/optimize-deployment/configuration/shared-elasticsearch-cluster.md @@ -18,10 +18,6 @@ The following illustration demonstrates this use case with two Optimize instance Changing the value of `*.settings.index.prefix` after an instance was already running results in new indexes being created with the new prefix value. There is no support in migrating data between indexes based on different prefixes. ::: -:::note -Not all Optimize features are supported when using OpenSearch as a database. For a full list of the features that are currently supported, please refer to the [Camunda 7](https://github.com/camunda/issues/issues/705) and [Camunda 8](https://github.com/camunda/issues/issues/635) OpenSearch features. -::: - \* Elasticsearch index prefix settings path: `es.settings.index.prefix`
\* OpenSearch index prefix settings path: `opensearch.settings.index.prefix` ![Shared Elasticsearch Cluster Setup](img/shared-elasticsearch-cluster.png) diff --git a/optimize/self-managed/optimize-deployment/configuration/system-configuration-platform-7.md b/optimize/self-managed/optimize-deployment/configuration/system-configuration-platform-7.md index e5491a96ae..dd3eddf077 100644 --- a/optimize/self-managed/optimize-deployment/configuration/system-configuration-platform-7.md +++ b/optimize/self-managed/optimize-deployment/configuration/system-configuration-platform-7.md @@ -64,16 +64,18 @@ REST API endpoint locations, timeouts, etc. | import.data.user-task-worker.metadata.maxPageSize | 10000 | The max page size when multiple users or groups are iterated during the metadata refresh. | | import.data.user-task-worker.metadata.maxEntryLimit | 100000 | The entry limit of the cache that holds the metadata, if you need more entries you can increase that limit. When increasing the limit, keep in mind to account for that by increasing the JVM heap memory as well. Please refer to the "Adjust Optimize heap size" documentation. | | import.skipDataAfterNestedDocLimitReached | false | Some data can no longer be imported to a given document if its number of nested documents has reached the configured limit. Enable this setting to skip this data during import if the nested document limit has been reached. | -| import.elasticsearchJobExecutorThreadCount | 1 | Number of threads being used to process the import jobs per data type that are writing data to elasticsearch. | -| import.elasticsearchJobExecutorQueueSize | 5 | Adjust the queue size of the import jobs per data type that store data to elasticsearch. If the value is too large it might cause memory problems. | +| import.elasticsearchJobExecutorThreadCount\* | 1 | Number of threads being used to process the import jobs per data type that are writing data to the database. | +| import.elasticsearchJobExecutorQueueSize\* | 5 | Adjust the queue size of the import jobs per data type that store data to the database. If the value is too large it might cause memory problems. | | import.handler.backoff.interval | 5000 | Interval in milliseconds which is used for the backoff time calculation. | | import.handler.backoff.max | 15 | Once all pages are consumed, the import scheduler component will start scheduling fetching tasks in increasing periods of time, controlled by "backoff" counter. | | import.handler.backoff.isEnabled | true | Tells if the backoff is enabled of not. | | import.indexType | import-index | The name of the import index type. | -| import.importIndexStorageIntervalInSec | 10 | States how often the import index should be stored to Elasticsearch. | +| import.importIndexStorageIntervalInSec | 10 | States how often the import index should be stored to the database. | | import.currentTimeBackoffMilliseconds | 300000 | This is the time interval the import backs off from the current tip of the time during the ongoing import cycle. This ensures that potentially missed concurrent writes in the engine are reread going back by the amount of this time interval. | | import.identitySync.includeUserMetaData | true | Whether to include metaData (firstName, lastName, email) when synchronizing users. If disabled only user IDs will be shown on user search and in collection permissions. | | import.identitySync.collectionRoleCleanupEnabled | false | Whether collection role cleanup should be performed. If enabled, users that no longer exist in the identity provider will be automatically removed from collection permissions. | | import.identitySync.cronTrigger | `0 */2 * * *` | Cron expression for when the identity sync should run, defaults to every second hour. You can either use the default Cron (5 fields) or the Spring Cron (6 fields) expression format here.

For details on the format please refer to:
  • [Cron Expression Description](https://en.wikipedia.org/wiki/Cron)
  • [Spring Cron Expression Documentation](https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/support/CronSequenceGenerator.html)
| | import.identitySync.maxPageSize | 10000 | The max page size when multiple users or groups are iterated during the import. | | import.identitySync.maxEntryLimit | 100000 | The entry limit of the user/group search cache. When increasing the limit, keep in mind to account for this by increasing the JVM heap memory as well. Please refer to the "Adjust Optimize heap size" documentation on how to configure the heap size. | + +\* Although this parameter includes `ElasticSearch` in its name, it applies to both ElasticSearch and OpenSearch installations. For backward compatibility reasons, the parameter has not been renamed. diff --git a/optimize/self-managed/optimize-deployment/configuration/system-configuration.md b/optimize/self-managed/optimize-deployment/configuration/system-configuration.md index 22b7c67c0e..97342e0223 100644 --- a/optimize/self-managed/optimize-deployment/configuration/system-configuration.md +++ b/optimize/self-managed/optimize-deployment/configuration/system-configuration.md @@ -186,10 +186,6 @@ Define a secured connection to be able to communicate with a secured Elasticsear These settings are only relevant when operating Optimize with OpenSearch. -:::note -Not all Optimize features are supported when using OpenSearch as a database. For a full list of the features that are currently supported, please refer to the [Camunda 7](https://github.com/camunda/issues/issues/705) and [Camunda 8](https://github.com/camunda/issues/issues/635) OpenSearch features. -::: - #### Connection settings This section details everything related to building the connection to OpenSearch. @@ -236,10 +232,6 @@ Define a secured connection to be able to communicate with a secured OpenSearch | -------------------------------- | ------------- | ------------------------------------------------------------------------ | | opensearch.backup.repositoryName | "" | The name of the snapshot repository to be used to back up Optimize data. | -:::note -The backup functionality is not yet supported for OpenSearch. -::: - ### Email Settings for the email server to send email notifications, e.g. when an alert is triggered. diff --git a/optimize/self-managed/optimize-deployment/install-and-start.md b/optimize/self-managed/optimize-deployment/install-and-start.md index 2c99ebde0e..a514fe0b8b 100644 --- a/optimize/self-managed/optimize-deployment/install-and-start.md +++ b/optimize/self-managed/optimize-deployment/install-and-start.md @@ -89,10 +89,6 @@ After that, [configure the database connection](./configuration/getting-started. #### Getting started with the Optimize Docker image -:::note -Not all Optimize features are supported when using OpenSearch as a database. For a full list of the features that are currently supported, please refer to the [Camunda 7](https://github.com/camunda/issues/issues/705) and [Camunda 8](https://github.com/camunda/issues/issues/635) OpenSearch features. -::: - ##### Full local setup To start the Optimize Docker image and connect to an already locally running Camunda 7 as well as Elasticsearch instance you could run the following command: diff --git a/optimize_versioned_docs/version-3.14.0/self-managed/optimize-deployment/advanced-features/import-guide.md b/optimize_versioned_docs/version-3.14.0/self-managed/optimize-deployment/advanced-features/import-guide.md index f23cda4b3b..451ba66436 100644 --- a/optimize_versioned_docs/version-3.14.0/self-managed/optimize-deployment/advanced-features/import-guide.md +++ b/optimize_versioned_docs/version-3.14.0/self-managed/optimize-deployment/advanced-features/import-guide.md @@ -14,17 +14,17 @@ In general, the import assumes the following setup: - A Camunda engine from which Optimize imports the data. - The Optimize backend, where the data is transformed into an appropriate format for efficient data analysis. -- [Elasticsearch](https://www.elastic.co/guide/index.html), which is the database Optimize persists all formatted data to. +- [Elasticsearch (ES)](https://www.elastic.co/guide/index.html) or [OpenSearch (OS)](https://opensearch.org/), which serves as the database that Optimize uses to persist all of its formatted data. The following depicts the setup and how the components communicate with each other: ![Optimize Import Structure](img/Optimize-Structure.png) -Optimize queries the engine data using a dedicated Optimize REST-API within the engine, transforms the data, and stores it in its own Elasticsearch database such that it can be quickly and easily queried by Optimize when evaluating reports or performing analyses. The reason for having a dedicated REST endpoint for Optimize is performance: the default REST-API adds a lot of complexity to retrieve the data from the engine database, which can result in low performance for large data sets. +Optimize queries the engine data using a dedicated Optimize REST-API within the engine, transforms the data, and stores it in its own database such that it can be quickly and easily queried by Optimize when evaluating reports or performing analyses. The reason for having a dedicated REST endpoint for Optimize is performance: the default REST-API adds a lot of complexity to retrieve the data from the engine database, which can result in low performance for large data sets. Note the following limitations regarding the data in Optimize's database: -- The data is only a near real-time representation of the engine database. This means Elasticsearch may not contain the data of the most recent time frame, e.g. the last two minutes, but all the previous data should be synchronized. +- The data is only a near real-time representation of the engine database. This means the database may not contain the data of the most recent time frame, e.g. the last two minutes, but all the previous data should be synchronized. - Optimize only imports the data it needs for its analysis. The rest is omitted and won't be available for further investigation. Currently, Optimize imports: - The history of the activity instances - The history of the process instances @@ -47,7 +47,7 @@ This section gives an overview of how fast Optimize imports certain data sets. T It is very likely that these metrics change for different data sets because the speed of the import depends on how the data is distributed. -The import is also affected by how the involved components are set up. For instance, if you deploy the Camunda engine on a different machine than Optimize and Elasticsearch to provide both applications with more computation resources, the process is likely to speed up. If the Camunda engine and Optimize are physically far away from each other, the network latency might slow down the import. +The import is also affected by how the involved components are set up. For instance, if you deploy the Camunda engine on a different machine than Optimize and Elasticsearch/OpenSearch to provide both applications with more computation resources, the process is likely to speed up. If the Camunda engine and Optimize are physically far away from each other, the network latency might slow down the import. ### Setup @@ -135,7 +135,7 @@ During execution, the following steps are performed: 2. Map entities and add an import job 3. [Execute the import](#execute-the-import). 1. Poll a job - 2. Persist the new entities to Elasticsearch + 2. Persist the new entities to the database ### Start an import round @@ -175,33 +175,37 @@ First, the `ImportScheduler` retrieves the newest index, which identifies the la #### Map entities and add an import job -All fetched entities are mapped to a representation that allows Optimize to query the data very quickly. Subsequently, an import job is created and added to the queue to persist the data in Elasticsearch. +All fetched entities are mapped to a representation that allows Optimize to query the data very quickly. Subsequently, an import job is created and added to the queue to persist the data in the database. ### Execute the import Full aggregation of the data is performed by a dedicated `ImportJobExecutor` for each entity type, which waits for `ImportJob` instances to be added to the execution queue. As soon as a job is in the queue, the executor: - Polls the job with the new Optimize entities -- Persists the new entities to Elasticsearch +- Persists the new entities to the database The data from the engine and Optimize do not have a one-to-one relationship, i.e., one entity type in Optimize may consist of data aggregated from different data types of the engine. For example, the historic process instance is first mapped to an Optimize `ProcessInstance`. However, for the heatmap analysis it is also necessary for `ProcessInstance` to contain all activities that were executed in the process instance. -Therefore, the Optimize `ProcessInstance` is an aggregation of the engine's historic process instance and other related data: historic activity instance data, user task data, and variable data are all [nested documents](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) within Optimize's `ProcessInstance` representation. +Therefore, the Optimize `ProcessInstance` is an aggregation of the engine's historic process instance and other related data: historic activity instance data, user task data, and variable data are all nested documents ([ES](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) / [OS](https://opensearch.org/docs/latest/field-types/supported-field-types/nested/)) within Optimize's `ProcessInstance` representation. :::note -Optimize uses [nested documents](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html), the above mentioned data is an example of documents that are nested within Optimize's `ProcessInstance` index. +Optimize uses nested documents ([ES](https://www.elastic.co/guide/en/elasticsearch/reference/current/nested.html) / [OS](https://opensearch.org/docs/latest/field-types/supported-field-types/nested/)), the above mentioned data is an example of documents that are nested within Optimize's `ProcessInstance` index. -Elasticsearch applies restrictions regarding how many objects can be nested within one document. If your data includes too many nested documents, you may experience import failures. To avoid this, you can temporarily increase the nested object limit in Optimize's [index configuration](./../configuration/system-configuration.md#index-settings). Note that this might cause memory errors. +Elasticsearch and OpenSearch apply restrictions regarding how many objects can be nested within one document. If your data includes too many nested documents, you may experience import failures. To avoid this, you can temporarily increase the nested object limit in Optimize's [index configuration](./../configuration/system-configuration.md#index-settings). Note that this might cause memory errors. ::: Import executions per engine entity are actually independent from another. Each follows a [producer-consumer-pattern](https://dzone.com/articles/producer-consumer-pattern), where the type specific `ImportService` is the single producer and a dedicated single `ImportJobExecutor` is the consumer of its import jobs, decoupled by a queue. So, both are executed in different threads. To adjust the processing speed of the executor, the queue size and the number of threads that process the import jobs can be configured: +:::note +Although the parameters below include `ElasticSearch` in their name, they apply to both ElasticSearch and OpenSearch installations. For backward compatibility reasons, the parameters have not been renamed. +::: + ```yaml import: # Number of threads being used to process the import jobs per data type that are writing - # data to elasticsearch. + # data to the database. elasticsearchJobExecutorThreadCount: 1 - # Adjust the queue size of the import jobs per data type that store data to elasticsearch. + # Adjust the queue size of the import jobs per data type that store data to the database. # A too large value might cause memory problems. elasticsearchJobExecutorQueueSize: 5 ``` From 7760eeea0a62ba38965af06a6d9cbb6be6742447 Mon Sep 17 00:00:00 2001 From: gbetances089 Date: Thu, 12 Dec 2024 10:01:06 +0100 Subject: [PATCH 19/26] task(c8run)-update-guides-after-8.6.6-and-alpha2-release (#4753) --- docs/guides/react-components/_install-c8run.md | 2 +- docs/self-managed/setup/deploy/local/c8run.md | 2 +- .../version-8.6/guides/react-components/_install-c8run.md | 2 +- .../version-8.6/self-managed/setup/deploy/local/c8run.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guides/react-components/_install-c8run.md b/docs/guides/react-components/_install-c8run.md index 3047dee787..520996f22c 100644 --- a/docs/guides/react-components/_install-c8run.md +++ b/docs/guides/react-components/_install-c8run.md @@ -11,7 +11,7 @@ If no version of Java is found, follow your chosen installation's instructions f ### Install and start Camunda 8 Run -1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha1) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. +1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. 2. Navigate to the new `c8run` directory. 3. Start Camunda 8 Run by running `./start.sh` (or `.\c8run.exe start` on Windows) in your terminal. diff --git a/docs/self-managed/setup/deploy/local/c8run.md b/docs/self-managed/setup/deploy/local/c8run.md index 7684e4269f..881836191e 100644 --- a/docs/self-managed/setup/deploy/local/c8run.md +++ b/docs/self-managed/setup/deploy/local/c8run.md @@ -36,7 +36,7 @@ If no version of Java is found, follow your chosen installation's instructions f ## Install and start Camunda 8 Run -1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha1) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. +1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.7.0-alpha2) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. 2. Navigate to the new `c8run` directory. 3. Start Camunda 8 Run by running `./start.sh` (or `.\c8run.exe start` on Windows) in your terminal. diff --git a/versioned_docs/version-8.6/guides/react-components/_install-c8run.md b/versioned_docs/version-8.6/guides/react-components/_install-c8run.md index ee83da5d46..50fb42c079 100644 --- a/versioned_docs/version-8.6/guides/react-components/_install-c8run.md +++ b/versioned_docs/version-8.6/guides/react-components/_install-c8run.md @@ -11,7 +11,7 @@ If no version of Java is found, follow your chosen installation's instructions f ### Install and start Camunda 8 Run -1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.6.5) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. +1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.6.6) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. 2. Navigate to the new `c8run` directory. 3. Start Camunda 8 Run by running `./start.sh` (or `.\c8run.exe start` on Windows) in your terminal. diff --git a/versioned_docs/version-8.6/self-managed/setup/deploy/local/c8run.md b/versioned_docs/version-8.6/self-managed/setup/deploy/local/c8run.md index 1eb1b655df..de44b09632 100644 --- a/versioned_docs/version-8.6/self-managed/setup/deploy/local/c8run.md +++ b/versioned_docs/version-8.6/self-managed/setup/deploy/local/c8run.md @@ -36,7 +36,7 @@ If no version of Java is found, follow your chosen installation's instructions f ## Install and start Camunda 8 Run -1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.6.5) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. +1. Download the [latest release of Camunda 8 Run](https://github.com/camunda/camunda/releases/tag/8.6.6) for your operating system and architecture. Opening the .tgz file extracts the Camunda 8 Run script into a new directory. 2. Navigate to the new `c8run` directory. 3. Start Camunda 8 Run by running `./start.sh` (or `.\c8run.exe start` on Windows) in your terminal. From ccdafa96f627bdb09e3a29a5fccb7c47478a0996 Mon Sep 17 00:00:00 2001 From: Ingo Richtsmeier Date: Thu, 12 Dec 2024 10:53:07 +0100 Subject: [PATCH 20/26] More explicit description how to apply the DNS changes (#4747) * More explicit description how to apply the DNS changes * tech writer edits --------- Co-authored-by: Cole Garbo Co-authored-by: Mark Sellings --- .../self-managed/setup/deploy/amazon/amazon-eks/dual-region.md | 3 ++- .../self-managed/setup/deploy/amazon/amazon-eks/dual-region.md | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md b/docs/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md index 68aa8a6c4d..137adb9efe 100644 --- a/docs/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md +++ b/docs/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md @@ -233,7 +233,8 @@ kubectl --context $CLUSTER_1 apply -f https://raw.githubusercontent.com/camunda/ ``` 3. The script will retrieve the IPs of the load balancer via the AWS CLI and return the required config change. -4. As the script suggests, copy the statement between the placeholders to edit the CoreDNS configmap in cluster 0 and cluster 1, depending on the placeholder. +4. The script prints the `kubectl edit` commands to change the DNS settings of each cluster inline. Copy the statement between the placeholders to edit the CoreDNS configmap in cluster 0 and cluster 1, depending on the placeholder. + An alternative to inline editing is to create two copies of the file `kubernetes/coredns.yml`, one for each cluster. Add the section generated by the script to each file. Apply the changes to each cluster with e.g. `kubectl --context cluster-london -n kube-system apply -f file.yml`. Replace the `context` parameter with your current values.
Example output diff --git a/versioned_docs/version-8.6/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md b/versioned_docs/version-8.6/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md index 49af2c274a..15670e7721 100644 --- a/versioned_docs/version-8.6/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md +++ b/versioned_docs/version-8.6/self-managed/setup/deploy/amazon/amazon-eks/dual-region.md @@ -233,7 +233,8 @@ kubectl --context $CLUSTER_1 apply -f https://raw.githubusercontent.com/camunda/ ``` 3. The script will retrieve the IPs of the load balancer via the AWS CLI and return the required config change. -4. As the script suggests, copy the statement between the placeholders to edit the CoreDNS configmap in cluster 0 and cluster 1, depending on the placeholder. +4. The script prints the `kubectl edit` commands to change the DNS settings of each cluster inline. Copy the statement between the placeholders to edit the CoreDNS configmap in cluster 0 and cluster 1, depending on the placeholder. + An alternative to inline editing is to create two copies of the file `kubernetes/coredns.yml`, one for each cluster. Add the section generated by the script to each file. Apply the changes to each cluster with e.g. `kubectl --context cluster-london -n kube-system apply -f file.yml`. Replace the `context` parameter with your current values.
Example output From 688013ba2deb274b4d1e81c80d5c9a495511f1e7 Mon Sep 17 00:00:00 2001 From: Mark Sellings Date: Thu, 12 Dec 2024 10:33:30 +0000 Subject: [PATCH 21/26] Announcements for 8.7 release (#4679) * Initial setup * Initial structure * Initial content updates * Edits * Edit intro * Edit following meeting * TW edits * Restructure announcements * TW edits * Remove headings * Changes to APIs * Add Manual installation section * Announcements landing page format * Fix formatting * Badges CSS * Landing page edits * TW edits * Add camunda Exporter from PR 4715 * added Separated Ingress removal * Tasklist announcement --------- Co-authored-by: Ahmed AbouZaid <6760103+aabouzaid@users.noreply.github.com> --- docs/reference/announcements.md | 453 +++--------------- docs/reference/announcements/850.md | 188 ++++++++ docs/reference/announcements/860.md | 182 +++++++ docs/reference/announcements/870.md | 183 +++++++ docs/reference/img/doc-icon.png | Bin 0 -> 213 bytes .../img/harmonized-indices-schema.png | Bin 0 -> 163835 bytes .../reference/img/target-camunda-exporter.png | Bin 0 -> 55175 bytes sidebars.js | 14 +- src/css/custom.css | 33 ++ 9 files changed, 675 insertions(+), 378 deletions(-) create mode 100644 docs/reference/announcements/850.md create mode 100644 docs/reference/announcements/860.md create mode 100644 docs/reference/announcements/870.md create mode 100644 docs/reference/img/doc-icon.png create mode 100644 docs/reference/img/harmonized-indices-schema.png create mode 100644 docs/reference/img/target-camunda-exporter.png diff --git a/docs/reference/announcements.md b/docs/reference/announcements.md index adbeb28643..da89278137 100644 --- a/docs/reference/announcements.md +++ b/docs/reference/announcements.md @@ -1,420 +1,119 @@ --- id: announcements title: "Announcements" -description: "Important announcements including deprecation & removal notices" +description: "Important announcements for upcoming and past Camunda 8 releases that customers should be aware of, including deprecation & removal notices." --- -## Camunda 8.7 - -Release date: TBD - -End of maintenance: TBD - -### Southeast Asia now available for SaaS customers - -SaaS customers can now create orchestration clusters in the [Singapore (asia-southeast1) region](/reference/regions.md), ensuring lower latency and improved processing speed for organizations operating in southeast Asian countries. - -## Camunda 8.6 - -Release date: 8th of Oct 2024 - -End of maintenance: 14th of April 2026 - -### License key changes - -With the 8.6 release, Camunda 8 Self-Managed requires a license key for production usage. For additional details, review the [blog post on licensing updates for Camunda 8 Self-Managed](https://camunda.com/blog/2024/04/licensing-update-camunda-8-self-managed/). - -Review the following documentation for your components for more information on how to provide the license key to each component as an environment variable: - -- [Console](/self-managed/console-deployment/configuration.md#environment-variables) -- [Zeebe](/self-managed/zeebe-deployment/configuration/configuration.md#licensing) -- [Operate](/self-managed/operate-deployment/operate-configuration.md#licensing) -- [Tasklist](/self-managed/tasklist-deployment/tasklist-configuration.md#licensing) -- [Optimize]($optimize$/self-managed/optimize-deployment/configuration/system-configuration-platform-8#licensing) -- [Identity](/self-managed/identity/deployment/configuration-variables.md#license-configuration) -- [Modeler](/self-managed/modeler/web-modeler/configuration/configuration.md#licensing) - -To configure with Helm, visit the [Self Managed installation documentation](/self-managed/setup/install.md). - -:::note -Camunda 8 components without a valid license may display **Non-Production License** in the navigation bar and issue warnings in the logs. These warnings have no impact on startup or functionality, with the exception that Web Modeler has a limitation of five users. To obtain a license, visit the [Camunda Enterprise page](https://camunda.com/platform/camunda-platform-enterprise-contact/). -::: - -### Zeebe Java client - -Starting with 8.7, the Zeebe Java client will become the new Camunda Java client. This transition brings a new Java client structure designed to enhance the user experience and introduce new features while maintaining compatibility with existing codebases. - -The primary goal of those changes is to enable users to interact with Camunda clusters with one consolidated client rather than multiple. The `CamundaClient` will replace the `ZeebeClient`, offering the same functionality and adding new capabilities. If you need to continue using the old `ZeebeClient`, you can use the version 8.6 artifact without any issues with newer cluster versions as the client is forward-compatible. - -:::note -The Zeebe Java client will not be developed further and will only receive bug fixes for as long as version 8.6 is officially supported. -::: - -#### Key changes - -- **New package structure**: - - Package `io.camunda.client`: This package contains the new `CamundaClient` and all the features slated for release in version 8.7. -- **Properties and environment variables refactoring**: - - All old Java client property names will be refactored to more general ones. For instance, `zeebe.client.tenantId` will become `camunda.client.tenantId`. - - Similarly, environment variables will be renamed following the same concept: `ZEEBE_REST_ADDRESS` will become `CAMUNDA_REST_ADDRESS`. -- **Artifact ID change**: - - The `artifactId` will change from `zeebe-client-java` to `camunda-client-java`. - -### Deprecation: Zeebe Go client & CLI client (zbctl) - -The Zeebe Go Client and CLI client (zbctl) will be [officially deprecated](https://camunda.com/blog/2024/09/deprecating-zbctl-and-go-clients/) with the 8.6 release as part of our efforts to streamline the Camunda 8 API experience. This client and CLI utility will not be released starting with Camunda 8.6, will no longer receive new features, and will be transitioned to a community-maintained status. - -The documentation of the Zeebe Go Client and CLI client (zbctl) moved to the [community clients section](/apis-tools/community-clients/index.md). - -### Camunda 8 SaaS - Required cluster update - -:::caution -By **August 30th, 2024** all automation clusters in Camunda 8 SaaS must be [updated](/components/console/manage-clusters/manage-cluster.md#update-a-cluster) to the following versions at a **minimum**: - -- **8.2+gen27** -- **8.3+gen11** -- **8.4+gen7** -- **8.5+gen2** - -::: - -auth0 announced an End-Of-Life for one of the functionalities that is being utilized by previous automation clusters. The new versions are not using this functionality anymore. This update ensures your cluster will work seamlessly after auth0 deactivates the feature in production. - -You minimally need to take the following [update](/components/console/manage-clusters/manage-cluster.md#update-a-cluster) path: - -- 8.0.x -> 8.2+gen27 -- 8.1.x -> 8.2+gen27 -- 8.2.x -> 8.2+gen27 -- 8.3.x -> 8.3+gen11 -- 8.4.x -> 8.4+gen7 -- 8.5.x -> 8.5+gen2 - -If you do not update the cluster by August 30th 2024, we will update the cluster for you. **Without an update, you would lose access to your cluster.** +Important changes and updates for Camunda 8 releases that customers should be aware of, including deprecation & removal notices. -Camunda 8 Self-Managed clusters are not affected by this. - -### Support for Amazon OpenSearch for Optimize - -This release extends the OpenSearch features supported by Optimize. Full support is committed for the next release in January 2025. - -### Supported environment changes (OpenJDK, ElasticSearch, Amazon OpenSearch) - -Version changes are made to supported environments: - -- OpenJDK minimum version raised to 21+ in Operate -- ElasticSearch minimum version raised to 8.13+ -- Amazon OpenSearch minimum version raised to 2.9+ - -To learn more about supported environments, see [supported environments](/reference/supported-environments.md). - -### Connectors - -#### Deprecation: None start event element templates for Kafka, RabbitMQ, Amazon SQS, and Amazon SNS inbound Connectors - -The [none start event](/components/modeler/bpmn/none-events/none-events.md#none-start-events) element templates for the out-of-the-box Kafka, RabbitMQ, Amazon SQS, and Amazon SNS inbound Connectors have been deprecated in Camunda Modeler. - -Users can no longer select these templates when creating a new none start event element in Camunda Modeler. Existing none start event elements with these templates will continue to work as expected, but users are encouraged to migrate to the [message start event](/components/modeler/bpmn/message-events/message-events.md#message-start-events) element templates for these Connectors. - -Message start event element templates are better suited for the message-based communication these Connectors provide, and offer more flexibility and features compared to the none start event element templates, such as the ability to define a message ID and a correlation key for idempotency. Read more in the [inbound Connectors documentation](/components/connectors/use-connectors/inbound.md) and the [messaging concepts documentation](/components/concepts/messages.md#message-uniqueness). - -#### Breaking changes in the Connector SDK - -The `void correlate(Object variables)` method in the `InboundConnectorContext` interface has been removed, following the deprecation in 8.4.0. Use the `CorrelationResult correlateWithResult(Object variables)` method instead. - -The `CorrelationResult` record has been changed compared to the previous versions: - -- `CorrelationResult.Success` now contains a `ProcessElementContext` that represents the element that was correlated. Compared to the previous version, where the correlated element was returned directly, this change allows accessing element properties after correlation for user-controlled post-correlation actions. -- `CorrelationResult.Failure` now provides the `CorrelationFailureHandlingStrategy` that defines how the failure should be handled. - -An example of how to use the new `CorrelationResult` can be found in the [Connector SDK documentation](/components/connectors/custom-built-connectors/connector-sdk.md#inbound-connector-runtime-logic). - -### Flow control enabled by default in SaaS - -Flow control is now enabled by default in Camunda 8.6 SaaS. This change ensures the cluster is protected from excessive load and can maintain a stable state. - -These new configuration defaults are tailored to the cluster size and optimized for a stable performance. However, the cluster might reject requests if the load is too high with this change. The error message for this is `Failed to write client request to partition X, because the write limit is exhausted`. If the error persists, this may be a sign of underlining issues, or a need to adjust the cluster size. - -For more information on how to configure flow control for a Self-Managed cluster, visit the [flow control documentation](/self-managed/operational-guides/configure-flow-control/configure-flow-control.md). - -### Camunda 8 Self-Managed - -#### Helm chart - Separated Ingress deprecation - -The separated Ingress Helm configuration for Camunda 8 Self-Managed has been deprecated in 8.6, and will be removed from the Helm chart in 8.7. Only the combined Ingress configuration is officially supported. See the [Ingress guide](/self-managed/setup/guides/ingress-setup.md) for more information on configuring a combined Ingress setup. - -#### Helm chart - `global.multiregion.installationType` deprecation - -The `global.multiregion.installationType` option is used in failover and failback scenarios. This option in the Helm chart has been deprecated in 8.6, and will be removed from the Helm chart in 8.7. `global.multiregion.installationType` was replaced with a set of API endpoints called while following the ([dual-region operational procedure](/self-managed/operational-guides/multi-region/dual-region-ops.md)) - -#### Helm chart - Elasticsearch nodes number - -The default value of Elasticsearch deployment pods has changed from 2 to 3, and an affinity setting has been added to avoid scheduling Elasticsearch pods on the same Kubernetes worker. +## Camunda 8.7 -### Camunda Optimize artifact and Docker tag separation +Camunda 8.7 is scheduled for release on 11 February, 2024. -Starting with Camunda 8.6, the Camunda Optimize artifact has been split into two distinct versions, and versioning between Camunda 7 and Camunda 8 is no longer interchangeable: +
+
-- **Before Camunda 8.6**: Versions like `8.x` and `3.x` (used for Camunda 7) could sometimes be used interchangeably. -- **From Camunda 8.6 onwards**: `8.6 != 3.14`. Each version corresponds strictly to its platform: - - **Camunda 7**: Uses the `3.x` versioning scheme and the `latest` Docker tag. - - **Camunda 8**: Uses the `8.x` versioning scheme and the `8-latest` Docker tag. +**[8.7 Announcements](/reference/announcements/870.md)** -#### Action required: +
+
-- **Camunda 7 Users**: Continue using `3.x` versions and the `latest` Docker tag. -- **Camunda 8 Users**: If you haven't already done so, update your configurations to use `8.x` versions and the `8-latest` Docker tag. +- [API updates](/reference/announcements/870.md#api-updates-saasself-managed) +- [Identity management updates](/reference/announcements/870.md#identity-management-updates-saasself-managed) +- [Installation and deployment updates](/reference/announcements/870.md#installation-and-deployment-updates-self-managed) +- [Camunda Java client and Camunda Spring SDK](/reference/announcements/870.md#camunda-java-client-and-camunda-spring-sdk-self-managed) -Make sure to update your Docker configurations accordingly to ensure compatibility. +
+
-### New base path for Operate and Tasklist web applications +## Camunda 8.6 -We are introducing a new base path for both the Operate and Tasklist **web applications**. This change applies to both Self-Managed and SaaS environments. +Camunda 8.6 was released on 8 October, 2024. -#### For Self-Managed +
+
-- The new base path for Operate is `/operate`, and for Tasklist, it is `/tasklist`. -- For a [Separated Ingress](/self-managed/setup/guides/ingress-setup.md?ingress=separated) configuration: - - for Operate, the full URL will be `{operate-host}/operate`. Any calls to `{operate-host}` will automatically be redirected to `{operate-host}/operate` - - for Tasklist, the full URL will be `{tasklist-host}/tasklist`. Any calls to `{tasklist-host}` will automatically be redirected to `{tasklist-host}/tasklist`. -- For a [Combined Ingress](/self-managed/setup/guides/ingress-setup.md?ingress=combined) configuration: - - for Operate, the full URL will be `{common-host}/{operate-contextPath}/operate`. Any calls to `{common-host}/{operate-contextPath}` will be automatically redirected to `{common-host}/{operate-contextPath}/operate`. - - for Tasklist, the full URL will be `{common-host}/{tasklist-contextPath}/tasklist`. Any calls to `{common-host}/{tasklist-contextPath}` will be automatically redirected to `{common-host}/{tasklist-contextPath}/tasklist`. +**[8.6 Announcements](/reference/announcements/860.md)** -#### For SaaS +
+
-- The full URL for Operate is now structured as `https://{region}.operate.camunda.io/{clusterId}/operate`. -- The full URL for Tasklist is now structured as `https://{region}.tasklist.camunda.io/{clusterId}/tasklist`. -- Any calls to `https://{region}.operate.camunda.io/{clusterId}` will be redirected to `https://{region}.operate.camunda.io/{clusterId}/operate`. -- Any calls to `https://{region}.tasklist.camunda.io/{clusterId}` will be redirected to `https://{region}.tasklist.camunda.io/{clusterId}/tasklist`. +- [License key changes](/reference/announcements/860.md#license-key-changes) +- [Zeebe Java client](/reference/announcements/860.md#zeebe-java-client) +- [Deprecation: Zeebe Go client & CLI client (zbctl)](/reference/announcements/860.md#deprecation-zeebe-go-client--cli-client-zbctl) +- [Camunda 8 SaaS - Required cluster update](/reference/announcements/860.md#camunda-8-saas---required-cluster-update) +- [Support for Amazon OpenSearch for Optimize](/reference/announcements/860.md#support-for-amazon-opensearch-for-optimize) +- [Supported environment changes](/reference/announcements/860.md#supported-environment-changes-openjdk-elasticsearch-amazon-opensearch) +- [Connectors](/reference/announcements/860.md#connectors) +- [Flow control enabled by default in SaaS](/reference/announcements/860.md#flow-control-enabled-by-default-in-saas) +- [Camunda 8 Self-Managed](/reference/announcements/860.md#camunda-8-self-managed) +- [Camunda Optimize artifact and Docker tag separation](/reference/announcements/860.md#camunda-optimize-artifact-and-docker-tag-separation) +- [New base path for Operate and Tasklist web applications](/reference/announcements/860.md#new-base-path-for-operate-and-tasklist-web-applications) -:::note -**API URLs** for both Operate and Tasklist remain **unchanged**. -::: +
+
## Camunda 8.5 -Release date: 9th of April 2024 - -End of maintenance: 14th of October 2025 - -### Updated SaaS URLs - -We will simplify the URL for Camunda 8 SaaS from cloud.camunda.io ([console.cloud.camunda.io](https://console.cloud.camunda.io/)) to camunda.io ([console.camunda.io](http://console.camunda.io/)). +Camunda 8.5 was released on 9 April, 2024. -On or around July 9th, users will be directed to the new URLs. Both URLs will continue to be active for at least 18 months so navigation from supported versions of components like Operate is still possible. +
+
-Internal allowlisting or active rules for [cloud.camunda.io](http://cloud.camunda.io/) must be transitioned to the new [camunda.io](http://camunda.io/) URL. This change primarily affects Console and Modeler. During sign up, users will be briefly redirected through [accounts.cloud.camunda.io](http://accounts.camunda.io/), which will also be updated. +**[8.5 Announcements](/reference/announcements/850.md#camunda-85)** -### Syntax changes in Helm chart +
+
-A Camunda Helm chart upgrade is not possible from v9.x.x to v10.0.0 or v10.0.1. Instead, upgrade directly to v10.0.2+. +- [Updated SaaS URLs](/reference/announcements/850.md#updated-saas-urls) +- [Syntax changes in Helm chart](/reference/announcements/850.md#syntax-changes-in-helm-chart) +- [Support for Amazon OpenSearch](/reference/announcements/850.md#support-for-amazon-opensearch) +- [Known limitations](/reference/announcements/850.md#known-limitations) +- [Changes in supported environments](/reference/announcements/850.md#changes-in-supported-environments) +- [New generation naming scheme](/reference/announcements/850.md#camunda-saas-new-generation-naming-scheme) +- [Removal of Web Modeler's beta API](/reference/announcements/850.md#removal-of-web-modelers-beta-api) +- [Serialization of timestamp values in management API](/reference/announcements/850.md#zeebe-850-breaks-serialization-of-timestamp-values-in-management-api-self-managed-only) -The Camunda Helm chart v10.0.0 has major changes in the values file structure. Some keys in the values file have been changed. For compatibility, the keys are deprecated in the Camunda release cycle 8.5 and will be removed in the Camunda 8.6 release (October 2024). - -Follow the [upgrade instructions](/self-managed/setup/upgrade.md#helm-chart-1002+) to upgrade from Camunda Helm chart v9.x.x to Camunda Helm chart v10.x.x. - -### Support for Amazon OpenSearch - -With the 8.5 release, Optimize is now also compatible with [Amazon OpenSearch](https://aws.amazon.com/de/opensearch-service/) 2.5+. Note that using Amazon OpenSearch requires [setting up a new Camunda installation](/self-managed/setup/overview.md). A migration from previous versions or Elasticsearch environments is not supported. - -### Known limitations - -This release contains the following limitations: - -- In **Optimize `8.5.0`** - - **Limitation** - - **Description:** OpenSearch support in Optimize is limited to data import and the raw data report. - - **Reference:** n/a - - **Mitigation:** Optimize can be installed and used in production with limited reporting functionality. Optimize imports all process data generated by Zeebe. All reporting functionality as described in the docs will be delivered with upcoming patches. -- In **Console `8.5.x`** - - **Limitation** - - **Description:** Custom OIDC provider support for Console is not supported - - **Reference:** https://github.com/camunda/issues/issues/784 - -### Changes in supported environments - -- Raised minimum Go version to 1.21 for the Zeebe Go client - -### Camunda SaaS: New generation naming scheme - -With the April release, the generation naming scheme in Camunda 8 changed and no longer includes the patch version. - -The new naming scheme used for all Camunda SaaS generations created after April 2024 is `Camunda .+gen`, where `N` is incremented with every atomic change to the component version set. Existing generations will not be renamed. - -For patch releases to existing generations, `N` is set to the latest patch level plus 1. For example, when `Camunda 8.4.5` is the current generation name, the following patch will be released as `Camunda 8.4+gen6`. - -This was done to decouple the generation name from the particular patch level of the components it contains, as some component versions like Connectors are decoupled from other components. - -You will learn about the particular component patch version changes in the update dialogue to the latest generation available. The following screenshot shows a sample update from `Camunda 8.5+gen1` to `Camunda 8.5+gen2`, where only the Connectors patch version changed. - -![New Generating naming sample showing an update dialogue from 8.5+gen1 to 8.5+gen2](img/generation-naming-scheme-sample.png) - -Note that the actual values shown in this screenshot don't correspond to any actual generations and only serve as an example. - -### Removal of Web Modeler's beta API - -The Web Modeler beta API has been removed. The API was deprecated in 8.3 and is no longer available in 8.5. Use the [Web Modeler v1 API](/apis-tools/web-modeler-api/index.md) instead. -For a migration guide, see the [Web Modeler API documentation](/apis-tools/web-modeler-api/index.md#migrating-from-beta-to-v1). - -### Zeebe 8.5.0 breaks serialization of timestamp values in management API (Self-Managed only) - -Zeebe 8.5.0 was released with [a new bug](https://github.com/camunda/camunda/issues/17347) that breaks serialization of timestamp values in management APIs, such as [backup](/self-managed/operational-guides/backup-restore/backup-and-restore.md) and [cluster scaling](/self-managed/zeebe-deployment/operations/cluster-scaling.md). -Timestamps which were previously serialized as `ISO8061` strings are now serialized as integer values. - -Until a fix is delivered in 8.5.1, workarounds include not deserializing timestamp values from affected APIs, or deserializing them as integers. +
+
## Camunda 8.4 -Release date: 9th of January 2024 - -End of maintenance: 9th of July 2025 - -:::caution -The [form linking](/components/modeler/web-modeler/advanced-modeling/form-linking.md#using-the-link-button) feature is impacted by an [issue](https://github.com/camunda/camunda/issues/16311) where the wrong forms can get linked with new user task instances, effectively corrupting the user task instance. If you make use of this feature and run either `8.4.0`, `8.4.1` or `8.4.2`, we urge you to update to the newest `8.4.3` patch that includes the required fix. - -Follow the instructions in the [form linking](/components/modeler/web-modeler/advanced-modeling/form-linking.md#known-issues-with-linked-forms) documentation to resolve this issue. -::: - -### Versioning changes in Helm chart - -As of the 8.4 release, the Camunda 8 **Helm chart** version is decoupled from the version of the application. The Helm chart release still follows the applications release cycle, but it has an independent version. (e.g., in the application release cycle 8.4, the chart version is 9.0.0). - -For more details about the applications version included in the Helm chart, review the [full version matrix](https://helm.camunda.io/camunda-platform/version-matrix/). - -### Dockerfile numeric ID - -The Dockerfile now uses a numeric user ID instead of a non-numeric user. -This will allow the Helm users to use `runAsNonRoot=true` without the need to explicitly set the ID in the Helm `values.yaml` file. - -### Deprecated in 8.4 - -The [Zeebe configuration properties for Camunda Identity](../self-managed/zeebe-deployment/configuration/gateway.md#zeebegatewayclustersecurityauthenticationidentity) -were deprecated in `8.4`. Please use the dedicated Camunda Identity properties or the [corresponding environment variables](../self-managed/identity/deployment/configuration-variables.md#core-configuration). - -### Versioning changes in Elasticsearch +Camunda 8.4 was released on 9 January, 2024. -As of the 8.4 release, Camunda is compatible with Elasticsearch 8.9+ and no longer supports older Elasticsearch versions. See [supported environments](/reference/supported-environments.md). +
+
-### Support for Amazon OpenSearch +**[8.4 Announcements](/reference/announcements/850.md#camunda-84)** -As of the 8.4 release, Zeebe, Operate, and Tasklist are now compatible with [Amazon OpenSearch](https://aws.amazon.com/de/opensearch-service/) 2.5.x. Note that using Amazon OpenSearch requires [setting up a new Camunda installation](/self-managed/setup/overview.md). A migration from previous versions or Elasticsearch environments is currently not supported. +
+
-:::info -The Helm charts are not yet prepared with the OpenSearch configurations as templates/pre-filled. The Helm charts can still be used to install for OpenSearch, but some adjustments are needed beforehand. Refer to the [Helm deployment documentation](/self-managed/setup/install.md) for further details. -::: +- [Versioning changes in Helm chart](/reference/announcements/850.md#versioning-changes-in-helm-chart) +- [Dockerfile numeric ID](/reference/announcements/850.md#dockerfile-numeric-id) +- [Deprecated in 8.4](/reference/announcements/850.md#deprecated-in-84) +- [Versioning changes in Elasticsearch](/reference/announcements/850.md#versioning-changes-in-elasticsearch) +- [Support for Amazon OpenSearch](/reference/announcements/850.md#support-for-amazon-opensearch-1) +- [Known limitations](/reference/announcements/850.md#known-limitations-1) -### Known limitations - -This release contains the following limitations: - -- In **Operate `8.4.0`** - - **Bug** - - **Description:** Instance migration always points to the latest process version - - **Reference:** https://github.com/camunda/issues/issues/567 - - **Mitigation:** Bug is planned to be fixed with upcoming `8.4.1` release - - **Bug** - - **Description:** Backwards migration over multiple versions does not work - - **Reference:** https://github.com/camunda/issues/issues/568 - - **Mitigation:** Bug is planned to be fixed with upcoming `8.4.1` release -- In **Camunda HELM `9.0.x`** - - **Limitation** - - **Description:** The existing Helm charts use the Elasticsearch configurations by default and are not yet prepared with the OpenSearch configurations as templates/pre-filled. The Helm charts can still be used to install for OpenSearch, but some adjustments are needed beforehand. - - **Reference:** n/a - - **Mitigation:** - 1. Refer to our [docs for the installation](/self-managed/setup/install.md#components-installed-by-the-helm-charts), the docs include guidance about necessary adjustments of the Helm chart configuration. - 2. The OpenSearch configuration in Helm charts will be provided in one of our future Helm releases. -- In **Connectors `8.4.x`** - - **Missing feature** - - **Description:** Custom OIDC provider support for Connectors is missing - - **Reference:** https://github.com/camunda/issues/issues/569 - - **Mitigation:** - 1. Feature is planned to be delivered with an upcoming patch release. Please see [issue](https://github.com/camunda/issues/issues/569) for latest progress. - 2. [Disable Connectors component](/self-managed/setup/guides/connect-to-an-oidc-provider.md#configuration) when configuring a custom OIDC provider. +
+
## Camunda 8.3 -Release date: 10th of October 2023 - -End of maintenance: 9th of April 2025 - -:::caution -For existing clusters we recommend updating to `8.3.1` directly and not `8.3.0` due to issues in data migration of Operate, Tasklist, and Optimize that could prolong the migration or even blocking it from finishing. -::: - -:::caution Breaking change - -### Zeebe Docker image now runs with unprivileged user by default - -The default user in the Zeebe Docker image changed from root to an unprivileged user with the UID 1000. This was done to provide stronger compliance with the [OWASP recommendations on Docker Security](https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html#rule-2-set-a-user). - -Please refer to the [Update 8.2 to 8.3](/self-managed/operational-guides/update-guide/820-to-830.md) guide. -::: - -:::info -The update from `8.2.x` to `8.3.x` performs a migration for nearly all entities stored in Operate, Tasklist, and Optimize to support [multi-tenancy](/self-managed/concepts/multi-tenancy.md). Therefore, migration may take longer. -::: - -### Deprecated in 8.3 - -[Web Modeler's beta API](/apis-tools/web-modeler-api/index.md) was deprecated in 8.3 and will be removed in 8.5. -Use `v1` instead, see [migration hints](/apis-tools/web-modeler-api/index.md#migrating-from-beta-to-v1). - -### Versioning changes in Elasticsearch - -As of the 8.3 release, Camunda is compatible with Elasticsearch 8.8+ and no longer supports Elasticsearch 7.x. See [supported environments](/reference/supported-environments.md). - -### Versioning changes in Helm chart - -[Helm charts versioning](/self-managed/setup/overview.md) changed in July 2023. - -Starting from July 2023 (v8.2.8), the Camunda 8 **Helm chart** version follows the same unified schema -and schedule as [Camunda 8 applications](https://github.com/camunda/camunda-platform). - -Before this change, the Camunda 8 **Helm chart** version only followed the minor version. - -## Camunda 8.2 - -Release date: 11th of April 2023 - -End of maintenance: 8th of October 2024 - -[Release notes](https://github.com/camunda/camunda-platform/releases/tag/8.2.0) -[Release blog](https://camunda.com/blog/2023/04/camunda-platform-8-2-key-to-scaling-automation/) - -### Update from Web Modeler 8.2 to a later minor version - -Web Modeler versions 8.2.7 to 8.2.12 are affected by [camunda/issues#677](https://github.com/camunda/issues/issues/677). - -If you are using one of these versions, you should first update to Web Modeler 8.2.13 (or a subsequent patch version) before upgrading to a later minor version (8.3 or higher). - -If your current version of Web Modeler is 8.2.6 or earlier, you may directly upgrade to a later minor version. - -### Do not update to Camunda 8.2.22 - -:::caution -Zeebe release `8.2.22` suffers from [camunda/zeebe#16406](https://github.com/camunda/camunda/issues/16406), which results in a Zeebe broker being unable to start if at least one DMN model is deployed. We urge users to skip this release and update to `8.2.23` right away. -::: - -### Do not update from Camunda 8.1.X to 8.2.6 - -An issue in the Operate 8.2.6 patch was discovered after it was published on June 8th. - -You should not update directly from 8.1.x to 8.2.6 (it will require manual intervention as indices break), you either first update to 8.2.5 then 8.2.6 or straight from 8.1.x to 8.2.7. - -To prevent this entirely we removed the Operate 8.2.6 artifacts from this release. - -As Camunda 8.2.7 was already released on Tuesday Jun 13th, you can just update to 8.2.7 directly, skipping 8.2.6. +Camunda 8.3 was released on 10 October, 2023. -### OpenSearch 1.3.x support +
+
-- Operate version 8.2+ support OpenSearch 1.3.x. However, 8.2.x patches will only be released on the OS 1.3 branch until end of 2023 given that OS 1.3 maintenance period ends by then. We recommend customers to go to 8.4.x which supports OS 2.5+. +**[8.3 Announcements](/reference/announcements/850.md#camunda-83)** -### Optimize and Helm chart compatibility +
+
-For Optimize 3.10.1, a new environment variable introduced redirection URL. However, the change is not compatible with Camunda Helm charts until it is fixed in 3.10.3 (and Helm chart 8.2.9). Therefore, those versions are coupled to certain Camunda Helm chart versions: +- [Deprecated in 8.3](/reference/announcements/850.md#deprecated-in-83) +- [Versioning changes in Elasticsearch](/reference/announcements/850.md#versioning-changes-in-elasticsearch-1) +- [Versioning changes in Helm chart](/reference/announcements/850.md#versioning-changes-in-helm-chart-1) -| Optimize version | Camunda Helm chart version | -| --------------------------------- | -------------------------- | -| Optimize 3.10.1 & Optimize 3.10.2 | 8.2.0 - 8.2.8 | -| Optimize 3.10.3+ | 8.2.9 - 8.2.22 | -| Optimize 8.2.7+ | 8.2.23+ | +
+
diff --git a/docs/reference/announcements/850.md b/docs/reference/announcements/850.md new file mode 100644 index 0000000000..4f8342a214 --- /dev/null +++ b/docs/reference/announcements/850.md @@ -0,0 +1,188 @@ +--- +id: announcements-850 +title: "8.5 - 8.3 Announcements" +description: "Important announcements including deprecation & removal notices for the Camunda 8.5, 8.4, 8.3, and 8.2 releases." +--- + +Important changes and updates for the Camunda 8.5, 8.4, and 8.3 releases are summarized below. + +## Camunda 8.5 + +| Release date | End of maintenance | Release notes | +| :----------- | :----------------- | :--------------------------------------------------- | +| 9 April 2024 | 14 October 2025 | [8.5 release notes](/reference/release-notes/850.md) | + +### Updated SaaS URLs + +We will simplify the URL for Camunda 8 SaaS from cloud.camunda.io ([console.cloud.camunda.io](https://console.cloud.camunda.io/)) to camunda.io ([console.camunda.io](http://console.camunda.io/)). + +On or around July 9th, users will be directed to the new URLs. Both URLs will continue to be active for at least 18 months so navigation from supported versions of components like Operate is still possible. + +Internal allowlisting or active rules for [cloud.camunda.io](http://cloud.camunda.io/) must be transitioned to the new [camunda.io](http://camunda.io/) URL. This change primarily affects Console and Modeler. During sign up, users will be briefly redirected through [accounts.cloud.camunda.io](http://accounts.camunda.io/), which will also be updated. + +### Syntax changes in Helm chart + +A Camunda Helm chart upgrade is not possible from v9.x.x to v10.0.0 or v10.0.1. Instead, upgrade directly to v10.0.2+. + +The Camunda Helm chart v10.0.0 has major changes in the values file structure. Some keys in the values file have been changed. For compatibility, the keys are deprecated in the Camunda release cycle 8.5 and will be removed in the Camunda 8.6 release (October 2024). + +Follow the [upgrade instructions](/self-managed/setup/upgrade.md#helm-chart-1002+) to upgrade from Camunda Helm chart v9.x.x to Camunda Helm chart v10.x.x. + +### Support for Amazon OpenSearch + +With the 8.5 release, Optimize is now also compatible with [Amazon OpenSearch](https://aws.amazon.com/de/opensearch-service/) 2.5+. Note that using Amazon OpenSearch requires [setting up a new Camunda installation](/self-managed/setup/overview.md). A migration from previous versions or Elasticsearch environments is not supported. + +### Known limitations + +This release contains the following limitations: + +- In **Optimize `8.5.0`** + - **Limitation** + - **Description:** OpenSearch support in Optimize is limited to data import and the raw data report. + - **Reference:** n/a + - **Mitigation:** Optimize can be installed and used in production with limited reporting functionality. Optimize imports all process data generated by Zeebe. All reporting functionality as described in the docs will be delivered with upcoming patches. +- In **Console `8.5.x`** + - **Limitation** + - **Description:** Custom OIDC provider support for Console is not supported + - **Reference:** https://github.com/camunda/issues/issues/784 + +### Changes in supported environments + +- Raised minimum Go version to 1.21 for the Zeebe Go client + +### Camunda SaaS: New generation naming scheme + +With the April release, the generation naming scheme in Camunda 8 changed and no longer includes the patch version. + +The new naming scheme used for all Camunda SaaS generations created after April 2024 is `Camunda .+gen`, where `N` is incremented with every atomic change to the component version set. Existing generations will not be renamed. + +For patch releases to existing generations, `N` is set to the latest patch level plus 1. For example, when `Camunda 8.4.5` is the current generation name, the following patch will be released as `Camunda 8.4+gen6`. + +This was done to decouple the generation name from the particular patch level of the components it contains, as some component versions like Connectors are decoupled from other components. + +You will learn about the particular component patch version changes in the update dialogue to the latest generation available. The following screenshot shows a sample update from `Camunda 8.5+gen1` to `Camunda 8.5+gen2`, where only the Connectors patch version changed. + +![New Generating naming sample showing an update dialogue from 8.5+gen1 to 8.5+gen2](../img/generation-naming-scheme-sample.png) + +Note that the actual values shown in this screenshot don't correspond to any actual generations and only serve as an example. + +### Removal of Web Modeler's beta API + +The Web Modeler beta API has been removed. The API was deprecated in 8.3 and is no longer available in 8.5. Use the [Web Modeler v1 API](/apis-tools/web-modeler-api/index.md) instead. +For a migration guide, see the [Web Modeler API documentation](/apis-tools/web-modeler-api/index.md#migrating-from-beta-to-v1). + +### Zeebe 8.5.0 breaks serialization of timestamp values in management API (Self-Managed only) + +Zeebe 8.5.0 was released with [a new bug](https://github.com/camunda/camunda/issues/17347) that breaks serialization of timestamp values in management APIs, such as [backup](/self-managed/operational-guides/backup-restore/backup-and-restore.md) and [cluster scaling](/self-managed/zeebe-deployment/operations/cluster-scaling.md). +Timestamps which were previously serialized as `ISO8061` strings are now serialized as integer values. + +Until a fix is delivered in 8.5.1, workarounds include not deserializing timestamp values from affected APIs, or deserializing them as integers. + +## Camunda 8.4 + +| Release date | End of maintenance | +| :------------- | :----------------- | +| 9 January 2024 | 9 July 2025 | + +:::caution +The [form linking](/components/modeler/web-modeler/advanced-modeling/form-linking.md#using-the-link-button) feature is impacted by an [issue](https://github.com/camunda/camunda/issues/16311) where the wrong forms can get linked with new user task instances, effectively corrupting the user task instance. If you make use of this feature and run either `8.4.0`, `8.4.1` or `8.4.2`, we urge you to update to the newest `8.4.3` patch that includes the required fix. + +Follow the instructions in the [form linking](/components/modeler/web-modeler/advanced-modeling/form-linking.md#known-issues-with-linked-forms) documentation to resolve this issue. +::: + +### Versioning changes in Helm chart + +As of the 8.4 release, the Camunda 8 **Helm chart** version is decoupled from the version of the application. The Helm chart release still follows the applications release cycle, but it has an independent version. (e.g., in the application release cycle 8.4, the chart version is 9.0.0). + +For more details about the applications version included in the Helm chart, review the [full version matrix](https://helm.camunda.io/camunda-platform/version-matrix/). + +### Dockerfile numeric ID + +The Dockerfile now uses a numeric user ID instead of a non-numeric user. +This will allow the Helm users to use `runAsNonRoot=true` without the need to explicitly set the ID in the Helm `values.yaml` file. + +### Deprecated in 8.4 + +The [Zeebe configuration properties for Camunda Identity](/self-managed/zeebe-deployment/configuration/gateway.md#zeebegatewayclustersecurityauthenticationidentity) +were deprecated in `8.4`. Please use the dedicated Camunda Identity properties or the [corresponding environment variables](/self-managed/identity/deployment/configuration-variables.md#core-configuration). + +### Versioning changes in Elasticsearch + +As of the 8.4 release, Camunda is compatible with Elasticsearch 8.9+ and no longer supports older Elasticsearch versions. See [supported environments](/reference/supported-environments.md). + +### Support for Amazon OpenSearch + +As of the 8.4 release, Zeebe, Operate, and Tasklist are now compatible with [Amazon OpenSearch](https://aws.amazon.com/de/opensearch-service/) 2.5.x. Note that using Amazon OpenSearch requires [setting up a new Camunda installation](/self-managed/setup/overview.md). A migration from previous versions or Elasticsearch environments is currently not supported. + +:::info +The Helm charts are not yet prepared with the OpenSearch configurations as templates/pre-filled. The Helm charts can still be used to install for OpenSearch, but some adjustments are needed beforehand. Refer to the [Helm deployment documentation](/self-managed/setup/install.md) for further details. +::: + +### Known limitations + +This release contains the following limitations: + +- In **Operate `8.4.0`** + - **Bug** + - **Description:** Instance migration always points to the latest process version + - **Reference:** https://github.com/camunda/issues/issues/567 + - **Mitigation:** Bug is planned to be fixed with upcoming `8.4.1` release + - **Bug** + - **Description:** Backwards migration over multiple versions does not work + - **Reference:** https://github.com/camunda/issues/issues/568 + - **Mitigation:** Bug is planned to be fixed with upcoming `8.4.1` release +- In **Camunda HELM `9.0.x`** + - **Limitation** + - **Description:** The existing Helm charts use the Elasticsearch configurations by default and are not yet prepared with the OpenSearch configurations as templates/pre-filled. The Helm charts can still be used to install for OpenSearch, but some adjustments are needed beforehand. + - **Reference:** n/a + - **Mitigation:** + 1. Refer to our [docs for the installation](/self-managed/setup/install.md#components-installed-by-the-helm-charts), the docs include guidance about necessary adjustments of the Helm chart configuration. + 2. The OpenSearch configuration in Helm charts will be provided in one of our future Helm releases. +- In **Connectors `8.4.x`** + - **Missing feature** + - **Description:** Custom OIDC provider support for Connectors is missing + - **Reference:** https://github.com/camunda/issues/issues/569 + - **Mitigation:** + 1. Feature is planned to be delivered with an upcoming patch release. Please see [issue](https://github.com/camunda/issues/issues/569) for latest progress. + 2. [Disable Connectors component](/self-managed/setup/guides/connect-to-an-oidc-provider.md#configuration) when configuring a custom OIDC provider. + +## Camunda 8.3 + +| Release date | End of maintenance | +| :-------------- | :----------------- | +| 10 October 2023 | 9 April 2025 | + +:::caution +For existing clusters we recommend updating to `8.3.1` directly and not `8.3.0` due to issues in data migration of Operate, Tasklist, and Optimize that could prolong the migration or even blocking it from finishing. +::: + +:::caution Breaking change + +### Zeebe Docker image now runs with unprivileged user by default + +The default user in the Zeebe Docker image changed from root to an unprivileged user with the UID 1000. This was done to provide stronger compliance with the [OWASP recommendations on Docker Security](https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html#rule-2-set-a-user). + +Please refer to the [Update 8.2 to 8.3](/self-managed/operational-guides/update-guide/820-to-830.md) guide. +::: + +:::info +The update from `8.2.x` to `8.3.x` performs a migration for nearly all entities stored in Operate, Tasklist, and Optimize to support [multi-tenancy](/self-managed/concepts/multi-tenancy.md). Therefore, migration may take longer. +::: + +### Deprecated in 8.3 + +[Web Modeler's beta API](/apis-tools/web-modeler-api/index.md) was deprecated in 8.3 and will be removed in 8.5. +Use `v1` instead, see [migration hints](/apis-tools/web-modeler-api/index.md#migrating-from-beta-to-v1). + +### Versioning changes in Elasticsearch + +As of the 8.3 release, Camunda is compatible with Elasticsearch 8.8+ and no longer supports Elasticsearch 7.x. See [supported environments](/reference/supported-environments.md). + +### Versioning changes in Helm chart + +[Helm charts versioning](/self-managed/setup/overview.md) changed in July 2023. + +Starting from July 2023 (v8.2.8), the Camunda 8 **Helm chart** version follows the same unified schema +and schedule as [Camunda 8 applications](https://github.com/camunda/camunda-platform). + +Before this change, the Camunda 8 **Helm chart** version only followed the minor version. diff --git a/docs/reference/announcements/860.md b/docs/reference/announcements/860.md new file mode 100644 index 0000000000..91b5380bde --- /dev/null +++ b/docs/reference/announcements/860.md @@ -0,0 +1,182 @@ +--- +id: announcements-860 +title: "8.6 Announcements" +description: "Important changes and updates for the Camunda 8.6 release including deprecation & removal notices." +--- + +Important changes and updates for the Camunda 8.6 release are summarized below. + +| Release date | End of maintenance | Release notes | +| :------------- | :----------------- | :--------------------------------------------------- | +| 8 October 2024 | 14 April 2026 | [8.6 release notes](/reference/release-notes/860.md) | + +## License key changes + +With the 8.6 release, Camunda 8 Self-Managed requires a license key for production usage. For additional details, review the [blog post on licensing updates for Camunda 8 Self-Managed](https://camunda.com/blog/2024/04/licensing-update-camunda-8-self-managed/). + +Review the following documentation for your components for more information on how to provide the license key to each component as an environment variable: + +- [Console](/self-managed/console-deployment/configuration.md#environment-variables) +- [Zeebe](/self-managed/zeebe-deployment/configuration/configuration.md#licensing) +- [Operate](/self-managed/operate-deployment/operate-configuration.md#licensing) +- [Tasklist](/self-managed/tasklist-deployment/tasklist-configuration.md#licensing) +- [Optimize]($optimize$/self-managed/optimize-deployment/configuration/system-configuration-platform-8#licensing) +- [Identity](/self-managed/identity/deployment/configuration-variables.md#license-configuration) +- [Modeler](/self-managed/modeler/web-modeler/configuration/configuration.md#licensing) + +To configure with Helm, visit the [Self Managed installation documentation](/self-managed/setup/install.md). + +:::note +Camunda 8 components without a valid license may display **Non-Production License** in the navigation bar and issue warnings in the logs. These warnings have no impact on startup or functionality, with the exception that Web Modeler has a limitation of five users. To obtain a license, visit the [Camunda Enterprise page](https://camunda.com/platform/camunda-platform-enterprise-contact/). +::: + +## Zeebe Java client + +Starting with 8.7, the Zeebe Java client will become the new Camunda Java client. This transition brings a new Java client structure designed to enhance the user experience and introduce new features while maintaining compatibility with existing codebases. + +The primary goal of those changes is to enable users to interact with Camunda clusters with one consolidated client rather than multiple. The `CamundaClient` will replace the `ZeebeClient`, offering the same functionality and adding new capabilities. If you need to continue using the old `ZeebeClient`, you can use the version 8.6 artifact without any issues with newer cluster versions as the client is forward-compatible. + +:::note +The Zeebe Java client will not be developed further and will only receive bug fixes for as long as version 8.6 is officially supported. +::: + +### Key changes + +- **New package structure**: + - Package `io.camunda.client`: This package contains the new `CamundaClient` and all the features slated for release in version 8.7. +- **Properties and environment variables refactoring**: + - All old Java client property names will be refactored to more general ones. For instance, `zeebe.client.tenantId` will become `camunda.client.tenantId`. + - Similarly, environment variables will be renamed following the same concept: `ZEEBE_REST_ADDRESS` will become `CAMUNDA_REST_ADDRESS`. +- **Artifact ID change**: + - The `artifactId` will change from `zeebe-client-java` to `camunda-client-java`. + +## Deprecation: Zeebe Go client & CLI client (zbctl) + +The Zeebe Go Client and CLI client (zbctl) will be [officially deprecated](https://camunda.com/blog/2024/09/deprecating-zbctl-and-go-clients/) with the 8.6 release as part of our efforts to streamline the Camunda 8 API experience. This client and CLI utility will not be released starting with Camunda 8.6, will no longer receive new features, and will be transitioned to a community-maintained status. + +The documentation of the Zeebe Go Client and CLI client (zbctl) moved to the [community clients section](/apis-tools/community-clients/index.md). + +## Camunda 8 SaaS - Required cluster update + +:::caution +By **August 30th, 2024** all automation clusters in Camunda 8 SaaS must be [updated](/components/console/manage-clusters/manage-cluster.md#update-a-cluster) to the following versions at a **minimum**: + +- **8.2+gen27** +- **8.3+gen11** +- **8.4+gen7** +- **8.5+gen2** + +::: + +auth0 announced an End-Of-Life for one of the functionalities that is being utilized by previous automation clusters. The new versions are not using this functionality anymore. This update ensures your cluster will work seamlessly after auth0 deactivates the feature in production. + +You minimally need to take the following [update](/components/console/manage-clusters/manage-cluster.md#update-a-cluster) path: + +- 8.0.x -> 8.2+gen27 +- 8.1.x -> 8.2+gen27 +- 8.2.x -> 8.2+gen27 +- 8.3.x -> 8.3+gen11 +- 8.4.x -> 8.4+gen7 +- 8.5.x -> 8.5+gen2 + +If you do not update the cluster by August 30th 2024, we will update the cluster for you. **Without an update, you would lose access to your cluster.** + +Camunda 8 Self-Managed clusters are not affected by this. + +## Support for Amazon OpenSearch for Optimize + +This release extends the OpenSearch features supported by Optimize. Full support is committed for the next release in January 2025. + +## Supported environment changes (OpenJDK, ElasticSearch, Amazon OpenSearch) + +Version changes are made to supported environments: + +- OpenJDK minimum version raised to 21+ in Operate +- ElasticSearch minimum version raised to 8.13+ +- Amazon OpenSearch minimum version raised to 2.9+ + +To learn more about supported environments, see [supported environments](/reference/supported-environments.md). + +## Connectors + +### Deprecation: None start event element templates for Kafka, RabbitMQ, Amazon SQS, and Amazon SNS inbound Connectors + +The [none start event](/components/modeler/bpmn/none-events/none-events.md#none-start-events) element templates for the out-of-the-box Kafka, RabbitMQ, Amazon SQS, and Amazon SNS inbound Connectors have been deprecated in Camunda Modeler. + +Users can no longer select these templates when creating a new none start event element in Camunda Modeler. Existing none start event elements with these templates will continue to work as expected, but users are encouraged to migrate to the [message start event](/components/modeler/bpmn/message-events/message-events.md#message-start-events) element templates for these Connectors. + +Message start event element templates are better suited for the message-based communication these Connectors provide, and offer more flexibility and features compared to the none start event element templates, such as the ability to define a message ID and a correlation key for idempotency. Read more in the [inbound Connectors documentation](/components/connectors/use-connectors/inbound.md) and the [messaging concepts documentation](/components/concepts/messages.md#message-uniqueness). + +### Breaking changes in the Connector SDK + +The `void correlate(Object variables)` method in the `InboundConnectorContext` interface has been removed, following the deprecation in 8.4.0. Use the `CorrelationResult correlateWithResult(Object variables)` method instead. + +The `CorrelationResult` record has been changed compared to the previous versions: + +- `CorrelationResult.Success` now contains a `ProcessElementContext` that represents the element that was correlated. Compared to the previous version, where the correlated element was returned directly, this change allows accessing element properties after correlation for user-controlled post-correlation actions. +- `CorrelationResult.Failure` now provides the `CorrelationFailureHandlingStrategy` that defines how the failure should be handled. + +An example of how to use the new `CorrelationResult` can be found in the [Connector SDK documentation](/components/connectors/custom-built-connectors/connector-sdk.md#inbound-connector-runtime-logic). + +## Flow control enabled by default in SaaS + +Flow control is now enabled by default in Camunda 8.6 SaaS. This change ensures the cluster is protected from excessive load and can maintain a stable state. + +These new configuration defaults are tailored to the cluster size and optimized for a stable performance. However, the cluster might reject requests if the load is too high with this change. The error message for this is `Failed to write client request to partition X, because the write limit is exhausted`. If the error persists, this may be a sign of underlining issues, or a need to adjust the cluster size. + +For more information on how to configure flow control for a Self-Managed cluster, visit the [flow control documentation](/self-managed/operational-guides/configure-flow-control/configure-flow-control.md). + +## Camunda 8 Self-Managed + +### Helm chart - Separated Ingress deprecation + +The separated Ingress Helm configuration for Camunda 8 Self-Managed has been deprecated in 8.6, and will be removed from the Helm chart in 8.7. Only the combined Ingress configuration is officially supported. See the [Ingress guide](/self-managed/setup/guides/ingress-setup.md) for more information on configuring a combined Ingress setup. + +### Helm chart - `global.multiregion.installationType` deprecation + +The `global.multiregion.installationType` option is used in failover and failback scenarios. This option in the Helm chart has been deprecated in 8.6, and will be removed from the Helm chart in 8.7. `global.multiregion.installationType` was replaced with a set of API endpoints called while following the ([dual-region operational procedure](/self-managed/operational-guides/multi-region/dual-region-ops.md)) + +#### Helm chart - Elasticsearch nodes number + +The default value of Elasticsearch deployment pods has changed from 2 to 3, and an affinity setting has been added to avoid scheduling Elasticsearch pods on the same Kubernetes worker. + +## Camunda Optimize artifact and Docker tag separation + +Starting with Camunda 8.6, the Camunda Optimize artifact has been split into two distinct versions, and versioning between Camunda 7 and Camunda 8 is no longer interchangeable: + +- **Before Camunda 8.6**: Versions like `8.x` and `3.x` (used for Camunda 7) could sometimes be used interchangeably. +- **From Camunda 8.6 onwards**: `8.6 != 3.14`. Each version corresponds strictly to its platform: + - **Camunda 7**: Uses the `3.x` versioning scheme and the `latest` Docker tag. + - **Camunda 8**: Uses the `8.x` versioning scheme and the `8-latest` Docker tag. + +### Action required: + +- **Camunda 7 Users**: Continue using `3.x` versions and the `latest` Docker tag. +- **Camunda 8 Users**: If you haven't already done so, update your configurations to use `8.x` versions and the `8-latest` Docker tag. + +Make sure to update your Docker configurations accordingly to ensure compatibility. + +## New base path for Operate and Tasklist web applications + +We are introducing a new base path for both the Operate and Tasklist **web applications**. This change applies to both Self-Managed and SaaS environments. + +### For Self-Managed + +- The new base path for Operate is `/operate`, and for Tasklist, it is `/tasklist`. +- For a [Separated Ingress](/self-managed/setup/guides/ingress-setup.md?ingress=separated) configuration: + - for Operate, the full URL will be `{operate-host}/operate`. Any calls to `{operate-host}` will automatically be redirected to `{operate-host}/operate` + - for Tasklist, the full URL will be `{tasklist-host}/tasklist`. Any calls to `{tasklist-host}` will automatically be redirected to `{tasklist-host}/tasklist`. +- For a [Combined Ingress](/self-managed/setup/guides/ingress-setup.md?ingress=combined) configuration: + - for Operate, the full URL will be `{common-host}/{operate-contextPath}/operate`. Any calls to `{common-host}/{operate-contextPath}` will be automatically redirected to `{common-host}/{operate-contextPath}/operate`. + - for Tasklist, the full URL will be `{common-host}/{tasklist-contextPath}/tasklist`. Any calls to `{common-host}/{tasklist-contextPath}` will be automatically redirected to `{common-host}/{tasklist-contextPath}/tasklist`. + +### For SaaS + +- The full URL for Operate is now structured as `https://{region}.operate.camunda.io/{clusterId}/operate`. +- The full URL for Tasklist is now structured as `https://{region}.tasklist.camunda.io/{clusterId}/tasklist`. +- Any calls to `https://{region}.operate.camunda.io/{clusterId}` will be redirected to `https://{region}.operate.camunda.io/{clusterId}/operate`. +- Any calls to `https://{region}.tasklist.camunda.io/{clusterId}` will be redirected to `https://{region}.tasklist.camunda.io/{clusterId}/tasklist`. + +:::note +**API URLs** for both Operate and Tasklist remain **unchanged**. +::: diff --git a/docs/reference/announcements/870.md b/docs/reference/announcements/870.md new file mode 100644 index 0000000000..472bfe0d35 --- /dev/null +++ b/docs/reference/announcements/870.md @@ -0,0 +1,183 @@ +--- +id: announcements-870 +title: "8.7 Announcements" +description: "Important changes and updates for the Camunda 8.7 release including deprecation & removal notices." +--- + +Important changes and updates for the Camunda 8.7 release are summarized below. + +| Scheduled release date | Scheduled end of maintenance | Release notes | Blog | +| :--------------------- | :--------------------------- | :--------------------------------------------------- | :---------------------------------------------------------------------------------------------- | +| 11 February 2025 | 11 August 2026 | [8.7 release notes](/reference/release-notes/870.md) | [Announcing Camunda 8.7](https://camunda.com/blog/2024/11/camunda-8-7-releasing-february-2025/) | + +- [API updates](#api-updates-saasself-managed) +- [Identity management updates](#identity-management-updates-saasself-managed) +- [Installation and deployment updates](#installation-and-deployment-updates-self-managed) +- [Camunda Java client and Camunda Spring SDK](#camunda-java-client-and-camunda-spring-sdk-self-managed) + +## API updates SaaSSelf-Managed + +The 8.7 release includes API updates to support the move to a [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md) unified experience. + +### Camunda 8 REST API updates + +- New Query endpoints (with advanced search filtering) will be added for process entities (processes, decisions, user tasks, and forms). These will replace the component APIs (Tasklist, Operate) going forward. +- New endpoints will allow you to manage and query users and resource permissions in an orchestration cluster. +- All the Camunda 8 REST API endpoints will support resource-based authorizations to enable fine-grained permissions. +- API terminology is aligned so technical assets have an identical, easily-understood, descriptive property name. + +### Deprecated: Operate and Tasklist v1 REST APIs + +The deprecation process for the [Operate](/apis-tools/operate-api/overview.md) and [Tasklist](/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md) REST APIs starts with the 8.7 release. You can begin migrating to the [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md) for querying to prepare for this change. + +- Version 8.7, 8.8: These APIs are available, but not recommended for new implementations. +- Version 8.9: These APIs will be deprecated and removed. + +### Deprecated: Job-based User Tasks querying + +As `Job-worker` user tasks will be deprecated in Camunda 8.9, Camunda recommends you start using `Camunda User Tasks` (formerly known as `Zeebe User Task`) in your process definitions. + +- Version 8.7, 8.8: `Job-worker` user tasks are available for querying, but Camunda modelers automatically apply the `Camunda user task` and show a warning message for each job worker user task. +- Version 8.9: `Job-worker` user tasks will be deprecated. With Camunda 8.9 and later, customers can use the `Job-worker` implementation of user tasks as standard jobs with headers to enable open architecture and composable solutions. + +### Deprecated: Zeebe gRPC API endpoints + +With the 8.7 release, Camunda announces the deprecation of several [Zeebe gRPC](/apis-tools/zeebe-api/grpc.md) endpoints for removal in 8.9. + +- Key gRPC endpoints necessary for high-throughput and low-latency applications remain available with 8.7. +- The final list of retained gRPC endpoints will be confirmed with the 8.7 release. +- Selected endpoints will remain active, with others scheduled for removal in the 8.9 release. + +### Deprecated: Tasklist GraphQL API + +With the 8.7 release, the deprecated [Tasklist GraphQL API](/apis-tools/tasklist-api/tasklist-api-overview.md) will be removed from the product. + + + +## Identity management updates SaaSSelf-Managed + +The [Identity service](/self-managed/identity/what-is-identity.md) is enhanced to deliver greater flexibility, control, and security for both Self-Managed and SaaS users. These updates are part of our broader effort to streamline the platform’s architecture. + +### Cluster-level identity management + +Identity settings will be configured at the orchestration cluster level, allowing each cluster to have unique OIDC configurations. This cluster-specific setup empowers organizations to assign different identity providers (IdPs) across clusters, offering improved control over permissions and user group mappings, resulting in a more streamlined and efficient configuration experience. + +For SaaS customers, identity management in Camunda 8.7 remains consistent with Camunda 8.6, allowing the attachment of a single IdP per organization. However, cluster-level identity capabilities are provided for SaaS as well as Self-Managed. This means that user groups, roles, and access permissions can now be managed at the cluster level, giving SaaS customers the same granular access control as in Self-Managed environments. + +### Decoupling from Keycloak Self-Managed + +Built-in Keycloak integration in Self-Managed is removed, allowing customers to use any compatible IdP. + +- Keycloak remains fully supported as an external option. +- OpenID Connect (OIDC) remains the standard for seamless integration with chosen IdPs. + +### Resource-based permissions + +Resource-level permissions are introduced for process definitions and web applications. + +- Admin users retain full access, but regular users must be granted specific permissions to perform actions/view resources. +- For organizations that build custom front-ends and access Camunda via API, users with API permissions can still access process data through the V2 API. + + + +## Installation and deployment updates Self-Managed + +Camunda 8.7 introduces a streamlined architecture, consolidating core components such as Zeebe, Operate, and Tasklist into a single deployable unit. Enhanced deployment options are also included, such as new Kubernetes Helm guides, deployment reference architectures, and improved support for professional developers with Camunda 8 Run. + +You can download the alpha release of the unified package from the Camunda GitHub repository, either as an executable Java application (Camunda Orchestration Core) or a Docker image. + +### Helm charts + +If you are using the recommended Camunda 8 deployment option (Helm charts), the upgrade path from version 8.6 to 8.7 will be straightforward by chaninging the values file to the new syntax. Updated Helm charts will be provided to support the upgrade to the new streamlined architecture. + +New migration guides will also be provided to support you when migrating from a previous Camunda version. + +:::caution +Additional upgrade considerations are necessary for deployments that use custom scripts, such as Docker containers, manual installations, or custom-developed Kubernetes deployments. For these deployments, customers can either continue to deploy with their original 8.6 topology and upgrade each component independently, or adopt our Helm Chart approach for the upgrade, which allows for unifying the deployment into a single JAR or container executable. +::: + +#### Separated Ingress removal + +With Camunda 8.7, Helm chart supports only the Combined Ingress setup where all Camunda components run on the same Ingress object and same hostname. + +The following Helm chart values have been removed: + +```yaml +connectors.ingress +console.ingress +identity.ingress +operate.ingress +optimize.ingress +tasklist.ingress +webModeler.ingress +zeebeGateway.ingress +``` + +### Manual installation + +For organizations that do not use cloud-native platforms such as Kubernetes or container services, we will publish a reference architecture that provides guidance on implementing Camunda production clusters on VM-based systems, using Amazon Web Services (AWS) EC2 as an example. + +The architecture will include details on optimal instance sizing, network configurations, and security best practices, to ensure robust performance and reliability. + +### Camunda Exporter + +A new Camunda Exporter brings the importer and archiving logic of web components (Tasklist and Operate) closer to the distributed platform (Zeebe). The index schema is also being harmonized. + +#### Harmonized index schema + +Camunda is harmonizing our index structure and usage. + +- This removes unnecessary duplications over multiple indices due to the previous architecture. +- With this change, several Operate indices can and will be used by Tasklist. +- New indices have been created to integrate Identity into the system. + +![Harmonized indices schema](../img/harmonized-indices-schema.png) + +#### Camunda Exporter + +The exporter can consume Zeebe records (mostly events created by the engine), aggregate data, and store the related data into shared and harmonized indices. + +- Data is archived in the background, coupled to the exporter but without blocking the exporter's progress. +- Indices can be located in either ElasticSearch (ES) or Opensearch (OS). Our web components (Tasklist and Operate) then use the new harmonized indices to show data to the user. + +The following diagram shows a simplified version of this work. + +![Camunda Exporter diagram](../img/target-camunda-exporter.png) + +- For example, Tasklist and Operate Importers are still required for old data to be imported, but the Camunda exporter writes all new data into ES/OS. After old indices are drained, importers can be turned off. +- The archiver, which takes care of the archiving of completed process instances, will be moved into the Zeebe system as well, to reduce the installation complexity and provide a better scaling and replication factor (based on partitions). +- This helps achieve a streamlined architecture, and improves platform performance and stability (especially regarding ES/OS). +- A new separate component covers the migration, which will be part of the single application but can also deployed separately. It will adjust the previous Operate indices to make them more harmonized and usable by Tasklist. + + + +## Camunda Java client and Camunda Spring SDK Self-Managed + +With the Camunda 8.7 release, Camunda Java client and Camunda Spring SDK replace the Zeebe Java client and Zeebe Spring SDK. This allows you to use a single consolidated client to interact with Camunda clusters. + +The `CamundaClient` replaces the `ZeebeClient`, offering the same functionality and adding new capabilities. + +:::note + +- If you need to continue using the old `ZeebeClient`, you can use the version 8.6 artifact without any issues with newer cluster versions as the client is forward-compatible. +- The Zeebe Java client will not be developed further and only receives bug fixes while version 8.6 is officially supported. + +::: + +### Key changes + +| Change | Description | +| :---------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| New package structure | Package `io.camunda.client`: Contains the new `CamundaClient` and all 8.7 features. | +| Refactored properties and environment variables |

  • All old Java client property names are refactored to more general ones. For example, `zeebe.client.tenantId` to `camunda.client.tenantId`.

  • Similarly, environment variables are renamed following the same concept: `ZEEBE_REST_ADDRESS` to `CAMUNDA_REST_ADDRESS`.

| +| Artifact ID change | The `artifactId` changes from `zeebe-client-java` to `camunda-client-java`. | + +## Southeast Asia region for SaaS customers SaaS + +SaaS customers can now create orchestration clusters in the [Singapore (asia-southeast1) region](/reference/regions.md), ensuring lower latency and improved processing speed for organizations operating in southeast Asian countries. diff --git a/docs/reference/img/doc-icon.png b/docs/reference/img/doc-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..26cc92e510276c423441cad876759ee22ba66603 GIT binary patch literal 213 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 FKLAuSS&0Au literal 0 HcmV?d00001 diff --git a/docs/reference/img/target-camunda-exporter.png b/docs/reference/img/target-camunda-exporter.png new file mode 100644 index 0000000000000000000000000000000000000000..20395a6e901e7792157729c29967c900bef12596 GIT binary patch literal 55175 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 Date: Thu, 12 Dec 2024 11:49:33 +0100 Subject: [PATCH 22/26] Docs new features email (#4730) * docs(email-connector): add documentation for the new email's features * docs(email-connector): add documentation for the new email's features * TW edits --------- Co-authored-by: mesellings --- .../out-of-the-box-connectors/email.md | 92 +++++++++++++++---- 1 file changed, 72 insertions(+), 20 deletions(-) diff --git a/docs/components/connectors/out-of-the-box-connectors/email.md b/docs/components/connectors/out-of-the-box-connectors/email.md index bc1c1dae69..f5364b1f0f 100644 --- a/docs/components/connectors/out-of-the-box-connectors/email.md +++ b/docs/components/connectors/out-of-the-box-connectors/email.md @@ -73,7 +73,7 @@ with a limit of one email, the task will return the most recently sent email. The task returns a list of emails in JSON format. Each email object contains the following information: - `messageId`: A unique identifier for the email message. -- `fromAddress`: the email addresses of the sender. +- `fromAddress`: The email addresses of the sender. - `subject`: The subject line of the email. - `size`: The size of the email (in bytes). @@ -117,13 +117,14 @@ Reading an email using POP3 protocol will delete the email The task returns a JSON object containing detailed information about the email: - `messageId`: The unique identifier corresponding to the email message. -- `fromAddress`: the email addresses of the sender. +- `fromAddress`: The email addresses of the sender. - `headers` : A list containing the email's headers - `subject`: The subject line of the email. - `size`: The size of the email in bytes. - `plainTextBody`: The plain text version of the email's content. -- `htmlBody`: The HTML version of the email's content, provided it exists. -- `receivedDateTime`: the email's reception datetime +- `htmlBody`: The HTML version of the email's content (if content exists). +- `attachments`: A list of all the email's attachments, provided as a document reference. +- `receivedDateTime`: The email's reception datetime #### Example Response @@ -147,7 +148,19 @@ Below is an example of the JSON response returned when a specific email is read: "value": "test" } ], - "sentDate": "2024-08-19T06:54:28Z" + "attachments": [ + { + "storeId": "in-memory", + "documentId": "20f1fd6a-d8ea-403b-813c-e281c1193495", + "metadata": { + "contentType": "image/webp; name=305a4816-b3df-4724-acd3-010478a54add.webp", + "size": 311032, + "fileName": "305a4816-b3df-4724-acd3-010478a54add.webp" + }, + "documentType": "camunda" + } + ], + "receivedDateTime": "2024-08-19T06:54:28Z" } ``` @@ -278,14 +291,18 @@ Allow users to send an email from the connected email account. #### Parameters -| Parameter | Description | -| :-------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `From` | Specify the sender's email address(es). This can be a single email address (for example, 'example@camunda.com'), a comma-separated list of addresses, or a Friendly Enough Expression Language (FEEL) expression returning a list of email addresses (for example, =["example@camunda.com"]). | -| `To` | Defines the email recipient(s). Similar to the `From` parameter, this can be a single email address, a comma-separated list, or a FEEL expression (for example, =["example@camunda.com"]). | -| `Cc` | (Optional) Specify the email address(es) to include in the **Carbon Copy (CC)** field. The format is the same as the **From** and **To** fields, and can include a single address, a list, or a FEEL expression. | -| `Bcc` | (Optional) Specify the email address(es) to include in the **Blind Carbon Copy (BCC)** field. It follows the same format as the **CC** field and ensures that BCC recipients are not visible to other recipients. | -| `Subject` | The email subject line. | -| `Email` | The main content of the email. | +| Parameter | Description | +| :------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `From` | Specify the sender's email address(es). This can be a single email address (for example, 'example@camunda.com'), a comma-separated list of addresses, or a Friendly Enough Expression Language (FEEL) expression returning a list of email addresses (for example, =["example@camunda.com"]). | +| `To` | Defines the email recipient(s). Similar to the `From` parameter, this can be a single email address, a comma-separated list, or a FEEL expression (for example, =["example@camunda.com"]). | +| `Cc` | (Optional) Specify the email address(es) to include in the **Carbon Copy (CC)** field. The format is the same as the **From** and **To** fields, and can include a single address, a list, or a FEEL expression. | +| `Bcc` | (Optional) Specify the email address(es) to include in the **Blind Carbon Copy (BCC)** field. It follows the same format as the **CC** field and ensures that BCC recipients are not visible to other recipients. | +| `Headers` | Feel expression containing all the desired headers to be added to the email's headers. cf. `{ "customHeaders" : "new header value" }` | +| `Subject` | The email subject line. | +| `Content Type` | The content type of the email. | +| `Email Text Content` | The text content of the email. This must only be provided if the `Content Type` is `PLAIN` or `HTML & PlainText`. | +| `Html Text Content` | The HTML content of the email. This must only be provided if the `Content Type` is `HTML` or `HTML & PlainText`. | +| `Attachment` | The document reference, either for a single document or as a list for multiple documents. | :::info To learn more about Friendly Enough Expression Language (FEEL) expression, @@ -401,6 +418,7 @@ The task returns a JSON object containing detailed information about the email: - `size`: The size of the email (in bytes). - `plainTextBody`: The plain text version of the email content. - `htmlBody`: The HTML version of the email content, if it exists. +- `attachments`: A list of all the email's attachments, provided as a document reference. - `receivedDateTime`: The date and time the email was received. #### Example Response @@ -425,7 +443,19 @@ The following JSON structure shows an expected response after a successful email "value": "test" } ], - "sentDate": "2024-08-19T06:54:28Z" + "attachments": [ + { + "storeId": "in-memory", + "documentId": "20f1fd6a-d8ea-403b-813c-e281c1193495", + "metadata": { + "contentType": "image/webp; name=305a4816-b3df-4724-acd3-010478a54add.webp", + "size": 311032, + "fileName": "305a4816-b3df-4724-acd3-010478a54add.webp" + }, + "documentType": "camunda" + } + ], + "receivedDateTime": "2024-08-19T06:54:28Z" } ``` @@ -578,7 +608,8 @@ The example below shows the expected JSON response after an email has been succe -The Email Inbound Connector is an inbound Connector that allows you to connect your BPMN service with any email IMAP server. +The Email Inbound Connector is an inbound Connector that allows you to connect your BPMN service with any email IMAP +server. :::caution This inbound connector only supports working with IMAP server. @@ -629,6 +660,7 @@ The task returns a JSON object containing detailed information about the email: - `size`: The size of the email (in bytes). - `plainTextBody`: The plain text version of the email content. - `htmlBody`: The HTML version of the email content, if it exists. +- `attachments` A list of document reference - `receivedDateTime`: The date and time the email was received. #### Example Response @@ -654,7 +686,19 @@ instance: "value": "test" } ], - "sentDate": "2024-08-19T06:54:28Z" + "attachments": [ + { + "storeId": "in-memory", + "documentId": "20f1fd6a-d8ea-403b-813c-e281c1193495", + "metadata": { + "contentType": "image/webp; name=305a4816-b3df-4724-acd3-010478a54add.webp", + "size": 311032, + "fileName": "305a4816-b3df-4724-acd3-010478a54add.webp" + }, + "documentType": "camunda" + } + ], + "receivedDateTime": "2024-08-19T06:54:28Z" } ``` @@ -664,9 +708,14 @@ as prioritizing tasks, content analysis, and automated responses. ## Activation condition -The optional **Activation condition** field allows you to specify a Friendly Enough Expression Language ([FEEL](/components/modeler/feel/what-is-feel.md)) expression to control when this Connector should trigger a process instance. This condition acts as a filter, allowing the process to be initiated only when certain criteria are met by the incoming email. +The optional **Activation condition** field allows you to specify a Friendly Enough Expression +Language ([FEEL](/components/modeler/feel/what-is-feel.md)) expression to control when this Connector should trigger a +process instance. This condition acts as a filter, allowing the process to be initiated only when certain criteria are +met by the incoming email. -For example, the FEEL expression `=(response.subject = "urgent")` ensures that the process is only triggered if the subject of the incoming email matches "urgent". If this field is left blank, the process is triggered for every email received by the connector. +For example, the FEEL expression `=(response.subject = "urgent")` ensures that the process is only triggered if the +subject of the incoming email matches "urgent". If this field is left blank, the process is triggered for every email +received by the connector. ## Correlation @@ -729,9 +778,12 @@ To learn more about TTL in Zeebe, see [message correlation](../../../concepts/me The **Deduplication** section allows you to configure the Connector deduplication parameters. -- **Connector deduplication** is a mechanism in the Connector Runtime that determines how many email listeners are created if there are multiple occurrences of the **Email Listener Connector** in a BPMN diagram. This is different to **message deduplication**. +- **Connector deduplication** is a mechanism in the Connector Runtime that determines how many email listeners are + created if there are multiple occurrences of the **Email Listener Connector** in a BPMN diagram. This is different to + **message deduplication**. -- By default, the Connector runtime deduplicates Connectors based on properties, so elements with the same subscription properties only result in one subscription. +- By default, the Connector runtime deduplicates Connectors based on properties, so elements with the same subscription + properties only result in one subscription. To customize the deduplication behavior, select the **Manual mode** checkbox and configure the custom deduplication ID. From b6c107d578e9ede3991a892f246de81eab5367c6 Mon Sep 17 00:00:00 2001 From: Mark Sellings Date: Thu, 12 Dec 2024 13:27:18 +0000 Subject: [PATCH 23/26] Edit APIs and keycloak (#4757) --- docs/reference/announcements/870.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/reference/announcements/870.md b/docs/reference/announcements/870.md index 472bfe0d35..438117c7bc 100644 --- a/docs/reference/announcements/870.md +++ b/docs/reference/announcements/870.md @@ -30,8 +30,8 @@ The 8.7 release includes API updates to support the move to a [Camunda 8 REST AP The deprecation process for the [Operate](/apis-tools/operate-api/overview.md) and [Tasklist](/apis-tools/tasklist-api-rest/tasklist-api-rest-overview.md) REST APIs starts with the 8.7 release. You can begin migrating to the [Camunda 8 REST API](/apis-tools/camunda-api-rest/camunda-api-rest-overview.md) for querying to prepare for this change. -- Version 8.7, 8.8: These APIs are available, but not recommended for new implementations. -- Version 8.9: These APIs will be deprecated and removed. +- Version 8.7, 8.8: These APIs are still available but deprecated, and so not recommended for new implementations. +- Version 8.9: These APIs will be removed. ### Deprecated: Job-based User Tasks querying @@ -48,7 +48,7 @@ With the 8.7 release, Camunda announces the deprecation of several [Zeebe gRPC]( - The final list of retained gRPC endpoints will be confirmed with the 8.7 release. - Selected endpoints will remain active, with others scheduled for removal in the 8.9 release. -### Deprecated: Tasklist GraphQL API +### Removed: Tasklist GraphQL API With the 8.7 release, the deprecated [Tasklist GraphQL API](/apis-tools/tasklist-api/tasklist-api-overview.md) will be removed from the product. @@ -70,7 +70,7 @@ For SaaS customers, identity management in Camunda 8.7 remains consistent with C Built-in Keycloak integration in Self-Managed is removed, allowing customers to use any compatible IdP. -- Keycloak remains fully supported as an external option. +- Keycloak remains fully supported as an external option. For cluster-level identity management it must be connected as an external OIDC provider moving forward. - OpenID Connect (OIDC) remains the standard for seamless integration with chosen IdPs. ### Resource-based permissions From dba4b1624b8eaec8e518af74921ce835b0f01558 Mon Sep 17 00:00:00 2001 From: Wolfgang Amann <8766375+wollefitz@users.noreply.github.com> Date: Thu, 12 Dec 2024 15:43:05 +0100 Subject: [PATCH 24/26] chore(web-modeler): rename "latest version" to "draft" (#4758) --- ...er-milestone-create-via-icon-highlight.png | Bin 119577 -> 116231 bytes .../modeler/web-modeler/milestones.md | 2 +- .../modeler/web-modeler/milestones.md | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/components/modeler/web-modeler/img/milestones/web-modeler-milestone-create-via-icon-highlight.png b/docs/components/modeler/web-modeler/img/milestones/web-modeler-milestone-create-via-icon-highlight.png index 38c9b0cfd2707722135fbf85c478eb58dea85fdb..3fed3621ad1c8e54dd35d8358747684527c9b205 100644 GIT binary patch literal 116231 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 H-KGBn*clzw literal 119577 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⋘R~dz#9&xcpPVq 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

}rvm^* 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 Date: Thu, 12 Dec 2024 10:25:59 -0600 Subject: [PATCH 25/26] docs: update REST API spec (#4760) Co-authored-by: tmetzke --- api/camunda/camunda-openapi.yaml | 944 ++++++++++++++++-- .../specifications/add-user-to-group.api.mdx | 64 ++ .../assign-group-to-tenant.api.mdx | 59 ++ .../assign-mapping-rule-to-tenant.api.mdx | 59 ++ .../assign-user-to-tenant.api.mdx | 59 ++ .../create-document-link.api.mdx | 6 +- .../specifications/create-document.api.mdx | 2 +- .../specifications/create-group.api.mdx | 57 ++ .../create-mapping-rule.api.mdx | 2 +- .../specifications/create-role.api.mdx | 4 +- .../specifications/create-user.api.mdx | 4 +- .../specifications/delete-group.api.mdx | 52 + .../delete-mapping-rule.api.mdx | 55 + .../find-authorizations.api.mdx | 6 +- .../find-decision-definitions.api.mdx | 4 +- .../find-decision-instances.api.mdx | 6 +- .../find-decision-requirements.api.mdx | 4 +- .../find-flow-node-instances.api.mdx | 8 +- .../specifications/find-incidents.api.mdx | 8 +- .../specifications/find-mappings.api.mdx | 76 ++ .../find-process-definitions.api.mdx | 4 +- .../find-process-instances.api.mdx | 22 +- .../find-user-authorizations.api.mdx | 6 +- .../find-user-task-variables.api.mdx | 6 +- .../specifications/find-user-tasks.api.mdx | 16 +- .../specifications/find-users.api.mdx | 4 +- .../specifications/find-variables.api.mdx | 4 +- .../specifications/get-authentication.api.mdx | 56 ++ .../get-decision-instance.api.mdx | 2 +- .../get-flow-node-instance.api.mdx | 4 +- .../specifications/get-group.api.mdx | 56 ++ .../specifications/get-incident.api.mdx | 4 +- .../specifications/get-license.api.mdx | 2 +- .../get-process-instance.api.mdx | 4 +- .../specifications/get-user-task.api.mdx | 6 +- .../remove-group-from-tenant.api.mdx | 59 ++ .../remove-mapping-rule-from-tenant.api.mdx | 59 ++ .../remove-user-from-tenant.api.mdx | 59 ++ .../specifications/search-groups.api.mdx | 76 ++ .../specifications/search-roles.api.mdx | 4 +- .../specifications/search-tenants.api.mdx | 4 +- .../specifications/sidebar.js | 132 ++- .../unassign-user-from-group.api.mdx | 60 ++ .../update-authorization.api.mdx | 4 +- .../specifications/update-group.api.mdx | 60 ++ .../specifications/update-user-task.api.mdx | 2 +- 46 files changed, 2036 insertions(+), 158 deletions(-) create mode 100644 docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/delete-mapping-rule.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/find-mappings.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/get-authentication.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/get-group.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/unassign-user-from-group.api.mdx create mode 100644 docs/apis-tools/camunda-api-rest/specifications/update-group.api.mdx diff --git a/api/camunda/camunda-openapi.yaml b/api/camunda/camunda-openapi.yaml index dad36c860a..1ee1906eb2 100644 --- a/api/camunda/camunda-openapi.yaml +++ b/api/camunda/camunda-openapi.yaml @@ -10,7 +10,7 @@ info: url: https://github.com/camunda/camunda/blob/main/licenses/CAMUNDA-LICENSE-1.0.txt externalDocs: description: Find out more - url: https://docs.camunda.io/docs/apis-tools/camunda-api-rest/overview/ + url: https://docs.camunda.io/docs/apis-tools/camunda-api-rest/camunda-api-rest-overview/ servers: - url: "{schema}://{host}:{port}/v2" @@ -26,6 +26,7 @@ servers: description: The schema of the Camunda 8 REST API server. tags: + - name: Authentication - name: Authorization - name: Clock - name: Cluster @@ -35,9 +36,11 @@ tags: - name: Document - name: Element instance - name: Flow node instance + - name: Group - name: Incident - name: Job - name: License + - name: Mapping rule - name: Message - name: Process definition - name: Process instance @@ -48,7 +51,6 @@ tags: - name: User - name: User task - name: Variable - - name: Mapping Rule paths: /topology: @@ -83,6 +85,26 @@ paths: $ref: "#/components/schemas/LicenseResponse" "500": $ref: "#/components/responses/InternalServerError" + + /authentication/me: + get: + tags: + - Authentication + operationId: getAuthentication + summary: Get current user + description: Retrieves the current authenticated user. + responses: + "200": + description: The current user is successfully returned. + content: + application/json: + schema: + $ref: "#/components/schemas/CamundaUser" + "401": + $ref: "#/components/responses/Unauthorized" + "500": + $ref: "#/components/responses/InternalServerError" + /jobs/activation: post: tags: @@ -499,6 +521,255 @@ paths: "500": $ref: "#/components/responses/InternalServerError" + /tenants/{tenantKey}/users/{userKey}: + put: + tags: + - Tenant + operationId: assignUserToTenant + summary: Assign a user to a tenant + description: Assign a single user to a specified tenant. + parameters: + - name: tenantKey + in: path + required: true + description: The unique identifier of the tenant. + schema: + type: integer + format: int64 + - name: userKey + in: path + required: true + description: The unique identifier of the user. + schema: + type: integer + format: int64 + responses: + "202": + description: The user was successfully assigned to the tenant. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + $ref: "#/components/responses/Forbidden" + "404": + description: Not found. The tenant or user was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + + delete: + tags: + - Tenant + operationId: removeUserFromTenant + summary: Remove a user from a tenant + description: Removes a single user from a specified tenant without deleting the user. + parameters: + - name: tenantKey + in: path + required: true + description: The unique identifier of the tenant. + schema: + type: integer + format: int64 + - name: userKey + in: path + required: true + description: The unique identifier of the user. + schema: + type: integer + format: int64 + responses: + "202": + description: The user was successfully removed from the tenant. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + $ref: "#/components/responses/Forbidden" + "404": + description: Not found. The tenant or user was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + + /tenants/{tenantKey}/mapping-rules/{mappingKey}: + put: + tags: + - Tenant + operationId: assignMappingRuleToTenant + summary: Assign a mapping rule to a tenant + description: Assign a single mapping rule to a specified tenant. + parameters: + - name: tenantKey + in: path + required: true + description: The unique identifier of the tenant. + schema: + type: integer + format: int64 + - name: mappingKey + in: path + required: true + description: The unique identifier of the mapping rule. + schema: + type: integer + format: int64 + responses: + "202": + description: The mapping rule was successfully assigned to the tenant. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + $ref: "#/components/responses/Forbidden" + "404": + description: Not found. The tenant or mapping rule was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + + delete: + tags: + - Tenant + operationId: removeMappingRuleFromTenant + summary: Remove a mapping rule from a tenant + description: Removes a single mapping rule from a specified tenant without deleting the rule. + parameters: + - name: tenantKey + in: path + required: true + description: The unique identifier of the tenant. + schema: + type: integer + format: int64 + - name: mappingKey + in: path + required: true + description: The unique identifier of the mapping rule. + schema: + type: integer + format: int64 + responses: + "202": + description: The mapping rule was successfully removed from the tenant. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + $ref: "#/components/responses/Forbidden" + "404": + description: Not found. The tenant or mapping rule was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + + /tenants/{tenantKey}/groups/{groupKey}: + put: + tags: + - Tenant + operationId: assignGroupToTenant + summary: Assign a group to a tenant + description: Assign a single group to a specified tenant. + parameters: + - name: tenantKey + in: path + required: true + description: The unique identifier of the tenant. + schema: + type: integer + format: int64 + - name: groupKey + in: path + required: true + description: The unique identifier of the group. + schema: + type: integer + format: int64 + responses: + "202": + description: The group was successfully assigned to the tenant. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + $ref: "#/components/responses/Forbidden" + "404": + description: Not found. The tenant or group was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + + delete: + tags: + - Tenant + operationId: removeGroupFromTenant + summary: Remove a group from a tenant + description: Removes a single group from a specified tenant without deleting the group. + parameters: + - name: tenantKey + in: path + required: true + description: The unique identifier of the tenant. + schema: + type: integer + format: int64 + - name: groupKey + in: path + required: true + description: The unique identifier of the group. + schema: + type: integer + format: int64 + responses: + "202": + description: The group was successfully removed from the tenant. + "400": + description: The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + $ref: "#/components/responses/Forbidden" + "404": + description: Not found. The tenant or group was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + /tenants/search: post: tags: @@ -880,7 +1151,7 @@ paths: "500": $ref: "#/components/responses/InternalServerError" - /user-tasks/{userTaskKey}/variables: + /user-tasks/{userTaskKey}/variables/search: post: tags: - User task @@ -2231,7 +2502,7 @@ paths: schema: $ref: "#/components/schemas/RoleCreateRequest" responses: - "202": + "201": description: | The role was created successfully. content: @@ -2297,30 +2568,281 @@ paths: - name: roleKey in: path required: true - description: The key of the role to update. + description: The key of the role to update. + schema: + type: integer + format: int64 + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/RoleUpdateRequest" + responses: + "204": + description: The role was updated successfully. + "400": + description: > + The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "404": + description: The role with the roleKey is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + delete: + tags: + - Role + operationId: deleteRole + summary: Delete role + description: Deletes the role with the given key. + parameters: + - name: roleKey + in: path + required: true + description: The key of the role to delete. + schema: + type: integer + format: int64 + responses: + "204": + description: The role was deleted successfully. + "401": + $ref: "#/components/responses/Unauthorized" + "404": + description: The role with the roleKey was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + /roles/search: + post: + tags: + - Role + operationId: searchRoles + summary: Query roles + description: | + Search for roles based on given criteria. + requestBody: + required: false + content: + application/json: + schema: + $ref: "#/components/schemas/RoleSearchQueryRequest" + responses: + "200": + description: The roles search result. + content: + application/json: + schema: + $ref: "#/components/schemas/RoleSearchQueryResponse" + "400": + description: > + The role search query failed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" + "500": + description: An internal error occurred while processing the request. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + + /groups: + post: + tags: + - Group + operationId: createGroup + summary: Create group + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/GroupCreateRequest" + responses: + "201": + description: The group was created successfully. + content: + application/json: + schema: + $ref: "#/components/schemas/GroupCreateResponse" + "400": + description: | + The group could not be created. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" + "500": + $ref: "#/components/responses/InternalServerError" + /groups/{groupKey}: + get: + tags: + - Group + operationId: getGroup + summary: Get group + description: | + Get a group by its key. + parameters: + - name: groupKey + in: path + required: true + description: The group key. + schema: + type: integer + format: int64 + responses: + "200": + description: The group is successfully returned. + content: + application/json: + schema: + $ref: "#/components/schemas/GroupItem" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" + "404": + description: The group with the given key was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + patch: + tags: + - Group + operationId: updateGroup + summary: Update group + description: Update a group with the given key. + parameters: + - name: groupKey + in: path + required: true + description: The key of the group to update. + schema: + type: integer + format: int64 + requestBody: + required: true + content: + application/json: + schema: + $ref: "#/components/schemas/GroupUpdateRequest" + responses: + "204": + description: The group was updated successfully. + "400": + description: > + The provided data is not valid. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "404": + description: The group with the groupKey is not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + delete: + tags: + - Group + operationId: deleteGroup + summary: Delete group + description: Deletes the group with the given key. + parameters: + - name: groupKey + in: path + required: true + description: The key of the group to delete. + schema: + type: integer + format: int64 + responses: + "204": + description: The group was deleted successfully. + "401": + $ref: "#/components/responses/Unauthorized" + "404": + description: The group with the groupKey was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + /groups/{groupKey}/users/{userKey}: + post: + tags: + - Group + operationId: addUserToGroup + summary: Assign a user to a group + description: | + Assigns a user to a group. + parameters: + - name: groupKey + in: path + required: true + description: The group key. + schema: + type: integer + format: int64 + - name: userKey + in: path + required: true + description: The user key. schema: type: integer format: int64 - requestBody: - required: true - content: - application/json: - schema: - $ref: "#/components/schemas/RoleUpdateRequest" responses: - "204": - description: The role was updated successfully. + "202": + description: The user was assigned successfully to the group. "400": - description: > - The provided data is not valid. + description: | + The user could not be assigned. + More details are provided in the response body. content: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" - "401": - $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" "404": - description: The role with the roleKey is not found. + description: The group or user with the given key was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "409": + description: The user with the given key is already assigned to the group. content: application/problem+json: schema: @@ -2329,55 +2851,71 @@ paths: $ref: "#/components/responses/InternalServerError" delete: tags: - - Role - operationId: deleteRole - summary: Delete role - description: Deletes the role with the given key. + - Group + operationId: unassignUserFromGroup + summary: Unassign a user from a group + description: | + Unassigns a user from a group. parameters: - - name: roleKey + - name: groupKey in: path required: true - description: The key of the role to delete. + description: The group key. + schema: + type: integer + format: int64 + - name: userKey + in: path + required: true + description: The user key. schema: type: integer format: int64 responses: - "204": - description: The role was deleted successfully. - "401": - $ref: "#/components/responses/Unauthorized" + "202": + description: The user was unassigned successfully from the group. + "400": + description: | + The user could not be unassigned. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "403": + $ref: "#/components/responses/Forbidden" "404": - description: The role with the roleKey was not found. + description: The group or user with the given key was not found, or the user is not assigned to this group. content: application/problem+json: schema: $ref: "#/components/schemas/ProblemDetail" "500": $ref: "#/components/responses/InternalServerError" - /roles/search: + /groups/search: post: tags: - - Role - operationId: searchRoles - summary: Query roles + - Group + operationId: searchGroups + summary: Query groups description: | - Search for roles based on given criteria. + Search for groups based on given criteria. requestBody: required: false content: application/json: schema: - $ref: "#/components/schemas/RoleSearchQueryRequest" + $ref: "#/components/schemas/GroupSearchQueryRequest" responses: "200": - description: The roles search result. + description: The groups search result. content: application/json: schema: - $ref: "#/components/schemas/RoleSearchQueryResponse" + $ref: "#/components/schemas/GroupSearchQueryResponse" "400": description: > - The role search query failed. + The group search query failed. More details are provided in the response body. content: application/problem+json: @@ -2397,7 +2935,7 @@ paths: /mapping-rules: post: tags: - - Mapping Rule + - Mapping rule operationId: createMappingRule summary: Create mapping rule description: | @@ -2436,6 +2974,70 @@ paths: $ref: "#/components/schemas/ProblemDetail" "500": $ref: "#/components/responses/InternalServerError" + /mapping-rules/{mappingKey}: + delete: + tags: + - Mapping rule + operationId: deleteMappingRule + summary: Delete a mapping rule + description: Deletes the mapping rule with the given key. + parameters: + - name: mappingKey + in: path + required: true + description: The key of the mapping rule to delete. + schema: + type: integer + format: int64 + responses: + "204": + description: The mapping rule was deleted successfully. + "401": + $ref: "#/components/responses/Unauthorized" + "404": + description: The mapping rule with the mappingKey was not found. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "500": + $ref: "#/components/responses/InternalServerError" + + /mapping-rules/search: + post: + tags: + - Mapping rule + operationId: findMappings + summary: Query mappings + description: | + Search for mapping rules based on given criteria. + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/MappingSearchQueryRequest" + required: true + responses: + "200": + description: The mapping rule search result. + content: + application/json: + schema: + $ref: "#/components/schemas/MappingSearchResponse" + "400": + description: > + The mapping rule search query failed. + More details are provided in the response body. + content: + application/problem+json: + schema: + $ref: "#/components/schemas/ProblemDetail" + "401": + $ref: "#/components/responses/Unauthorized" + "403": + $ref: "#/components/responses/Forbidden" + "500": + $ref: "#/components/responses/InternalServerError" /messages/publication: post: @@ -2656,7 +3258,7 @@ paths: "500": $ref: "#/components/responses/InternalServerError" - /document/{documentId}/links: + /documents/{documentId}/links: post: tags: - Document @@ -2719,7 +3321,7 @@ paths: $ref: "#/components/schemas/UserRequest" required: true responses: - "202": + "201": description: | The user was created successfully. content: @@ -3234,6 +3836,33 @@ components: items: $ref: "#/components/schemas/TenantItem" + MappingItem: + description: Mapping rule search response item. + type: object + properties: + mappingKey: + type: integer + description: The unique system-generated internal mapping ID. + format: int64 + claimName: + type: string + description: The claim name to match against a token. + claimValue: + type: string + description: The value of the claim to match. + + MappingSearchQueryResponse: + description: Mapping rule search response. + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + type: object + properties: + items: + description: The matching mapping rules. + type: array + items: + $ref: "#/components/schemas/MappingItem" + UserTaskSearchQueryRequest: allOf: - $ref: "#/components/schemas/SearchQueryRequest" @@ -3313,9 +3942,14 @@ components: type: integer description: The key of the element instance. format: int64 - variables: + processInstanceVariables: type: array - description: Variables associated with the user task. + description: Process Instance variables associated with the user task. + items: + $ref: "#/components/schemas/UserTaskVariableFilterRequest" + localVariables: + type: array + description: Local variables associated with the user task. items: $ref: "#/components/schemas/UserTaskVariableFilterRequest" UserTaskVariableFilterRequest: @@ -3334,6 +3968,9 @@ components: description: The key of the user task. type: integer format: int64 + name: + type: string + description: The name for this user task. state: type: string description: The state of the user task. @@ -3819,10 +4456,6 @@ components: description: The parent flow node instance key. allOf: - $ref: "#/components/schemas/LongFilterProperty" - treePath: - description: The path of keys to this process instance, separated by '/'. - allOf: - - $ref: "#/components/schemas/StringFilterProperty" startDate: description: The start date. allOf: @@ -3842,18 +4475,21 @@ components: description: The tenant ID. allOf: - $ref: "#/components/schemas/StringFilterProperty" + variables: + description: The process instance variables. + type: array + items: + $ref: "#/components/schemas/ProcessInstanceVariableFilterRequest" ProcessInstanceVariableFilterRequest: description: Process instance variable filter. type: object properties: name: + description: Name of the variable. + type: string + value: + description: The value of the variable. type: string - description: The variable name. - values: - type: array - description: The variable values. - items: - type: string ProcessInstanceSearchQueryResponse: description: Process instance search response. allOf: @@ -3898,9 +4534,6 @@ components: type: integer description: The parent flow node instance key. format: int64 - treePath: - type: string - description: The path of keys to this process instance, separated by '/'. startDate: type: string description: The start date. @@ -4006,9 +4639,6 @@ components: flowNodeName: type: string description: The flow node name. - treePath: - type: string - description: The path of keys from process instance to this flow node instance separated by '/'. hasIncident: type: boolean description: Shows whether this flow node instance has an incident related to. @@ -4058,8 +4688,8 @@ components: flowNodeId: description: The flow node ID for this flow node instance. type: string - treePath: - description: The path from process instance leading to this flow node instance. + flowNodeName: + description: The flow node name for this flow node instance. type: string type: description: Type of flow node as defined set of values. @@ -4214,9 +4844,6 @@ components: type: integer format: int64 description: The job key, if exists, associated with this incident. - treePath: - type: string - description: The path from process instance via flow node ids and flow node instance keys leading to this incident. tenantId: description: The tenant ID of the incident. type: string @@ -4291,9 +4918,6 @@ components: type: integer description: The job key, if exists, associated with this incident. format: int64 - treePath: - type: string - description: The path from process instance via flow node ids and flow node instance keys leading to this incident. tenantId: description: The tenant ID of the incident. type: string @@ -4337,6 +4961,7 @@ components: PermissionTypeEnum: description: Specifies the type of permissions. enum: + - ACCESS - CREATE - CREATE_PROCESS_INSTANCE - CREATE_DECISION_INSTANCE @@ -4495,6 +5120,15 @@ components: description: The user search filters. allOf: - $ref: "#/components/schemas/UserFilterRequest" + MappingSearchQueryRequest: + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + type: object + properties: + filter: + description: The mapping search filters. + allOf: + - $ref: "#/components/schemas/MappingFilterRequest" UserFilterRequest: description: User search filter. type: object @@ -4508,6 +5142,73 @@ components: email: description: The email of the user. type: "string" + MappingFilterRequest: + description: Mapping search filter. + type: object + properties: + claimName: + type: string + description: The claim name to match against a token. + claimValue: + type: string + description: The value of the claim to match. + CamundaUser: + type: "object" + properties: + userId: + description: The ID of the user. + type: "string" + userKey: + description: The system generated key of the User + type: "integer" + format: "int64" + displayName: + description: The display name of the User + type: "string" + authorizedApplications: + description: The applications the User is authorized to use + type: array + items: + type: "string" + tenants: + description: The tenants the User is a member of + type: array + items: + type: "object" + properties: + tenantId: + type: "string" + name: + type: "string" + groups: + description: The groups assigned to the user + type: array + items: + type: "string" + roles: + description: The roles assigned to the user + type: array + items: + type: "string" + salesPlanType: + description: The plan of the user + type: "string" + c8Links: + description: The links to the components in the C8 stack + type: array + items: + type: "object" + properties: + name: + type: "string" + link: + type: "string" + canLogout: + description: Flag for understanding if the user is able to perform logout + type: boolean + apiUser: + description: Flag for understanding if the user is an API user + type: boolean UserResponse: type: "object" properties: @@ -4619,6 +5320,82 @@ components: type: array items: $ref: "#/components/schemas/RoleItem" + + GroupCreateRequest: + type: "object" + properties: + name: + type: "string" + description: The display name of the new group. + GroupCreateResponse: + type: "object" + properties: + groupKey: + description: The key of the created group. + type: "integer" + format: "int64" + GroupUpdateRequest: + type: object + properties: + changeset: + description: The set of changed group attributes. + allOf: + - $ref: "#/components/schemas/GroupChangeset" + required: + - changeset + GroupChangeset: + description: A set of changed group attributes. + type: object + properties: + name: + type: string + description: The updated display name of the group. + GroupItem: + description: Group search response item. + type: object + properties: + groupKey: + type: integer + description: The group key. + format: int64 + name: + type: string + description: The group name. + assignedMemberKeys: + type: array + description: The set of keys of members assigned to the group. + items: + type: integer + format: int64 + GroupSearchQueryRequest: + description: Group search request. + allOf: + - $ref: "#/components/schemas/SearchQueryRequest" + type: object + properties: + filter: + description: The group search filters. + allOf: + - $ref: "#/components/schemas/GroupFilterRequest" + GroupFilterRequest: + description: Group filter request + type: object + properties: + name: + type: string + description: The name of the group. + GroupSearchQueryResponse: + description: Group search response. + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + type: object + properties: + items: + description: The matching groups. + type: array + items: + $ref: "#/components/schemas/GroupItem" + MappingRuleCreateRequest: type: object properties: @@ -4644,6 +5421,29 @@ components: claimValue: type: string description: The value of the claim to map. + MappingSearchResponse: + type: object + allOf: + - $ref: "#/components/schemas/SearchQueryResponse" + properties: + items: + description: The matching mapping rules. + type: array + items: + $ref: "#/components/schemas/MappingResponse" + MappingResponse: + type: "object" + properties: + mappingKey: + description: The key of the created mapping rule. + type: integer + format: int64 + claimName: + type: string + description: The name of the claim to map. + claimValue: + type: string + description: The value of the claim to map. TopologyResponse: description: The response of a topology request. @@ -5135,9 +5935,7 @@ components: description: The field to sort by. type: string order: - description: The order in which to sort the field. - type: string - default: asc + $ref: "#/components/schemas/SortOrderEnum" required: - field SearchQueryResponse: @@ -5541,6 +6339,12 @@ components: - FAILED - UNSPECIFIED - UNKNOWN + SortOrderEnum: + description: The order in which to sort the related field. + enum: + - ASC + - DESC + default: ASC MessageCorrelationRequest: type: object diff --git a/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx new file mode 100644 index 0000000000..cd65f5d47d --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/add-user-to-group.api.mdx @@ -0,0 +1,64 @@ +--- +id: add-user-to-group +title: "Assign a user to a group" +description: "Assigns a user to a group." +sidebar_label: "Assign a user to a group" +hide_title: true +hide_table_of_contents: true +api: eJztWMFy2zYQ/RUMTsmUJuXESR3eNI6duk1Sjy23B8cHEFiJSECAAUDLHA7/vbMAKSuS7GQ8PeqgoUgC+7DY9wDwddSzhaP5Df1gTVPT24SaGizz0uhzQXPKhLh2YGcmvk+oAMetrLEBzenUObnQjjDSOLDEG8LIAlumXzRNaM0sq8CDRYiOalYBzWlo8Be0NKESg9TMlzShFr430oKgubcNbCLNSoiRyTdoU5pQx0uoGM076tsaw0rtYQGWJnRubMV8fPT2iPZ9ssLGYT4HOqT3DORbDO5qox047PFq8govjwAsmSMsTCkI4hrOwbl5o1SLM+vHGUhpn9CjyeSJQNw0ShBtPClgFTH9oj8ZC0SAZ1I5wiyQ2po7KUAQqQPAOFhSGNHGInKjPWiPaKyuleSBHVltTaGg+u2rQ+hubVY2KEIuYssBl5jiK3BPmCOxYRHRby7PTsi7oze/374ova9dnmXL5TK1c34AQnpjU2MXmZ1z/GG7lymZlWCBVKwNaQohEZMpzKoG6yU44mrgci75OIPDsAmWLuY3FDEOC0m76vxQ4lWpnbdSL9Yr3Vi5LQtyfXlOpADt5byVerENHfrMWaMwBitM4/NCMf0Na+ulVztBN1FcU1XMtsTMdwD0CXWe+cb9lKmvX23FRib9MZtdkBiCcCOAzI0lvpRuBMIkKqll1VQ0P5pMElqx+3j3djLpMSZW/Bcy0QTua8V0oNZmOlKT6oG3ITGpnWea/1+VMVYu5CZuigvHWAs6kPh9zKjv+6DB19t8PzO2kEKADvQkuLSA80S6IEemlFmCSPe62utqr6tHdXW0e2+LBwBjh91S+jLuivIONO7OYQNFmc1No/ci24tsL7InRPbuqZPotrakI0xZYKJ9OKP+eCzdy20vt73cdsvtza7vtakmOMsWeQjWGksM5421IMiylCqEx2/AEXs4TO6/y/Za22vtMa31Ca3Alwbtq9q4QB20eXKahX3KZd3oQPUZbnYu6wZbqEd3B+zdaFg1VtGcdlFCfZ5lXWmc7/OuNtb32R3W545ZyQoVWYmvo9RGCinDmSrjMLZLiS/QmRpTPGFVowUjx+Ty9GpGPjAPS9aGqUXIH0MfT44nO6Ni00ciTi/OScwwEnFtcRjDosp3ho2NfyVw8L0c8MZK315htzg9BTALdtpgNVYEGfBCdLyPjWgy/DkbafPnv7NQeannJnQfGLA9EKwKWBdHPkkPt9l2cR5Ew01VNTqsnHoRzzxsLTGuGucxoYQqyUG7wOvBSRybfYxvyD8RkRymWJTInHHBXEhfNkXKTZXx2G11LZQpsopJnQ0QLjuZfrr+/H568PH85PTz1enBYTpJ/b0PySOhK6bXxhEt2G0HdjPp7mHD+JltOxTGw73PasWkRqqEjLpBSjfRxHU0ofmanRvUhM9Gm/U2GSRxQ7uuYA6urep7fPy9AdvS/Ob2QUFBckI6/C9oPmfKbXqx60m8uBxc25dkyxzemcHwkOk2yFY1eEcT+g3adVca3eJnj2LdJ37GIMZ562/7hJbABNgwK/HtlHOo/Vq/R/d91N9qEbz4+wqV8x9I3zlT +sidebar_class_name: "post api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

Assign a user to a group

+ + + +Assigns a user to a group. + +## Request + +

Path Parameters

+ +The user was assigned successfully to the group. + +
+ +The user could not be assigned. +More details are provided in the response body. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +Forbidden. The request is not allowed. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +The group or user with the given key was not found. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +The user with the given key is already assigned to the group. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +An internal error occurred while processing the request. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx new file mode 100644 index 0000000000..0fd9e5aadd --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/assign-group-to-tenant.api.mdx @@ -0,0 +1,59 @@ +--- +id: assign-group-to-tenant +title: "Assign a group to a tenant" +description: "Assign a single group to a specified tenant." +sidebar_label: "Assign a group to a tenant" +hide_title: true +hide_table_of_contents: true +api: eJztWFtT4zYU/itn9LQ7NXFg2S31W4aFLe2WYSC0D5QH2T6JtStLRhdCxuP/3jmSHQIJLdvhMQ8Zx9K56nyfZJ2WOT63LLthU1RcOXabMN2g4U5odVayjHFrxVx9Mdo3U90LJaxEWxjRkBTL2CTIAAcr1FwizEkanKaRBgsxE1iCC7ojlrCGG16jQ0OOW6Z4jSxjcf53XLKECbLacFexhBm888JgyTJnPD53Pa0QvBJ3HkGUqBz5MqBn4Cpcc2mLCmvOspa5ZUPehHI4R8MSNtOm5i4OfTpkXZesQgp5vGlEweKPBnRLLm2jlUVLGgfjA3psuo3rvuAWrC8KtHbmpVxCLCGVQD9Zli5hh+PxdlON0feixBJK7jgIC0o7uOdSlBR9oZVD5UiVN40URcBL2hidS6x/+mbJTruW5DO8wEWUhBIdFxJ0/g0LB9xCFMyxBKHg5vL0GH45/Pjz7bvKucZmabpYLEZmVuxhKZw2I23mqZkV9CO59yOYVmgQar6EHIGXpSCfXFJCDRon0A6YLIb16MMGqsTob8WSoSYxLELsSvmxYqvKWWeEmq8XzhuxyRG4vjwbELEUar7pOujMuJdkg+fauyyXXH2nQjnh5Fanz71YX9fcLAfAPXXQJcw67rz9T+B9ONiwTbD4dTq9gGgCCl0izLQBVwk7OKIkaqFE7WuWHY7HCav5Q3z7NB53ZJMq/opMFOBDI7kK0HqejlBQa4M9fkJiQlnHVfFWldFGzMVzvyPaHoZasB7En2NGXdcFQn3YxPupNrkoS1QBnkD7B1o3sIpLqRe449WOVzte/QuvDjfxfq4dzLRXZeRVPNdAm7WDUK1EdvTa0WtHrxfo9XHbd+BEAa2yIRyiMdqALgpvDJawqIQM5ukrc/Ddn2sRizuu7bi249om17qE1egqTXfrxgfk0K0yY2k8vmzarm7CXRoOMpu2w020o6sjmvvh7uyNZBlrI4u6LE3bSlvXZW2jjevSeyrRPTeC5zICk6Yj2wYUSV1wGYa3VZMm6DY8ZHnMa69KDkdweXI1hS/c4YIvw+qSy6emj8ZH461WSfQFi5OLM4gZRiyu7Q+DWSL6VrNR+DWGw6XaYuGNcMsrUovLkyM3aCaeKrLCSO8vWKf3KMSS/s/pgJzf/pqG4gs100G9B8FmIFQVNDZGPh7tbwLu4izwptB17VXYPNUcFsJVwNcSK6S3jhJKmBQFKhug3XcvBrGvcQb+jB5hf0RFicgZ9sy5cJXPR4Wu0yKqrZ651Hlac6HS3oVNjyd/XJ9/nux9PTs+Ob862dsfjUfuwYXkG21dzdVaHKvu0FpbyG1tJLWPp8aP9pT6Ujl8cGkjuVAEnpBj2xPspu8wWZawbL3ZFDlGo6t+z23SE+WGtW3OLV4b2XU0fOfRLFl2c/vIq0DEUlj6X7JsxqV93hRaT+zdZd8+eg+vbF5tza0f5GoZKC49vbGEfcflk2YatbPePrhVH+t/xLZa5e62S1iFvEQT1jBOT4oCG7em+OLnA3F4tZdeXBP5/gFDXylv +sidebar_class_name: "put api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

Assign a group to a tenant

+ + + +Assign a single group to a specified tenant. + +## Request + +

Path Parameters

+ +The group was successfully assigned to the tenant. + +
+ +The provided data is not valid. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +Forbidden. The request is not allowed. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +Not found. The tenant or group was not found. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +An internal error occurred while processing the request. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx new file mode 100644 index 0000000000..880eab7995 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant.api.mdx @@ -0,0 +1,59 @@ +--- +id: assign-mapping-rule-to-tenant +title: "Assign a mapping rule to a tenant" +description: "Assign a single mapping rule to a specified tenant." +sidebar_label: "Assign a mapping rule to a tenant" +hide_title: true +hide_table_of_contents: true +api: eJztWEtz2zYQ/is7OCVTWpQdJ3V50zh26zbxeGy5Pbg+gORKRAICNB6WNRz+984SpEw93LoZH3XQSCIW+8D3fQCxNXN8bllyx6aouHLsPmK6QsOd0OoiZwnj1oq5+sqrSqj5tZc41Z1pxHK0mREV2bKETVpL4GCFmkuEMswB4yWC0zRQYSZmAnNwrYsRi1jFDS/RoaEsaqZ4iSxhYfwPXLKICXJecVewiBl88MJgzhJnPG5mMC0QvBIPHkHkqBzFMqBn4AochLRZgSVnSc3csqJoQjmco2ERm2lTchcefTpmTROtUurKedOchkv0fzO7p8i20sqipRlH4yP62o6+hsOCW7A+y9DamZdyCQFfgkSvLVMTsePxeLfHyuhHkWMOOXcchAWlHTxyKXIqItPKoXI0lVeVFFlLprgyOpVY/vTNkp96UOsGjeAqWEKOjgsJOv2GmQNuIRimmINQcHd9fgq/HH/8+f5d4VxlkzheLBYjM8sOMBdOm5E289jMMvqQ3fsRTAs0tCBLSBF4nguKySUVVKFxAm3P0axfjy5tIEBGfysW9dCEtIjBq8nPwK0AtM4INR/i543Ylg7cXl/0/FgSWFuh2zkz7iX54Kn2LkklV98JKCec3Bl0M4r1ZcnNsqffeoAmYtZx5+1/8u/D0ZZvosVv0+kVBBeQ6Rxhpg24Qtg+EBVRCiVKX7LkeDyOWMmfwr9P43FDPgnxV1SiAJ8qyVVLrc1yhIJSG+z40xYmlHVcZW+FjDZiLjbjjmi76LFgHYk/h4qapmkF9WGb7+fapCLPUbX0BNpN0LpeVVxKvcC9rva62uvqX3R1vM33S+1gpr3Kg67CuQbabJ+HamW5V9leZXuVvaCyj7teBycKaJUN8RCN0QZ0lnljMIdFIWTrnl42+9jd8Ra4uNfaXmt7rW1rrYlYia7QdP+ufMscumomLA6nmI3r1QW5ibvz7IDOMxvXz/fUhm6UaB77u7U3kiWsDnJqkjiuC21dk9SVNq6JHwmrR24ET2VgKA0H2fV0kjrjsn28C1YaoNtyX+4pL73KOZzA9dnNFH7lDhd82S4zhVx3fTI+Ge/0SqYveJxcXUCoMJBysFH0bknxO90G49c4bu/aFjNvhFve0LSwPClyg2biCZoVWbp4rXf6H4xY1P047yn0+1/TlgVCzXQ7vWPDdiKEChobMh+PDreZd3XRCijTZelVu4uqOSyEK4APCsukt44KipgUGSrbcrzrbvRmX8II/BkiwuGIQAnM6TfPuXCFT0eZLuMsTFt9p1KnccmFirsQNj6dfL29/Dw5+HJxenZ5c3ZwOBqP3JNri6+0dSVXgzxWTaTt7pHb2Xaqn0+RH+xAdcA5fHJxJblQRKW24rrT3V3Xj7IsYsmwNbUmPRocNInuo04/d6yuU27x1simoccPHs2SJXf3z3Jr9ZkLS79zlsy4tJudpGGh7667ntN7eGXPa2eR3UOulq3ypad/LGLfcbnWg6Mu2Nsnt9n8+oEUB8vd3DcRK5DnaNrFDAaTLMPKDaa++J5BGl9tule3JM5/AE8DRis= +sidebar_class_name: "put api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

Assign a mapping rule to a tenant

+ + + +Assign a single mapping rule to a specified tenant. + +## Request + +

Path Parameters

+ +The mapping rule was successfully assigned to the tenant. + +
+ +The provided data is not valid. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +Forbidden. The request is not allowed. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +Not found. The tenant or mapping rule was not found. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +An internal error occurred while processing the request. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
diff --git a/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx new file mode 100644 index 0000000000..84d3a2644c --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/assign-user-to-tenant.api.mdx @@ -0,0 +1,59 @@ +--- +id: assign-user-to-tenant +title: "Assign a user to a tenant" +description: "Assign a single user to a specified tenant." +sidebar_label: "Assign a user to a tenant" +hide_title: true +hide_table_of_contents: true +api: eJztWFtT4zYU/itn9LQ7NXFg2S31W4aFlnaXYSC0D5QH2T6JtStLRhdCxuP/3jmSHQIJLdvhMQ8Zx9K56nyfZJ2WOT63LLthU1RcOXabMN2g4U5odVayjHFrxVxdWzRT3cskrERbGNGQEMvYJIgAByvUXCJ4iwacpoEGCzETWIILqiOWsIYbXqNDQ25bpniNLGNx/g9csoQJMtpwV7GEGbzzwmDJMmc8Pvc8rRC8EnceQZSoHPkyoGfgKlxzaYsKa86ylrllQ96EcjhHwxI206bmLg59OmRdl6xCojTeNCAy+KPh3JJH22hl0ZLGwfiAHlu80qIvuAXriwKtnXkplxCrR+uvn6xJl7DD8Xi7pcboe1FiCSV3HIQFpR3ccylKCr7QyqFypMqbRooiQCVtjM4l1j99s2SnXcvxGVbgIkpCiY4LCTr/hoUDbiEK5liCUHBzeXoMvxx+/Pn2XeVcY7M0XSwWIzMr9rAUTpuRNvPUzAr6kdz7EUwrNAg1X0KOwMtSkE8uKaEGjRNoB0AWw3r0YQMVYvS3YslQkhgWwXWl/FiwVeGsM0LN1+vmjdjkB1xfng14WAo133QddGbcS7LBc+1dlkuuvlOhnHByq9PnXqyva26WA9yeOugSZh133v4n7j4cbNgmWPw2nV5ANAGFLhFm2oCrhB0cURK1UKL2NcsOx+OE1fwhvn0ajzuySRV/RSYK8KGRXAVoPU9HKKi1wR4/ITGhrOOqeKvKaCPm4rnfEe0NQy1YD+LPMaOu6wKhPmzi/VSbXJQlqgBPoN0DrRtYxaXUC9zxaserHa/+hVeHm3g/1w5m2qsy8iqea6DN4zmoVhI7du3YtWPXC+z6uO0zcKKAVtkQDtEYbUAXhTcGS1hUQgbz9JE5+O6PtYjFHdd2XNtxbZNrXcJqdJWmW3XjA3LoSpmxNJ5eNm1Xt+AupXPMpm1/Ce3o2ojmfrg1eyNZxtrIoS5L07bS1nVZ22jjuvSeCnTPjeC5jLCk6ci1AUNSF1yG4W21pAm6Bw85HvPaq5LDEVyeXE3hV+5wwZdhbcnlU9NH46PxVqsk+oLFycUZxAwjEtd2h8Es0Xyr2Sj8GsPhQm2x8Ea45RWpxeXJkRs0E0/1WCGk9xes03sUYkn/53TAze9/TUPphZrpoN5DYDMQqgoaGyMfj/Y34XZxFlhT6Lr2Kmydag4L4Srga4kV0lsXmwlSFKhsAHbftxjEvsQZ+DN6hP0RFSUiZ9gx58JVPh8Vuk6LqLZ65lLnac2FSnsXNj2efL0+/zzZ+3J2fHJ+dbK3PxqP3IMLyTfaupqrtThWbaHHfpDb2kBqH4+MH+wl9YVy+ODSRnKhCDohw7Yn103fWbIsYdl6kynwiwaHNs9t0pPkhrVtzi1eG9l1NHzn0SxZdnP7yKlAwlJY+l+ybMalfd4LWs/q3WXfNXoPr2xZbc2sH+RqGegtPb2xhH3H5ZMWGjWx3j64oX31P0Ib1ri77RJWIS/RhBWMs5OiwMat6b342UDsXe2hF9dEu38A4lYjaw== +sidebar_class_name: "put api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

Assign a user to a tenant

+ + + +Assign a single user to a specified tenant. + +## Request + +

Path Parameters

+ +The user was successfully assigned to the tenant. + +
+ +The provided data is not valid. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +Forbidden. The request is not allowed. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +Not found. The tenant or user was not found. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +An internal error occurred while processing the request. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx index 5906d194dc..8dcc4ef8ba 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-document-link.api.mdx @@ -5,7 +5,7 @@ description: "Create a link to a document in the Camunda 8 cluster." sidebar_label: "Create document link (alpha)" hide_title: true hide_table_of_contents: true -api: eJztV0tz2zYQ/is7ONlTipQTN015U22ndSdJPbbSHmwfVuRKREICDABa5mj43zsLkJZkybHb5ljN6EUs9/V9++BKOFxYkV6LU501FSknbiOhazLopFbnuUhFZggdDefvpfoiIpGTzYysWUik4sSLAEIp1RdwGhDyXh6kAlcQnGDVqBzhLWRlYx2Z+EbdqI/aEbgCHbhCWsgaY0i5sgWtyhZsU9faOAuoQKpRRZU27VqzddpQBMtCZgVIC0o7qAiVg7k2UBudNxk7CI0lby1NU6Ud3agpGyOV11qyh97ANZZ1gTAndI2h24Mk01WtFSlnE0JTtiPMMrI28XLhc9RL27jKDwFVDhW2MCOwzewzZY5TkRWoFnSjpIJ5w8JgqCS0ZGPv0Y0SkajRYEWODGOxEgorEqkYIj3PRSQkJ7pGV4hIGPraSEO5SJ1p6DEa04Lg/BT03Cf+IV1Oe3hiEQmbFVShSFfCtTVbss5ItRBdFz0Y99ldW/7akGm3TM+xtC+17ZUNHmwfzY2uvu3TbbBK1v2i85YldpzItHJM3nQlsK5LmXn6Jp8tO7Xa1a09PJx4w2R3kqw/lRVN9Xt5RxuyUjlakBGRmGtToQuX3hzvVAHHzhpGTo9KeUc7WfDBSwWVjf3Nc2xKJ9LXb8b86rpIOOlKtrlZbZchdtF1LGHI1lrZ4O+r8RF/7bqxbXKJFkIV52Abz+J5U5Yte/GdMteYche6fQkaOsRmYmLRRYLua2nITtw+PQ+Zz9HRiJO8V3nuu5DKPQywLCj0Hm+z1x+Lp/LcJ/h4PH5JTn0+ubnMUZaUx/CBGZ6TQ1laQEPcgO5kTvnQAQfkYKbzNvZl/0Tya6NnJVU/7IKw7dUELoJkbxcCOIAWguAsWL++fHcCPx//+NPtQeFcbdMkWS6XsZlnI8ql0ybWZpGYecZvljuMYVqQoaGdYZ5LtoklrGEHW1Mm5zIb4OzdBgYvxPdMtfnTb4DdGLkD8wQ+XZ6DzEk5OW+lWuya3qwtgTPduHRWIgP8APxzTJ2AbaoKTTvU8LaBLhLWoWvss23i9au9RP1tOr2AoAIynZOfWH4E9oY4iEoqWTWVSI/H40hUeB/+vRmPO9bJiL8gEsXML1EFtj4Kh5vRmrc+MKmsQ5V9L2S0kQv52O52EfYkPg0RdaEMK3KF5vWj1tZThydfKpKhCpPVejp2CZek5SFC5m4Yor4liVUoni5NklWhrevSFe8UXXLHyNyhkTgrAx/5OBTZQJ5SZ1gWwYFdEPmAh+UQ3HrFuTy7msKv6GiJrU8qm9xW/Xb8drxXK4s+oXFycQ4hwkDBjbYwqOX63qs2CL9EsR+4lrLGSNde8W0hPTNCQ2bSMA4P1Ojtee38PwiJqP/xbiDM739NPebc0i7Xw/zsHqu6L8iN2TtMRGbjXIfTwJVdxxlFMjZEOo6Pdnl5ce7LK9NV1SjfY9UCltIVgHvWUhGJUmakrPeqX4YGsffhBP4MFuEoZhAD04bWupCuaGZxpqskC7c9fM9KPUsqlCrpTdjkZPLh08fTyej9+cnZx6uz0VE8jt2988li6leoNv0Ii/b2KDrwu+jh48BX6/Hy/4L+Xxf0nu6O7l1SlygVF2C/9ITWdP2wrotIpFure+hOt1HfYa7FajVDS59M2XV8OezW3LNyabkdPbFdbyL67xftvaF8oXZr57/DsmEpwc1g6JL/0MWDy35NP4TnH0n2etVfRNVuujR4u5Hj7raLREGYk/FOBoGT4MpoymrWCnb2XH7qCXdMsoxq903Z243ZdPHH1ZR7Xf9YUumc7zG45AclXIpU3Igbdlj79Pg26q+vRIlq0eCC5YNefv0N6EFkAg== +api: eJztV0tz2zYQ/is7ONlTipQTN015U22ndSdJPbbSHmwfVuRKREICDABa5mj43zsLkJZkybHb5ljN6EUs9/XtfrtcCYcLK9JrcaqzpiLlxG0kdE0GndTqPBepyAyho+H8vVRfRCRyspmRNQuJVJx4EUAopfoCTgNC3suDVOAKghOsGpUjvIWsbKwjE9+oG/VROwJXoANXSAtZYwwpV7agVdmCbepaG2cBFUg1qqjSpl1rtk4bimBZyKwAaUFpBxWhcjDXBmqj8yZjB6Gx5K2laaq0oxs1ZWOk8lpL9tAbuMayLhDmhK4xdHuQZLqqtSLlbEJoynaEWUbWJl4ufI56aRtX+SGgyqHCFmYEtpl9psxxKrIC1YJulFQwb1gYDJWElmzsPbpRIhI1GqzIkWEsVkJhRSIVQ6TnuYiE5ETX6AoRCUNfG2koF6kzDT1GY1oQnJ+CnvvEP6TLaQ9PLCJhs4IqFOlKuLZmS9YZqRai66IH4z67a8tfGzLtluk5lvaltr2ywYPto7nR1bd9ug1WybpfdN6yxI4TmVaOizddCazrUma+fJPPlp1a7erWHh5OvOFid5KsP5UVTfV7eUcbslI5WpARkZhrU6ELl94c73QBx84aRk6PSnlHO1nwwUsFlY39zXNsSifS12/G/Oq6SDjpSra52W2XIXbRdSxhyNZa2eDvq/ERf+26sW1yiRZCF+dgG1/F86YsW/biO2WuMeUudPsSNDDEZmJi0UWC7mtpyE7cPj0Pmc/R0YiTvFd57llI5R4GWBYUuMfb7PXH4qk89wk+Ho9fklOfTyaXOcqS8hg+cIXn5FCWFtAQE9CdzCkfGHBADmY6b2Pf9k8kvzZ6VlL1wy4I215N4CJI9nYhgANoIQjOgvXry3cn8PPxjz/dHhTO1TZNkuVyGZt5NqJcOm1ibRaJmWf8ZrnDGKYFGRroDPNcsk0sYQ072JoyOZfZAGfvNjB4Ib5nus2ffgPsxsgdmCfw6fIcZE7KyXkr1WLX9GZvCZzpxqWzEhngB+Cfq9QJ2Kaq0LRDD28b6CJhHbrGPksTr1/tLdTfptMLCCog0zn5ieVHYG+Ig6ikklVTifR4PI5Ehffh35vxuGOdjPgLIlFc+SWqUK2PwmEyWtetD0wq61Bl3wsZbeRCPra73YR9EZ+GiLrQhhW5QvP6UWvrS4cnXyqSoQttslqPxy7hnrQ8RcjcDVPUc5JYhe7p0iRZFdq6Ll3xUtEldwzNHRqJszIUJB+HLhuqp9QZlkXwYBdFPuBpOUS33nEuz66m8Cs6WmLrs8omt1W/Hb8d79XKok9onFycQ4gw1OAGLwxqucH3qg3CL1HsJ66lrDHStVd8W0jPjNCQmTQMxENt9Pa8dv4fhETU/3g3VMzvf0096Mxpl+tpfnaPVd135MbwHUYil+Nch9NQLLuOM4pkbIh0HB/tFubFue+vTFdVozzJqgUspSsA9+ylIhKlzEhZ71W/DQ1i78MJ/BkswlHMIIZKG7h1IV3RzOJMV0kWbnv4npV6llQoVdKbsMnJ5MOnj6eT0fvzk7OPV2ejo3gcu3vnk8W1X6Ha9CNs2tuz6MAvo4ePA1+t58v/G/p/3dD7cnd075K6RKm4AfutJ3DT9cO+zkSUbi3vgZ5uo55irsVqNUNLn0zZdXw5bNdMWrm0zEdP7NebkP77VXtvLF+o3dr677BsWEowGww0+Q9dPLjsF/VDeP6hZK9X/UVU7aZLg7cbOe5uu0gUhDkZ72QQOAmujKasZq1gZ9Pl555wxyTLqHbflL3dmE4Xf1xNmez6B5NK53yPwSU/KuFSpOJG3LDD2qfH86i/vhIlqkWDC5YPevn1N6xZZOg= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -29,7 +29,7 @@ import TabItem from "@theme/TabItem"; Create a link to a document in the Camunda 8 cluster. @@ -47,7 +47,7 @@ in future releases. The document link was created successfully. -
+
Schema
The document link creation failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx index 2470adde4e..7568067bb8 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-document.api.mdx @@ -60,7 +60,7 @@ Information about the document. Custom properties of the document. -
+
The document upload failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx new file mode 100644 index 0000000000..630ede47a5 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/create-group.api.mdx @@ -0,0 +1,57 @@ +--- +id: create-group +title: "Create group" +description: "Create group" +sidebar_label: "Create group" +hide_title: true +hide_table_of_contents: true +api: eJztWEtz2zYQ/is7OLVTWpQTJ3V5UxUndZuHx5bbg+0DCK5ExCDAAKBljYb/vbMAqYdluTnkVmlGI5JY7LeP74MILJnnM8eyG/bBmqZmdwkzNVrupdHnBcuYsMg9xsGEWfzWoPO/m2LBsiUTRnvUni55XSspwrz0qzOanjlRYsXpyi9qZBkz+VcUniWstoTiJToa1bzCDSvnrdQzlrACnbCyJp8sY5MSoZCuVnwBNAPMFHyJoHEOM4pvwNo2YV56RV5CyOMQ/WWMmrUtGVh0tdEuQr8aHtPPLlLwCHPuIFagANcIgc5NG6UWA5b8qOQD0F+4eD6Me1z0efZxdLkmvV+pPc7QsoRNja24j4/enuyvRsy/K8fJcPhSBYRpVAHaeMhXIQxu9SdjEQr0XCoH3CLU1jzIAguQOkTbVxlyUywGt3p/wWprcoXVL7uF245pBBfRssOFWFDgDqJhHtFvLt+P4beTN7/e/VR6X7ssTefz+cBOxREW0hs7MHaW2qmgL9n9PIBJiRah4gvKkheFJEyuYN0qcDUKOZUCvAkJdmEDdSHm93Kf4+guyVdNa6zc4fwIri/PQRaovZwupJ7tQoc5U94o8sFz0/gsV1zfs3X3/0tZI3BNVXG7oto2QJsw57lvNtLYQ7rXr55V7R+TyQVEFyBMgTA1FnwpXQ9ESVRSy6qpWHYyHCas4o/x7u1w2JJP6vh3ZKIBH2vFdaDW03SkhmrN25CY1M5zLX5UZ4yVM/kUd3td6kj8LmbUa3DPKtStt6C4uHfwwJUsgDe+JNQoH9JkCIIr98KqdBDZQWT/e5G93uX7e2NzWRSoAz1XepMu/OVxpcwci4OuDro66Gqfrt489wI50kBVtsRDtNZYMEI01mIB81Kq4J7epnvsTniHF8WD1g5a26e19qnvuKGLOzWqDPrS0Ka9Ni7wivuSZSwN444lzKF9QEvb/SVrrGIZW0YRtVmaLkvjfJsta2N9mz5Qhx64lTxXkZc0HMXWk0gZwVUZsXabSQOb+/QxrxpdcDiFy7OrCXzgHud8EYpLkNuuT4enw2e9kukej6OLc4gZRipuLA+9W9L5s26j8fc4bts7KqRorPSLK5oWy5Mjt2hHDZV8RZEOL3in+2jEku7ifU+cP/+ZhN7T0na5PmM5e+RVHYUZz0h6zgVCTk1A6uiyGzM1EK2LSQ4Hx7vUvDgPChOmqhodllk9g7n0JfCNGgjVOE+5J0xJgXR0sA6oN/sYR+DviAjHA+pfJFm/us6kL5t8IEyVijht9Zsrk6cVlzrtIFw6Hn26/vxudPTxfHz2+ers6HgwHPhHH+pEBK+43oxjWwpbia7a4fHRp7XiUlMFQ3DLTiU3rFPJXdIx/YYtlzl3eG1V29Ljbw3aBctu7tbCoLs2YSXyAm2Q1T2d5LBx/Ac7mhAumauG8HfOidqknzESAmv/ou3dhsIvvlxNiEbdQVxlCppj+ZwO6ficZeyW3TJGp3nkITA0PF8yxfWs4TOyj37p8y+f9OiH +sidebar_class_name: "post api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

Create group

+ + + +Create group + +## Request + +

Body

+ +The group was created successfully. + +
Schema
+ +The group could not be created. +More details are provided in the response body. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +The request lacks valid authentication credentials. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +Forbidden. The request is not allowed. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +An internal error occurred while processing the request. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx index 8ae0509807..f98a7f937e 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-mapping-rule.api.mdx @@ -5,7 +5,7 @@ description: "Create a new mapping rule" sidebar_label: "Create mapping rule" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/SuYPbVTWpQTJ015Ux2ndRs7HllJD7YOILgSkYAAA4CWNRr+984ClERHsuOZ5tCDNKMRPxb79d4DqV2B53MH2Q1c8LqWes7GjUKYJmBqtNxLo88LyEBY5B47m2CSQIFOWFmTDWRwGiwYZxoXrOqc2UbhrYYELH5t0PnfTbGEbAXCaI/a0yGvayVFiJR+duRqBU6UWHE68ssaIQOTf0bhIYHaUl5eogtuFJfVJa+wZ+q8lXq+k96kRKZ5hczMmC+RhaXMG0p1AG0SfX3iqnmmszsyfcRbGwuWFgtq7TbNB2GmCXjpFcXpNTb2cRz7BW0bnbnaaBeLfjE8pp/djPpNZwvuWAStYK4RAp2bNUotB5TDj+l+F+9vXO7P5wsuN/3pMumnSJl0AaT2OEcLCcyMrbiPl16fbHD5f2L8BHoRrw6+k+HwGYgJ06iCaeNZvmnYE2jV1uQKq192UXsYZ8SuoiUr0HOpWESTcceiYY4Fk5rdjN+dst9OXv06/an0vnZZmi4Wi4GdiSMspDd2YOw8tTNBX7L7ecAmJVqqYkkp86KQFJMrtuUJczUKOZOCGkdd7NJm1PxB2BqeJlm8uwvWhiiNlTvYjdjH8TmTBWovZ0vq8E7osGbGG0U+eG4an+WK6y+wxfV7DBkx11QVtxuWPwzQJuA8902vjEeI/vLFXvb9OZlcseiCCVMgmxnLfCndOhAVUUktq6aC7GQ4TKDi9/Hs9XDYkk9C/BmVaIb3teI6UOvbcqRmlbHY8ScUJrXzXIsfhYyxci6/jftQYx2J38aK1rp6uV9X3dOGOCfWj6Wd3bFALbEY3OqLbXGOcRsSuJNFlIUP7qKcWW6KZSTtQZQHUR5EuV+UJ/9dlAeFHRR2UNgjCnu173VypBl12RIP0VpjmRGisRYLtiilCu7pT8A6dqfGw9PsoLWD1h7TWptAhb40NAGpjQvU4b6EDNLuyXVETy4HCTi0d2hpkrKCxirIYBXl0mZpuiqN8222qo31bXpHWNxxK3muIgPpdpTVmi7KCK7KGHIXNrrR/6N7yqtGF5y9YeOz6wn7g3tc8GVoI4V86PrN8M1wr1cyfcTj6OqcxQoj6XobwdotKXqv22j8HMdtO6VGisZKv7ymZbE9OXKLdtRQ5zdk6OIF73QejSDpDt6tKfLXP5OAMm1i4+0U6uyeV3WUYG/CsKVYf1SwvhpYOTMhiY4zu+UQtmhdrH84ON7l59V5kJkwVdXosNfqOVtIXzLea49QjfPUlgSUFEjThGwFOqa5Nnsf77BPMSI7HhC0kX/rLXYufdnkA2GqVMRlm99cmTytuNRpF8Klp6OLj5dvR0fvz0/PLq/Pjo4Hw4G/96GFJIGK634e8UWu/xr3bb29Yd93ZoQdsB7vfVorLjU1PNSy6mR3Aw9lN0066dzAapVzhx+talu6/LVBu4TsZrpVGp21CZTIC7RBp19ocgWnMb2jCYUn84j5zmSsTdYrRkJg7Z+0nfZ2jqsP1xPiZTf7rExBayxf0FyULyCDW7gFoJEreQiUD9dXoLieN3xO9tEvff4FdUl8Zg== +api: eJztWE1z2zYQ/SuYPbVTWpQTJ3V5UxWndRs7HllOD7YOILgSEYMAA4CWNRr+984SlERZsuOZ5tCDNKMRPxb79d4DqV2C5zMHyS1c8LKUesZspRAmEZgSLffS6PMMEhAWucfWZkQmEWTohJUl2UACw8aCcaZxzoqOszsNEVj8VqHzv5tsAckShNEetadDXpZKiiZS/NWRqyU4kWPB6cgvSoQETPoVhYcISkt5eYmucaO4LC55gR1T563Us530xjkyzQtkZsp8jqxZyryhVHtQR8HXF66qVzp7INNnvNWhYGkxo9Zu0twKM4nAS68oTqexoY+j0C+o6+DMlUa7UPSb/jH97GbUbTqbc8cCaBlzlRDo3LRSatGjHH5M99t4f+Nifz73uFj3p82kmyJl0gaQ2uMMLUQwNbbgPlx6f7LG5f+J8QvoBbxa+E76/VcgJkylMqaNZ+m6YS+gVVqTKix+2UVtO86AXQVLlqHnUrGAJuOOBcMUMyY1ux19HLLfTt79Ovkp9750SRzP5/OenYojzKQ3tmfsLLZTQV+y+7nHxjlaqmJBKfMskxSTK7bhCXMlCjmVghpHXWzTZtT8XrM1vEyycHcXrDVRKit3sBuwm9E5kxlqL6cL6vBO6GbNlFeKfPDUVD5JFdf3sMH1ewwZMFcVBbdrlm8HqCNwnvuqU8YzRH/7Zi/7/hyPr1hwwYTJkE2NZT6XbhWIiiiklkVVQHLS70dQ8Mdw9r7fr8knIf6KSjTDx1Jx3VDraTlSs8JYbPnTFCa181yLH4WMsXImn8bd1lhL4g+hopWu3u7XVfu0Ic6J1WNpZ3fMUEvMenf6YlOcY9w2CTzILMjCN+6CnFlqskUg7UGUB1EeRLlflCf/XZQHhR0UdlDYMwp7t+91cqAZddkSD9FaY5kRorIWMzbPpWrc05+AVexWjYen2UFrB609p7U6ggJ9bmgCUhrXUIf7HBKI2yfXET25HETg0D6gpUnKEiqrIIFlkEudxPEyN87XybI01tfxA2HxwK3kqQoMpNtBViu6KCO4ykPIXdjoRveP7pAXlc44O2Wjs+sx+4N7nPNF00YKue36tH/a3+uVTJ/xOLg6Z6HCQLrORrByS4re6zYYv8ZxXU+okaKy0i+uaVloT4rcoh1U1Pk1Gdp4jXc6D0YQtQcfVxT5659xgzJtYqPNFOrskRdlkGBnwrChWHdUsLrasHJqmiRazuyWQ9iidaH+fu94l59X543MhCmKSjd7rZ6xufQ54532CFU5T22JQEmBNE1IlqBDmiuzT+EO+xIisuMeQRv4t9piZ9LnVdoTpohFWLb+TZVJ44JLHbchXDwcXNxcfhgcfTofnl1enx0d9/o9/+ibFpIECq67eYQXue5r3NN6O8O+78wIW2A9Pvq4VFxqanhTy7KV3S1sy24StdK5heUy5Q5vrKpruvytQruA5HayURqd1RHkyDO0jU7vaXIFw5De0ZjCk3nAfGcyVkerFQMhsPQv2k46O8fV5+sx8bKdfRYmozWWz2kuyueQwB3cAdDIlTw0lG+uL0FxPav4jOyDX/r8Cym2fIY= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx index a3d6a91807..62319b3c6e 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-role.api.mdx @@ -5,7 +5,7 @@ description: "Create a new role." sidebar_label: "Create role" hide_title: true hide_table_of_contents: true -api: eJztWE1z2zYQ/Ss7e2qntCg7Tprypjp26zYfHltpD7YPILgSEYMAA4CWNRr+984SpCVHlptDjvKMR6Sw2Lcf70HkrjCIucfsGi+tJrxN0NbkRFDWnBeYoXQkAnVrCRbkpVM1L2KGJ90SCDC0AGc1jW4MJujoa0M+/G6LJWYrlNYEMoEvRV1rJTvf6RfPPlboZUmV4KuwrAkztPkXkgETrB1HEhR5XjWiog0rH5wy862QpiVBoXytxRJ4B9gZhJLWEWLbJhhU0OyEs4pJXMaYsW153ZGvrfER+Gh8xB/bOOwPFsJDLFEBvpGSvJ81Wi9jKX5Q7oz0Ny2fD+OOlkOWQyAx02TwqkygOTlMcGZdJUL86s3xzlrE7PtiHI/HL+QvbaMLMDZA/og/ujEfrCMoKAilPQhHUDt7rwoqQJku1KHEkNvi5WLVzuaaql+2i/Y0pAlcRMseF2IxQXiIhnlEv748O4Hfjl//evtTGULtszRdLBYjN5MHVKhg3ci6eepmkv/Z7ucRTEtyBJVYcpaiKBRjCg3rNoGvSaqZkhBsl2AfNnAPYn4v9ziubvP7sWWNU1t0n8Dny3NQBZmgZktl5tvQ3Z6ZaDT7ELltQpZrYe5w3fv/E9UEfFNVwj3y7ClAm6APIjQbaeyg3KujZwX753R6AdEFSFsQzKyDUCo/AHESlTKqairMjsfjBCvxEO/ejMct++SOf0cmBuih1sJ01Po2HWWgWvO2S0wZH4SRP6oz1qm5+hb36ZnUk/hdzGiQ4OEOCcZjC7SQdx7uhVYFiCaUjBrlw5rsghDaj/Yi24tsL7KdInu1zfcz63JVFGQ6ej7qTfnuJ09obRdU7HW119VeV7t09fq558eJAa6yYx6Sc9aBlbJxjgpYlEp37vlZesDuhbd/UNxrba+1XVprE6wolJZf22vrO+qIUGKGKb+reUzQk7snx6/7K2ycxgxXUSZtlqar0vrQZqvautCm99yDe+GUyHVkHi9HOQ000VYKXUao7XbxwuZL+ImoGlMIeAuXp1dT+EMEWohlVz6GfOr67fjt+FmvbLrD4+TiHGKGkWwbB8DglpX8rNto/D2O2/aWCykbp8LyirfF8uQkHLlJwxV/JEGP13nn+2iESX9xNlDjr3+nXXf58LpcD1BOH0RVR+nFAcjAqo5yM9sh9YTYjpkbSM7HJMejw23yXZx3GpK2qhrTHaRmDgsVShAbNZC68YFzT1ArSTwbWAc0mL2PK/BPRITDEfcvkmw4P+cqlE0+krZKZdz2+Jlrm6eVUCbtIXx6Mvnw+eO7ycH785PTj1enB4ej8Sg8hK5OzO9KmM044jTKPTOp2hhC7Rpa9e0K9BDSWgtluMJd8KteRNcYRXSb9EK4xtUqF54+O922/PXXhtwSs+vbtW74rk2wJFGQ61R3x3McPInxHEwZls11w/BbQ6I2GXZMpKQ6vGh7u6H/i09XU2ZZP4SrbMF7nFjwgE4sMMMbvEHkaR97iGMm/n6FWph5I+ZsH/3y339FdfDo +api: eJztWE1z2zYQ/Ss7OLVTWpQTJ3V5Ux2ndZsPjy23B9uHJbgSEYMAA4CWNRr+984SpCVHlptDjvKMR6Sw2Lcf70HkrkTAuRfZtbiwmsRtImxNDoOy5qwQmZCOMFC3loiCvHSq5kWRiZNuCRAMLcBZTaMbIxLh6GtDPvxui6XIVkJaE8gEvsS61kp2vtMvnn2shJclVchXYVmTyITNv5AMIhG140iCIs+rBivasPLBKTPfCmlaEhTK1xqXwDvAziCUtI5QtG0iggqanXBWMYmLGLNoW1535GtrfAR+NT7kj20c9gcL9BBLVIBvpCTvZ43Wy1iKH5Q7I/1Ny+fDuKPlkOUQSMw0GbwqE2hOTiRiZl2FIX719mhnLWL2fTGOxuMX8pe20QUYGyB/xB/dmI/WERQUUGkP6AhqZ+9VQQUo04U6lBhyW7xcrNrZXFP1y3bRnoY0gfNo2eNCLCagh2iYR/Tri/cn8NvRm19vfypDqH2WpovFYuRm8oAKFawbWTdP3UzyP9v9PIJpSY6gwiVniUWhGBM1rNsEviapZkpCsF2CfdjAPYj5vdzjuLrN78eWNU5t0X0CVxdnoAoyQc2Wysy3obs9M2w0+8DcNiHLNZo7se79/4lqAr6pKnSPPHsK0CbCBwzNRho7KPf61bOC/XM6PYfoAqQtCGbWQSiVH4A4iUoZVTWVyI7G40RU+BDv3o7HLfvkjn9HJgboodZoOmp9m44yUK152yWmjA9o5I/qjHVqrr7FfXom9SR+FzMaJLjrCIrHFmiUdx7uUasCsAklo0b5sCa7IFD70V5ke5HtRbZTZK+3+f7eulwVBZmOno96U777yUOt7YKKva72utrrapeu3jz3/DgxwFV2zENyzjqwUjbOUQGLUunOPT9LD9i98PYPinut7bW2S2ttIioKpeXX9tr6jjoYSpGJlN/VvEiEJ3dPjl/3V6JxWmRiFWXSZmm6Kq0PbbaqrQttes89uEenMNeRebwc5TTQRFuJuoxQ2+3ihc2X8BOsGlMgHMPF6eUU/sBAC1x25WPIp66Px8fjZ72y6Q6Pk/MziBlGsm0cAINbVvKzbqPx9zhu21supGycCstL3hbLkxM6cpOGK/5Igh6v88730Ugk/cX7gRp//TvtusuH18V6gHL6gFUdpRcHIAOrOsrNbIfUE2I7Zm4gOR+THI8Ot8l3ftZpSNqqakx3kJo5LFQoATdqIHXjA+eeCK0k8WxgHdBg9iGuwD8REQ5H3L9IsuH8nKtQNvlI2iqVcdvjZ65tnlaoTNpD+PRk8vHq07vJwYezk9NPl6cHh6PxKDyErk7M7wrNZhxxGuWemVRtDKF2Da36dgV6CGmtURmucBf8qhfRtYgiuk16IVyL1SpHT1dOty1//bUhtxTZ9e1aN3zXJqIkLMh1qrvjOY44ifEcTBmWzXXD8FtDojYZdkykpDq8aHu7of/zz5dTZlk/hKtswXscLnhAhwuRiRtxIwRP+9hDHDPx9yuh0cwbnLN99Mt//wEycfDn sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -33,7 +33,7 @@ Create a new role. ## Request -

Body

+

Body

The role was created successfully. diff --git a/docs/apis-tools/camunda-api-rest/specifications/create-user.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/create-user.api.mdx index 6725a1a765..c76c57f4bc 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/create-user.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/create-user.api.mdx @@ -5,7 +5,7 @@ description: "Create a new user." sidebar_label: "Create user" hide_title: true hide_table_of_contents: true -api: eJztWUtT4zgQ/isqnXZrTRwYZpbxLcswu+zOg4KwewAObbkTa5AljyQnpFL+71st2SSQBOYwx1CVwla3+vl9stNZcg9Tx7Mbfu3Q8ruEmxoteGn0ecEzLiyCxyBLeIFOWFmTkGf8NIgYMI1z1ji0A55wi98bdP4PUyx4tuTCaI/a0yXUtZIiWE6/ObKw5E6UWAFd+UWNPOMm/4bC84TXluLwEh1Ja3BubmxB10+DGJfIeikzE+ZLfIyls+m8lXrK24STQEOF28300lfN7DbxQ9uxAqm27w+iVwy0CffSK1qitlzGgvOWBFR9abHgmbcNhgVXG+1iFY+GR7szZ3NwLHa7YK4RAp2bNEotBreaJz+rkeTpH1xsD+MeF33ufSBNBF5nVGqP07AwMbYCH5feHW8UJULzskueatMm/Hg43PR7rSFXyLzpXK4qf6s/G4usQA9SOQYWWW3NTBZYMKmDXl9dlpvi5TrV1uQKq9826/U0nBG7iJqdXxbryMCxqJhH7zeXH0/Z++O3v9/9UnpfuyxN5/P5wE7EARbSGzswdpraiaAP6f06YOMSLbIKFixHBkUhyScotuoQczUKOZGC6kEJdmEzqn/M7+X2RunyGWTX2tVYuXGOjNj15TmTBWovJwupp5uuw54JNIpsQG4an+UK9D1f9X3T6XMvrqkqsI8Qe+qgTbjz4Ju1NHbA7c3Rhm0C71/j8QWLJpgwBbKJscyX0vWOKIlKalk1Fc+Oh8OEV/AQ794Nhy3Z9N3B8EommuFDrUAHaD1PR2pWrXAbEpPaedDiZ3XGWDmVz/0OnnCwA/GHmFFPv8PttO8eGUyBuHdsBkoWDBpfktdIH+JmCAKUG+xJtifZnmQ7SfZmE+8fjc1lUaAO8Hzkm3RMG89AKTPHYs+rPa/2vNrNq/fb8B5fnKUvg7WpnKFefY0AZRGKBcMH6bzbvx7uGbZn2G6Gvd327WykGVXZEg7RWmOZEaKxFgs2L6UK5umLau+7e7Ttubbn2p5ru7jWJrxCXxoa79XGBeiAL3nGU3p2OZ5wh3ZGV9nNkjdW8YwvI03aLE2XpXG+zZa1sb5NZ9SDGVhJc5TQMhJHOvUwUUaAKqOrzXaRYH1wdgpVowtgJ+zy7GrM/gSPc1iE8pHLp6ZPhifDrVZJdYfF0cU5ixlGsK0dAL1ZYvJWs1H5Rwy37R0VUjRW+sUVbYvlyREs2lFDFX8EQecvWKf7qMST7uJjD42//xuH7tLhdbkatZ49QFVH6q1GpStkreaeq7Xn991Ucm1OKfXEhBA7JG0mS51H62J1hoPDTdRenAfyCVNVjQ4nsJ7GFyZYK55QjfNx2KmkQBrZZcs+wl7tU5Swf6NHdjigxkd09gfvVPqyyQfCVKmI2x7/58rkaQVSp50Ll56OPl9/+TA6+HR+evbl6uzgcDAc+AcfCkzEqECvxxHng82WUfjanHv7VLzrsscHn9YKpA7TaKtiwwgJNzxy7y7p+HPDl8scHF5b1ba0/L1Bu+DZzd2KbnTXJrxEKNAGst7TbJWfxmgOxuSW1FVD7jcGt23S7xgJgbV/Ufdu7di4+Ho1JnB2U/7KFLTHwpx+AYA5z/gtv+WcfkwgCwH3YX3JFehpA1PSj3bp73/+dXQS +api: eJztWUtT4zgQ/isqnXZrTRxmmFnGtywDu+zOg4KwewAObbkTa5AljyQnpFL+71st2SSQBOYwx1CVwla3+vl9stNZcg9Tx7Mbfu3Q8ruEmxoteGn0ecEzLiyCxyBLeIFOWFmTkGf8JIgYMI1z1ji0A55wi98bdP4PUyx4tuTCaI/a0yXUtZIiWE6/ObKw5E6UWAFd+UWNPOMm/4bC84TXluLwEh1Ja3BubmxB10+DGJfIeikzE+ZLfIyls+m8lXrK24STQEOF28300lfN7DbxQ9uxAqm27w+iVwy0CffSK1qitlzGgvOWBFR9abHgmbcNhgVXG+1iFd8MD3dnzubgWOx2wVwjBDo3aZRaDG41T35WI8nTP7jYHsY9Lvrc+0CaCLzOqNQep2FhYmwFPi69P9ooSoTmZZc81aZN+NFwuOn3WkOukHnTuVxV/lZ/NhZZgR6kcgwsstqamSywYFIHvb66LDfFy3WqrckVVr9t1utpOCN2ETU7vyzWkYFjUTGP3m8uz07Yh6N3v9/9UnpfuyxN5/P5wE7EARbSGzswdpraiaAP6f06YOMSLbIKFixHBkUhyScotuoQczUKOZGC6kEJdmEzqn/M7+X2RunyGWTX2tVYuXGOjNj15TmTBWovJwupp5uuw54JNIpsQG4an+UK9D1f9X3T6XMvrqkqsI8Qe+qgTbjz4Ju1NHbA7e2bDdsE3r/G4wsWTTBhCmQTY5kvpesdURKV1LJqKp4dDYcJr+Ah3r0fDluy6buD4ZVMNMOHWoEO0HqejtSsWuE2JCa186DFz+qMsXIqn/sdPOFgB+KPMaOefjtOn+6RwRSIe8dmoGTBoPEleY30IW6GIEC5wZ5ke5LtSbaTZG838X5mbC6LAnWA5yPfpGPaeAZKmTkWe17tebXn1W5efdiG9/jiLH0ZrE3lDPXqawQoi1AsGD5I593+9XDPsD3DdjPs3bZvZyPNqMqWcIjWGsuMEI21WLB5KVUwT19Ue9/do23PtT3X9lzbxbU24RX60tB4rzYuQAd8yTOe0rPL8YQ7tDO6ym6WvLGKZ3wZadJmabosjfNttqyN9W06ox7MwEqao4SWkTjSqYeJMgJUGV1ttosE64OzE6gaXQA7ZpenV2P2J3icwyKUj1w+NX08PB5utUqqOyyOLs5ZzDCCbe0A6M0Sk7eajco/Yrht76iQorHSL65oWyxPjmDRjhqq+CMIOn/BOt1HJZ50F2c9NP7+bxy6S4fX5WrUevoAVR2ptxqVrpC1mnuu1p7fd1PJtTml1BMTQuyQtJksdR6ti9UZDg43UXtxHsgnTFU1OpzAehpfmGCteEI1zsdhp5ICaWSXLfsIe7VPUcL+jR7Z4YAaH9HZH7xT6csmHwhTpSJue/yfK5OnFUiddi5cejL6fP3l4+jg0/nJ6Zer04PDwXDgH3woMBGjAr0eR5wPNltG4Wtz7u1T8a7LHh98WiuQOkyjrYoNIyTc8Mi9u6Tjzw1fLnNweG1V29Ly9wbtgmc3dyu60V2b8BKhQBvIek+zVX4SozkYk1tSVw253xjctkm/YyQE1v5F3bu1Y+Pi69WYwNlN+StT0B4Lc/oFAOY847f8lnP6MYEsBNyH9SVXoKcNTEk/2qW//wHn3XQR sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -33,7 +33,7 @@ Create a new user. ## Request -

Body

required
+

Body

required
The user was created successfully. diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx new file mode 100644 index 0000000000..ba907e2523 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/delete-group.api.mdx @@ -0,0 +1,52 @@ +--- +id: delete-group +title: "Delete group" +description: "Deletes the group with the given key." +sidebar_label: "Delete group" +hide_title: true +hide_table_of_contents: true +api: eJztV01z2zYQ/SuYPSVTmpRTJ3V509hK6tbNeGy5Pbg6gOBKRAwCDABa1nD43zsLULIsyY0PPfqgofCx+3ax7+GjA88XDvI7+GJN28AsAdOg5V4afVFCDiUq9BgHEyjRCSsbGoUczsOYY75CtqAZbCl9FZvyATW7x1UKCTTc8ho9WgLqQPMaIYdg8QeuIAFJ3hruK0jA4vdWWiwh97bFXchpheSVmfkWqjcshklgTlRYc8g78KuGcKT2uEALCcyNrbmPXZ9OoO9nBOcaox06svgwOqHPPuSQHXcDUMlcKwQ6N2+VWqXQJ3AyOj5sSwmh80xxce/YA1eyZLz1FWovRVhoJiyW1OTKUQrCaI/akzveNGqYlTXWFArrn7458t1tZfocdMyu4kxWoudSMVN8Q+FZiJ4mFlgyqdnd9ecz9uvJx19m7yrvG5dn2XK5TO1cHGEpvbGpsYvMzgX9aN77lE0rtMhqvmIFMl6WkjC5Yo0l2niJjrkGhZxLQWWhGg1hMypH+o+GZF2YGBbxY2P8VLZN+Zy3Ui+2q9dauUfFMbu9vmAyrOJ8JfViHzrYzHmryAcvTOvzQnF9T8Xz0quDoLsorq1rbjf8ew7QJ+A89637Ift+/rDnm6jy23R6xaILJkyJbG4s85V0ayBKopZa1m0N+clolEDNH2Pr02jUk0+q+Csy0QwfG8V1JOBOOlKz2lgc+BMSk9p5rsX/VRlj5ULu4qbQP9UCBhKfx4z6vg8i+2+BbrafYW8JktXGs7lpdfmmrTdtvWnrJW19HI0O8F0zWmVLPERrjWVGiNZaLNmykiq4p3NwjT0cdpGLb1p709qb1va11idQo6/M0/06XJJ9BTlk4ehyWbc+wnq606J9WN+eW6sghy6Kps+zrKuM833eNcb6PnugijxwK3mhIg9pOIprTRplBFeh+1DxaICu6Oukznjd6pKzU3Y9uZmyL9zjksc7L0E+d306Oh0d9EpTX/A4vrpgMcNIva3tYO2WdH3QbZz8Gsfhtu9QtFb61Q2ZxeUpkFu045ZWf0OJAS94p3acBMnw5/OaKL//PQ21lnpugvlQ8/1AqCpoXYx8lB7v8+vqIshEmLpuddgr9SLeaPhWYkK1zlNCCSgpULvA5OFJtZ52GUfYXxGRHadUlMic9Ra5kL5qi1SYOhPRbPMtlCmymkudDRAuOxv/efv1fHx0eXE2+XozOTpOR6l/9CH5xjhfc70VR3wYxlvYbqLd07Hw6gfkUBWPjz5rFJeaeBLS6Qbd3MXnpIME8s3DcpYM5L+Driu4w1ur+p66v7doV5DfzZ60EsRVSkf/S8jnXLnd1+d26O+uh3fqe/bjN+nB+IdOrldBsaqlFiRwj6vt13E/6xOokJdoQ4hxeCwENn7L8MUDlmi/2W3OJ5eT6QT6/l+/9H04 +sidebar_class_name: "delete api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

Delete group

+ + + +Deletes the group with the given key. + +## Request + +

Path Parameters

+ +The group was deleted successfully. + +
+ +The request lacks valid authentication credentials. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +The group with the groupKey was not found. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +An internal error occurred while processing the request. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
diff --git a/docs/apis-tools/camunda-api-rest/specifications/delete-mapping-rule.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/delete-mapping-rule.api.mdx new file mode 100644 index 0000000000..37eb4e5c5f --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/delete-mapping-rule.api.mdx @@ -0,0 +1,55 @@ +--- +id: delete-mapping-rule +title: "Delete a mapping rule" +description: "Deletes the mapping rule with the given key." +sidebar_label: "Delete a mapping rule" +hide_title: true +hide_table_of_contents: true +api: eJztV01v4zYQ/SvEnHZRRXK22W2qm5F427TZRZA47SH1gaJGFjcUqSWpOIag/74YUf520BToMQdDJjWcx9F7jx8teD53kD7AF17XUs+ZbRTCLAJTo+VeGn2VQwo5KvQ4xNxSSAQ5OmFlTTGQwmUf4ZgvkVVbudhC+rLvncsn1OwRlzFEUHPLK/RoCbwFzSuEFIaBf+ISIpCUtua+hAgsfm+kxRxSbxvcx56WSHmZKQ7hvWFh8oTqRIkVh7QFv6wJUGqPc7QQQWFsxX3o+nQGXTcjVFcb7dDRiA+jM3ocIu9Wy92AlzPXCIHOFY1Syxi6CM5Gp8dTUHnoPFNcPDr2xJXMGW98idpL0bPAhMWcmlw5qkQY7VF7SsfrWg1RSW1NprD66Zuj3O1WwbugY3YTIlmOnkvFTPYNhWf97Ckww5xJzR5uP1+wX88+/jJ7V3pfuzRJFotFbAtxgrn0xsbGzhNbCPpR3PuYTUu09FWWLEPG81wSJlestqQpL9ExV6OQhRTEDjE2TJsRK/E/GqIVP2FapJf14A17axadt1LPt0lsrDxQ6Jjd314x2X/FYkmMHUD3YwreKMrBM9P4NFNcPxJ5Xnp1FHQfxTVVxe1ajbsAXQTOc9+4fxXhzx8OcpNUfp9Ob1hIwYTJkRXGMl9KtwKiIiqpZdVUkJ6NRhFU/Dm0Po1GHeUkxl9RiWb4XCuugwD3ypGaVcbioJ++MKmd51r8X8wYK+dyHzeGbsMFDCK+DBV1Xdeb7FU+Xa1KmyWn9642nhWm0fmbyd5M9mayl0z2cTQ6onfN6Ctb0iFaaywzQjTWYs4WpVR9etoQV9jDrhe0+Oa1N6+9ee3Qa10EFfrSbE7h/enZl5BCMmxeJ7SluaTd7GUdHXbRPq3O141VkEIb3NOlSdKWxvkubWtjfZc8ETVP3EqeqSBIeh1ctlKPMoKrvvsYi/SCDvGr6i541eics3N2O7mbst+4xwUPp2CC3E19PjofHc1KoS9kHN9csVBh0ODWurBKSwY/mjYEvyZxfw1wKBor/fKOhoXPkyG3aMcN0bDWxoDXZ6d2CIJo+PN5pZg//p72pEtdmH74QP7hRIgVtC7MfBSfHgrt5qr3izBV1eh+0dTzcLjhW4UJ1ThPBUWgpEDtekkPl65V2HV4w/4KiOw0JlKCclZr5Vz6ssliYapEhGHrZ6ZMllRc6mSAcMnF+Mv918vxyfXVxeTr3eTkNB7F/tn3xdfG+YrrrXmEGyTjOwe1/YrbzUbxX6+cA0sen31SKy416aYvrx0M9QA7hoII0q0b6SwaXPEAbZtxh/dWdR11f2/QLiF9mG1M1Lsul47+55AWXLn9a+t2Ke9uhwvue/bqy+zReoZOrpe9o1VDLYjgEZe79+tu1kVQIs/R9nMNAWMhsPZbQ1/ci8kY64XpcnI9mU6g634AaJKdyw== +sidebar_class_name: "delete api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

Delete a mapping rule

+ + + +Deletes the mapping rule with the given key. + +## Request + +

Path Parameters

+ +The mapping rule was deleted successfully. + +
+ +The request lacks valid authentication credentials. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +The mapping rule with the mappingKey was not found. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
+ +An internal error occurred while processing the request. + +
Schema
    = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx index 2bdc49497e..adb3b9de9e 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-authorizations.api.mdx @@ -5,7 +5,7 @@ description: "Search for authorizations based on given criteria." sidebar_label: "Query authorizations (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWl+T2jgS/yoq3UtS5wGym93N+Y2AJ+F2Blhg9mpvZioRdgPatSVHkofhKL77VUs2tsFMyFbylElVEmO1+u+vW3JLW2rYUlP/lnYzs5KK/48ZLgW992gEOlQ8tT99OgWmwhVZSEVYlVKTOdMQESnIkj+AIKHiBhRnrTtxJ4bSADErZohZcU1ARKnkwhCuCRPklsXpipEFMJMpuH/RDmWSSgHC6DYwFW8uWBiC1m1L5/69yKl1K4leEiYiIqQhINg8dlr0WJKJiJEwzrQBpYnMDJELYlZA5vKxdSdmKyC3Bdkb0h0PyItJMJ29JKMHUA8c1iRlS9SHpVxfGClj3Q4d/QVL+YUCbY5eXMh8ciuJ/vEpA7XBoZckVfKBR6DJIlNmBYpEYBiPtfWP7/tCGkCdvpV7ErYhcyA6m/8JoSFGknDFxBLuBBdkkSExURAD04A6+b5/J6hHZQrKBngQUZ8uuIhqANHUowo+ZaDNWxltqL+loRQGhMFHlqYxDy1h+0+N+NlSHa4gYXY0jkcL6t9uqdmkQH0qrWrUo6lCsYaDtjOkstwOgCiVIQsOcVRCjXoFK6YU21CPcgOJ/hJhluOxNMSKE2YkQYXIfFMRp43iYkl3HpUqAtU83w4RLsh6xcPVnpEpWB/zw+RbsCw2aJEO6W7nvM0VRJirTtl7jxpuYthn52+IOvTPxEWG7u5xJoL5WLMxW3JhQ1Tz49n+UjJpNpeLCB4x42wMrLmGKUO01ZGLJcG5FaO5MLAERT26kCphxr368Qd0a8wT3gAClJOwR55kCRFZMgdVE6jAZEqgy6VAdFtvnCnRqdldmKZwDvYmuXLIkKxFelIpiJkBO4aB/RgzbTAUv7M4A/2R5N7boJ6MpAoeuMx0wUeBTqXQ8BSS6/HY7VV9CwupGgJ8qOvc0jUqu+DqW2u7awTrmC2hBKvXYGPDpNMTjpM6bgwjwqe2ihWWuQm6ngj1ud3T8yr+OKGQXAtQM0vSpBNOLtYqS4o/UlAJ1xqLbpOAU3qeyw9ElmBNuZkGE+rRyegqoB59NxndjKlHr7vj8WD4jnr0ZjgdB73B5SDoVyvPqLAoQD67eyyF+OpX2JwoD9GZFjYn6c+va7CoRePSRqFe/BoJm8BUr7FGZWBfOKTb4P3Q6XwBlBToLLZF5+yF8XRon0bVZws8F86F+MzmuCFC/9cUfRLzf4PV0xobaVg8KGrFgUdxLK/lCTNuyUAhDcv9aYx49KCoNYfOrsQPlqCApZ1n5eMCgm+cWUSDaZEbDW4vm499rBbhj/leAaumICB0hrofrz9n1Pb6+nG28jjtS3W3a91XU/2pQu+S6SAza8m4pzhEDD8BFrsRyEFS/zA5X+nGKv0tC5j3fSwECrTMVAift7OgdN+KTsMVe4CvYXPJWxIWRW0FiaxzJka2iz1p4YXuzez9aDL4b3c2GA1L+z9MbqxbroPptPsOn952Z7331KPd8fhq0CvIp39MZ8E19egsGHaHM+rRfjC+Gv1xHdgf48moF0ynH/rB5WA4yOf0g95gOhgNP0yC324GkwBpT5HU3hYxqkauEplJJQxlcCr2VzKiyJRjdx5E4sxUKmc1g2CaQsgXHPeilZD9zaifxawIcG8SdGcYQPfwoQjJYDiddYe9ysje6ZWhSdDt5/81zbTvMRwfZt3pr8WLJkY3475Twz00MctHquz6wVVgZ7mHYlb5oj/plz8uR5PrI9pSQgUq41q4jjN5EH0eLF0Sc21qmTfou5CUoSDlJwgGJRP8Uwb5hgD3XscAKz61q0tHqW5/NqoP1fZ75brymS1hlXDn0ddftOOzTR+yYDyGqEWupYKi10OYgqIRFFVWZiuLzGW0admmy4mdYqrkPIbkn8c7xkPPjx1lLpe4jCFME0c4d9JvJ5c98q/XP/1y/2JlTKr9dnu9XrfUIryAiBupWlIt22oR4l+ke9kisxUoKJpJLIo4ymQxKdOdaJd+YfFZmattE9HZ95lNYV4hDnsh+9UzU7wBbTeTAeERCMMXm2KrWBNdb6fgntWfx0z8RUssHAs9lKKzJGFqUyyidQH4LW6Yyap4PdljaCqu72ezMXEsSCgjsH1Wu1XLBaERCRfY8KD+607Ho3n7g/o/dzo75IkRP8MSQeAxjVm+nT8whwuSlLi1hnGhDRPh14qMVHzJD+W2at90OYj7zqIiE181Z2K+QyUxC//SuBnmkc1OlBoW7S2wSrBYP/E59pxkz0n23SfZj8d4v5RqzqMIhIXnPt+4tgcvLI7lGqLnvHrOq+e8OpVXPzVtI7vYSzOgEIeglFREhmGmFER4ThRb9ni6V8guWjHPG8XnXHvOtRO5tvNoAmYl8cw6ldpCh5kV9Wm73hxsu282iodo6gGUtu2ETMXUp1uXNju/3d6upDY7f5tKZXbtB4zJA1McLxvYEOKwS68CNrEMWbxyoo/DhwOCJfteXHkLAS8gkHfMwJptrDvT/el3wfpN502nuTWDfeBmjni5wVnowFcpCAVbzOxGto74HMY77NdqCDPFzWaK05x75sAUKPzOroAil2e5429HRL384bKAyr//M7PRxmI2Ka8aBI8sSV0qlsd71XZq7QQKEe/uEdzuz/hLWOaH9u6M/b48KXeH25398XPn4Fj4dusMrh6/4rudTYOFtNbmID32G4IIlHaO7rReHSfEeGDzOpRJkglb3MWSrLlZEVaJQ37DBTM+5iFg28LfUoRXReyVGyG/O4nkVQsx5IBe1PQlN6ts3gplUtxq2f8/j+W8nTAu2rkI3e51r2+G/e7F1aAXDKfBxatWp2Ue3akF5lzCREUP29c/vDL0wt5VeXloeOUOyfN9o+/svlFeHAw8mnYaMy6wXFmYbvMSfkvZ4Q2kvIjfe3khvqXbLcLjRsW7Hb62fqH+7X1Zt/HXzqMrYJFLZfoXFgrac9C7sFUEyePM9jgPT2x3XjGjG4aQmidp7yvr0Xg0xdb/PL8ulcgI5yi2xqtUbE19ekfvqL16ZYquvH2/pTETy8zWJur44p//A+lWvNc= +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. @@ -72,7 +72,7 @@ The matching authorizations. The permissions. -
  • Array [
  • ]
  • ]
  • +
  • Array [
  • ]
  • The authorization search query failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx index b84fee47c5..35d101e3e3 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-decision-definitions.api.mdx @@ -5,7 +5,7 @@ description: "Search for decision definitions based on given criteria." sidebar_label: "Query decision definitions (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-decision-instances.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-decision-instances.api.mdx index 538b3bfcf7..711fd9894d 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-decision-instances.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-decision-instances.api.mdx @@ -5,7 +5,7 @@ description: "Search for decision instances based on given criteria." sidebar_label: "Query decision instances (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. @@ -84,7 +84,7 @@ Pagination information about the search results. The matching decision instances. -
  • Array [
  • ]
  • +
  • Array [
  • ]
  • The decision instance search query failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-decision-requirements.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-decision-requirements.api.mdx index 49aa7db729..690d760e02 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-decision-requirements.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-decision-requirements.api.mdx @@ -5,7 +5,7 @@ description: "Search for decision requirements based on given criteria." sidebar_label: "Query decision requirements (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-flow-node-instances.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-flow-node-instances.api.mdx index 76a380cf05..4a5b506431 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-flow-node-instances.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-flow-node-instances.api.mdx @@ -5,7 +5,7 @@ description: "Search for flow node instances based on given criteria." sidebar_label: "Query flow node instances (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. @@ -56,7 +56,7 @@ Pagination criteria. Flow node instance filter. -
    +
  • Array [
  • ]
  • The Flow node instance search query failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-incidents.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-incidents.api.mdx index 4fb6bad69d..cc16b860db 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-incidents.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-incidents.api.mdx @@ -5,7 +5,7 @@ description: "Search for incidents based on given criteria." sidebar_label: "Query incidents (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -45,7 +45,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. @@ -53,7 +53,7 @@ Pagination criteria. Incident search filter. -
    +
    The incident search result. @@ -65,7 +65,7 @@ Pagination information about the search results. The matching incidents. -
  • Array [
  • ]
  • +
  • Array [
  • ]
  • The incident search query failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-mappings.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-mappings.api.mdx new file mode 100644 index 0000000000..20b97713c7 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/find-mappings.api.mdx @@ -0,0 +1,76 @@ +--- +id: find-mappings +title: "Query mappings" +description: "Search for mapping rules based on given criteria." +sidebar_label: "Query mappings" +hide_title: true +hide_table_of_contents: true +api: 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 +sidebar_class_name: "post api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

    Query mappings

    + + + +Search for mapping rules based on given criteria. + +## Request + +

    Body

    required
      sort object[]
      + +Sort field criteria. + +
    • Array [
    • ]
    • page object
      + +Pagination criteria. + +
      filter object
      + +Mapping search filter. + +
    + +The mapping rule search result. + +
    Schema
      page object
      + +Pagination information about the search results. + +
      items object[]
      + +The matching mapping rules. + +
    • Array [
    • ]
    + +The mapping rule search query failed. More details are provided in the response body. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +The request lacks valid authentication credentials. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +Forbidden. The request is not allowed. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +An internal error occurred while processing the request. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-process-definitions.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-process-definitions.api.mdx index 5f8c735330..afac4fa131 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-process-definitions.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-process-definitions.api.mdx @@ -5,7 +5,7 @@ description: "Search for process definitions based on given criteria." sidebar_label: "Query process definitions (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-process-instances.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-process-instances.api.mdx index d104169914..6e58da0606 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-process-instances.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-process-instances.api.mdx @@ -5,7 +5,7 @@ description: "Search for process instances based on given criteria." sidebar_label: "Query process instances (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. @@ -120,15 +120,7 @@ The parent flow node instance key. integer -
    treePath object
    - -The path of keys to this process instance, separated by '/'. - -
    oneOf
    - -string - -
    startDate object
    +
    startDate object
    The start date. @@ -156,7 +148,11 @@ The tenant ID. string -
    +
  • Array [
  • ]
  • The process instance search query failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx index d0b37938e6..b38ee617d5 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-user-authorizations.api.mdx @@ -5,7 +5,7 @@ description: "Search for user authorizations based on given criteria." sidebar_label: "Query user authorizations (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. @@ -72,7 +72,7 @@ The matching authorizations. The permissions. -
  • Array [
  • ]
  • ]
  • +
  • Array [
  • ]
  • ]
  • The user authorization search query failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx index 52838c9c0d..86e8ab2efa 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-user-task-variables.api.mdx @@ -5,7 +5,7 @@ description: "Search for user task variables based on given criteria." sidebar_label: "Query user task variables (alpha)" hide_title: true hide_table_of_contents: true -api: eJztWd1z2zYS/1d2cC/2HPWRXtpL+eY6yZ2ubeLacvogayYQuRTRgAALgLI1Gv7vNwuQ1BetqL306eKZOB5isZ+/3QUWG+b40rJ4xu4tGnDcfmLziOkSDXdCq0nKYpYJldLylNtPH7gRfCHRsoilaBMjSqJjMbtDbpIcMm2gannBqiWHBbeYglawFCtUkBjh0Ag+fFAP6p12CC7nDlwuLKBKSy2UA2GBK5hxWeYcMuSuMji/GCW6KLVC5ewIuZHrAU8StHbk6cLvQUNth0V6CVyloLQDVKSL1+KaF5VKOSSysg6NBV050Bm4HGGhn4YPapojzFqyV3B1M4GL2zd300t4v0KzEvgIJV+SPrwUduC0lnaUBPoBL8XAoHVHHwa62Tws0r/9XqFZ09IllEavRIoWssq4HA2k6LiQ1vsnjmOlHZJOf5V7Cr6GBYKtFr9h4sBpSHKulvighIKsImIwKJFbJJ3iOH5QLGIlN7xAciCLZxumeIEsZlUDlh9xzSImCB0ldzmLmMHfK2EwZbEzFR5CiFz+CddtHDoYDVnEbJJjwVm8YW5dkhChHC7RsIhl2hTchU/fvWR1PQ+C0LofdLqmPVu5GZcWI5Zo5VA5WuNlKUXi4T76zZIimx1pXMr3mTeukau9h8h2Q2niBFq/QxvP7SAptHGQCZTpFvEsallxY7j3kMPC/hFhnuOxNPJfEOY0kEKwWO+Is84ItWR1xLRJ0fTv90sgFDzmIsk7Rq5lfcyPopjxSlIEuE1YXe/GedYoO4+YE05iVyl+IfCTf25DqFg9p52UU8ea3fClUD5Ee348219GF/3mCpXiEwHOx8Cb67hxYL2OQi2B9u4Y3Q+7f3xDbpWiED0gIDkFfxJFVYCqigWaPYEGXWUUuVwrSjLvjTMlBjWvMtcXzklnUijNnMiGcK2NQckd+jUK7EfJraNQfOCyQvsRGu/5TORQGlwJXdmWj0FbamXxFJL341F3qv6AmTY9AT7UdeHpepXNhPmrta17wXrDl7gFa9RjY8+m3Q37Jncdt9XUt4MeAHSgbtkfNuM+cXVIw2C7N/Kb8bgfm33t+tB5vtp/8aL52WQXKmCe/uYL6tEEga1ylXR2vxD8z6xOa+y043LS4ubAl7TW5HXBXSgfJKSn9D/fvSJ2APD+oPmqvPIEbb/0+7x8Kib0JZgFFt0Q7i2G41Wz9nE3IT82fYMySAEqW5Hux1A8I8/3a8nZytO2P6q7r3tfTPVTSR+yoGlRvVneURymeZukh1l+VJWeQZx4Bmy+qTQg6/L2lL2n1WoV8jH4vFatRDri9epG5zi6C/iwtdRnJkA4Rh5yfccLDGjp57g93nhk9ZksqzM5ZJWUH/q5vK2kDNg9j5VNdHnaTU0GeMJTPE+5rDSaDvkTZR1XyVnymi0gmj1/VrRDxZWb9J1H/QpMXp/nKWGnplIJd9jD69cc/b2INA/eFxZcSw/a0A1vh+1Ca4lc7bXlFvNUv/cTvreTtintKV/+ie4ZUj3jQmI6hJ+1wfZaB9xge+dLdypeSMGFTtcnO25p9EJi8ffjzruv3xXcBMpGLoRsBm4hEC6C9Nnt22v4/uW3/5xf5M6VNh6NHh8fhyZLBpgKp81Qm+XIZAn9I7rLIUxzNNjeG3maCpLJJWzrBNgSE5GJpD26NWoDhSjY95lm61c3R/eNDoOVEUdziCu4v52ASFE5ka3bFrwnev/KQmeBeCG5+sS2iDgWeijFVkXBzW427QigvHfcVbuN5tlzfN81+N/T6Q0EFpDoFLe1tBFERhRC0aWCxS/H44g1VwwWfzce18STIn6GJQrwqZS8OSYdmCMUFFvcesPaevGFIqONWIpDucO9vG1A/DpYFPLx2758vKJjnkNDOERjtAGdJJUxmNJ1VnY1r5XdnhK+5trXXPuaa8/kWh2xAl2uaRRcauuhQ9O8mI2o9w2o99nRZmfoV49WO2Nii2bVDggrI1nMNiGH6ng02uTaujrelNq4erSiAG33xhtGyyHXWgxJnXCZBz2OY0kLqjsoImwHuDS7hX9xh4987X1bdhO7lvWr8atxL1cifYYjzYWDhQGJO9WhZUtp3ss2EJ/D2M80LSaVEW59R9uCexbIDZqrisLRIaSR57n7o5AnYlHzx9sWN//5depDT5XtdjsvffPEizLkZRhqzrqB4xZ8zQQxDPzm27FdmLSNu1nY+GBGNdsES3ZnQfSt9mDPtDejgeKxQwgdaGzw4Hj44hj2NxOfvYkuikr5Eq6W8ChcDnzHwc3Un/JaigTplBd30+uW7KewAh+CRHgxJHAEBLeVeylcXi2GiS7aSX/3/0LqxajgQo0aEXZ0ffXz/bvXV4OfJtdv3t29GbwYjofuKVybKbMKrnb08KfQ3uPlhR/iXx5av9m2sK+vMf+PrzFN/jt8cqNScqGoInnAbpqSPWPbks0iFu+/1Gwr7zxqKu+MbTYElnsj65o+ey+xeDbfkoe5m7A+nN0Ly7PQvLhtHgcu4dSDT68x7WxDBXX9BZ2xiH2i++7eu1M9ryOWI09D1WkoroMWgynx2XI4mmbWUbvjKkmwdCdp5zsN8ub93ZQqbfPuVOiU9hj+SI9f/JHF7IE9kMbae8YXcf99wyRXy8qXURb40s9/AVKEWoE= +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -29,7 +29,7 @@ import TabItem from "@theme/TabItem"; Search for user task variables based on given criteria. @@ -48,7 +48,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-user-tasks.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-user-tasks.api.mdx index 448146f37b..810eedcaae 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-user-tasks.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-user-tasks.api.mdx @@ -5,7 +5,7 @@ description: "Search for user tasks based on given criteria." sidebar_label: "Query user tasks (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -45,7 +45,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. @@ -85,9 +85,13 @@ The candidate user for this user task. string -
    variables object[]
    +
    processInstanceVariables object[]
    -Variables associated with the user task. +Process Instance variables associated with the user task. + +
  • Array [
  • ]
  • localVariables object[]
    + +Local variables associated with the user task.
  • Array [
  • ]
  • @@ -101,11 +105,11 @@ Pagination information about the search results. The matching user tasks. -
  • Array [
  • customHeaders object
    +
  • Array [
  • customHeaders object
    Custom headers for the user task. -
  • ]
  • +
  • ]
  • The user task search query failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-users.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-users.api.mdx index 3c0e52b3a1..0c95d69750 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-users.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-users.api.mdx @@ -5,7 +5,7 @@ description: "Search for users based on given criteria." sidebar_label: "Query users (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -45,7 +45,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. diff --git a/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx index 6146a0b84c..c6fa6ea918 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/find-variables.api.mdx @@ -5,7 +5,7 @@ description: "Search for process and local variables based on given criteria." sidebar_label: "Query variables (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: eJztW19z2zYS/yoYXB/iOVlS0rSX45vjOD330sQXO+mD7JmsyKWIGgQYAJSs0ei73yxAipREyerVmZveKTNJbGKxu9jd3+LPAgvuYGJ5NOKfwQgYS+R3Pa4LNOCEVpcJj3gqVFK3Wt7jCdrYiILaecSvEUycsVQbVhgdo7UMVMKkjkGyad2NjcFiwrRiEzFFxWIjHBoB/Vt1q95rh8xl4JjLhGWokkIL5ZggVmwEssiApQiuNHj3bBDrvNAKlbMDBCPnpxCT2IGnC/+eVtS2nycnXh+lHUNFungtziEvVQIslqV1aCzTpWM6ZS5DNtYP/Vt1kyEb1WSv2NnVJXv28eL65oR9mKKZCpyxAiakDxTCnjqtpR3Egf4UCnFq0LqtD6e66tzPk798LdHMqemETDcVCVqWlsZlaFiCDoS03j5RFCntkHT6VubJYc7GyGw5/g1jx5xmcQZqgrdKKJaWRMwMSgSLpFMURbeK97jBryVa91oncx4t/K/CYMKjFKTFHo+1cqgctUFRSBH7qBr8Zil0FtzGGebgW6X8kPJotOBuXiCPuPaK8B4vDEWjE2h9D208t40Y1MaxVKBMmsDivZoVGANz3uPCYW5/jzDPcVsaRUYQ5jQjhdh43hJnnRFqwpc9rk2Cpru/b2JCsVkm4mzFiMLPoASHSRBBfFGVOSH07Pqc9/ibi+tzwmiCKZTS8aj67oSTWNniA3G/oG7LZa/llVE1pLsWuYfvvygSqefH4FC+vKOeFODb+l/BRCjvyDVrH2xVo/NuowiV4AOh0HvKG8WBccx6HYWaMOrbMrVQDidoeI+n2uTgwqfvX5DxpchFR6iQnBweRF7mTJX5GM2aQIOuNIocoxW5wlvjQIlBzbPUdTn9cjWkkC+ByPrsXJvgb99G7v8iwTpyxWeQJdovrLLenPQEVhicCl3amo9BW2hlcV+8r/tjuVL1NabadDh4U9exp+tUNhXmW2u77AzWK5hgE6y9jjF2dGp3WB9yPb/VivrU3OH/nZlCdnqdom26wTrQ2nXI7NAm0B6uRy3rnzjvVuYe536q9hNtTb1PlXdaTRqnzoTLWFpKySCZgooxqUcVQwFjIQVp0qWnVrieHbqR9ONLvuxt6nBWy5KkzDNPdlLZZp/ur8GKuNF0R+/9Fv0Ov25b8jzD+N56Q+LXEqSoTUOYqKbyhE0JEo/mDj9i/p16RI5QTyUJH4R1dqcwERZBcWkMKte4PnRrCRlrLRGU5ynUY/xWfHJwcYa0dJnXC671cdgDksPuAbaR7/1PAfw2wJMi6xFvTzqmjJ8MAqHQZaAYra7ACKvVH/XDxHWk3jVZdXg9oVDZMb53evb0o5Ndo2tJeuqxLZetRU2dMNq+bzU3n6+qqKT1To8ryDuUfg851pF6SMa89uu/b5IzV0vLnRkyUPw3sluz7H3aXNbi+7+QuerheIyI+454e0T6mljiUFnsVl2XRaENbR1mQiYxmIQ2cQZiv8FNsEDl977eSFqlYlKaVjBKgcr1/bZuW9dNZIUg78BWu2EdXV7NXUskWR4xdsTYEWN/EGM21sX+xX9lVE8YfjluBI4bgT8t1I8bgeNG4Ok3AlUh41JZR90PSah17UNUfY659Zhbj7n1mFuPuXUjtzpUoNxlV13Nt7DLN525c2urIuyNKVVMtbJtXr9m6MuobrW7FJa5mp4Mo7TrwlkrsutT+DCK9crYJk1XkWEZim+h4uEj/8VweFiNwKAtZbVRePIa6qNVPaGC4+lnGFNl3G8Z2qrtLV/8B6z2a+y0A3lZp6cN81FbVcDzaY/25j65bleC94Fpo5LV7SdfpA0JtM6rvp+XT1XDUMClYTGLrs8+WQyhXLV9aVfevlRlZCqVKYbKlqT7drHngILeetHwYOWp2+/V3Rc4n0z1fdW9gJwNxK0hbUVxaD1vq/y4I+LEjmDz1eMqyFaXW/aNd79atULeB9+yvHcAAB47/X4sH+843/vcnO09xoHWvJ+7ubyl5fD0cFZPcBBygMm+1T7hANF/vmmU8vc64DsnzxrSnvLlrgmztKQV2Pt1gKcgJCZ99os2WF+hYmBai50mzwXgjXUy3zvPFkaPJeZ/3Z5vN/ZP7CpQVnJZwDADOhYkwnGQPvr49pz9/eUPf7t7ljlX2GgwmM1mfZPGp5gIp01fm8nApDH9JbqTPrvJ0GB9RwuSRJBMkKzJDswWGItUxPXNjEptRo5ZO3DcNcX61s0j1FbklUZs3f07Y58+XjKRoHIindcT75po3r6p5FcA0ViCuudNHGwL3ZRiyzwH08ZQSwCh3YErH9+6fP9iizfF0j9ubq5YYMFinWCTQStBNIhcKLozxKOXw2GPVzeIePTjcLgknuTxA0aiGD4UEqrF0cZwhGJ5E7d+YHWWeCLPaCMmYlNufw2tVRC/CSOqUfi8G4XVfM8k0CZ0ClIkDEqXkdS4viGGXgmQfpo8guwIsiPIukH2fceyR5uxSBJUPjxXeBPW32cGKfUMkyOujrg64moXrn7oWkKe0cmEQ0NxiMZow3TsD2MTupAtV8v0Wna9sT0uFI9YO2JtB9aWPZ6jyzS9GSq09aEDLuMRH6yOSgZhu8bpCrqZorH++LA0kkd8ERCzjAaDRaatW0YLumuxHEzJHSsWNERqDsiqI8a/N8qC1G3PUYNq3eNr3vXQkx72Ezicwdxbsli9MKlZvxq+GnZyJdIdHOm5UBhhiLtWLqjZEqg72QbiQxj783iLcWmEm19Tt2CeMYJBc1aS8VfxUMnz3P1e3RPxXvXD2zpKfv71xjua8tjH5n3PxQPkRUBhc9t97UBqWJ8hNaFXnQk1H5pzmWH38cmwfbTR9Fs7pXCmRDKq99Ro9U5ndahx17xcCY9NhqvnIMONZxqjRTBh+zkEfVt6TKXa26+K+G1P0AjR2OC6Yf/5NrquLn2SiHWel8rPFGoSSjDQ8mz1Co3ShxQx0vlHtKiNWZO9Cy3sc5DInvcpKgN06gliIlxWjvuxzuuXZ6v/x1KPBzkINahE2MH52S+f3r85O313eX7x/vri9Hl/2HcP4UCZAJyDaunhz2daL/qe+adkJ5tjXjTz4/Ft4P/z28Aq7Th8cINCgvBFbB+ui2peGLWSeg1CepsWsvuILxYUGZ+MXC7pszcJj0Z3zWRAvy17PENIApr5PSURfh5C8PSGdGjS0Fb9jIrVocdZHGPh9tLetea3qw/XN5Q6q4ePuU6oj4EZPYqEGY/4Lb/ldCXDw8JnZf99wSWoSenTEw986c+/AV4CwwM= sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -45,7 +45,7 @@ in future releases. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-authentication.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-authentication.api.mdx new file mode 100644 index 0000000000..e98b53d34c --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/get-authentication.api.mdx @@ -0,0 +1,56 @@ +--- +id: get-authentication +title: "Get current user" +description: "Retrieves the current authenticated user." +sidebar_label: "Get current user" +hide_title: true +hide_table_of_contents: true +api: eJztV0tz2zYQ/is7OLVTRZRTN3V50zhO6tbNeBy5Pbg+gOCKRIwHA4C2VY3+e2cBSqRebZL2mINHJh7ft49vgcWSBV55lt+xaRtqNEEKHqQ17H7EbIMuflyWLGcVhp0lI1aiF0428StnNxicxEf0EGoE0TqHJgDvN2EJrUc3ZiPm0DfWePQsX7KXkwn9bKPNBhi0C6QH3wqB3s9bpRbgMLTOYElwwpqAJhAKbxrVWZh98AS1ZF7UqDn9FxYNspzZ4gOKwEasceRlkMkQ4iFnD9ly+RrsPHq29qHD8sFJU7HVKG7/FReH9/uFD6ihQkNRxRIecLFGvPXoekBpAlZxYG6d5iENvTolilL6RvHFO67xME23AAzXeBi+t5dSY538C8tpHzR/GHcQVr8BpZz0IBAsxaZn4s7xBRsxGVD7QfTXFqxGLKDhJhzh7Ca36UCjLtCBnf870ZE0J9yU6L2gmC60u7aStZWzbXPE2DQH3HtZmRSMtVg+KyLOKjxCEaf+O4PnCv214mYWpw4xNYqbodwPqUecXUnzcMRURVNrC4XVjTVIqZQmjpyfgQ9cPHxxCo9kacSI+Fj6BDdXtrJt2Lf5jeIVzK2D1pTofOCmlKYC2Ycgiq9QSE416Kg0QSW0jROFtQq5ibXVyFh2X8pkYHp9uRP7DTwVjgyKxs65bk3JI1fy8nRyckQ++LFFH0Bx8eDhkStZDk9naQ0IhyV9cuX/4VhtnC0U6u/2j9dt0ilcp5VQYuBSQUomcA9pYYElKeLu5s05/HT6w4/339QhND7Psqenp7GbixdYymDd2Loqc3NBf7Tu2zHManQImi+gQOBlKYmTK+hlAr5BIedSrGXYmQ0UzfGfpo/rsWOiK49tKQ1O5dbJvUtwCrc3lyBjFOcLyuweddwz560iDF7YNuSF4uaB9WndJ91l8a3W3G1ukG0CKvLAQzsspMO3yvcv97BJKj/PZteQIEDYEqNgQy39moic0NJI3WqWn04mI6b5c/p6NZnQRRUz/gmeGMBnOm6SAHfckQa0ddjpJzomDdWM+L8yY52s5C7veKvEOhG/Th6lIvvhUMsyNUBRdqRDdM46sCK2MCU81VJFeOpf1txdQSYtfq21r7X2tdb2a201YhpDbbs3CCmHh5rlLNu+uzJNnadH94iOHjRL1jrFcrZMFbPKs2xZWx9W+bKxLqyyR0rHI3eSbvWYPZpOlbVWjLKCqzh8KHM0Meyzu7sYzuDm4v0M3vKAT3wRI0mU29Bnk7PJQVRaegSRWoLkYdLd4CxYw1JRH4RNiz8FeLW6p0CK1smweE/bUngK5A4dPQIHeuj4InrsUeIiNur+ebNWyS9/zGKipZnbuH27fxkYQllB55Plk/HJvriuL2ONCKt1a2L6TQVPMtTAB44J1fqQXmpKCjQe+8ZxQ3uVZuD3xAgnY0pKUs76fKxkqNtiLKzORNq2+S2ULTLNpck6Cp+dT3+7ffd6+uLq8vzi3fuLFyfjyTg8h+h8Y33Q3AzseIth65W76+yyvxc+633dZSfgc8gaxWXsSaNby65+7hjffc5rpGd/qoI7tlwW3OOtU6sVDX9s0S1YfnffFw19rUasRl5Sp3u3ZA/0+mVTIbAJsbpUG5v73Tc5KWxT1W8vSBp/A8rKuGI= +sidebar_class_name: "get api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

    Get current user

    + + + +Retrieves the current authenticated user. + +## Request + +
    + +The current user is successfully returned. + +
    Schema
      tenants object[]
      + +The tenants the User is a member of + +
    • Array [
    • ]
    • c8Links object[]
      + +The links to the components in the C8 stack + +
    • Array [
    • ]
    + +The request lacks valid authentication credentials. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +An internal error occurred while processing the request. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-decision-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-decision-instance.api.mdx index 047899aa9b..447f5aab51 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-decision-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-decision-instance.api.mdx @@ -60,7 +60,7 @@ The matched rules of the decision instance. The evaluated decision outputs. -
  • Array [
  • ]
  • ]
  • +
  • Array [
  • ]
  • ]
  • The decision instance request failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx index e96f253323..65adbb2c91 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-flow-node-instance.api.mdx @@ -5,7 +5,7 @@ description: "Returns flow node instance as JSON." sidebar_label: "Get flow node instance (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. The flow node instance is successfully returned. -
    Schema
    +
    Schema
    The flow node instance request failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-group.api.mdx new file mode 100644 index 0000000000..0f2a5dd8cd --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/get-group.api.mdx @@ -0,0 +1,56 @@ +--- +id: get-group +title: "Get group" +description: "Get a group by its key." +sidebar_label: "Get group" +hide_title: true +hide_table_of_contents: true +api: eJztWE1z2zYQ/Ss7OCVTRpQTJ0150ziO6+ZjPI7dHlwfQHAlIgYBBlha5mj43ztLkLJqyXYOvVUHDUUCePv1HkDuSpBcBJFdiRPvmlpcJ8LV6CVpZ08LkYkFUhxJRIFBeV3zkMjECRJIWPAY5C1oCnCD7eRvKxJRSy8rJPSMvBJWVshQPPcTtiIRmhFqSaVIhMcfjfZYiIx8gw/NXJQ4GGF0kYigSqykyFaC2pphtSVcoBeJmDtfSYqP3h2Krrtm9FA7GzDwitfTKV8es6ADhEYpDGHeGNOCR2q8xYLNKmcJLfFyWddGqz5F6ffAGKsNrx5kqQcOKL0qYfQFNGHFoEMELv+OijhvnpNPOnq7zteuWJ/J0sNUJEMR1kiBvLaLJ4B4/oQXyhD0wmLxBasc/SdswwaM9F62O1ECErg5+xP4WvWrA4xoQA5oNMYec07Cz5W1SwRpMjjm95Sw4sddIg6nB7srzCzDQGCkuglwK40uQDZUoqWhlqA8FnwrTXii4rV3ucHql+cqP4OzOBMKJKkNxCqDDBAn5liAtnB1/vEIfjt8++v1i5KoDlmaLpfLiZ+rV1hocn7i/CL1c8U/nvdyAhcleoRKtpAjyKLQbFMauOcPhBqVnms15nlwGzi7UaRPky+ObtNlXYzG6626z+Dy/BR0n8V5q+1i23S/Zi4bwxgydw1luZH2RtwX9TmOziA0VSV9y7zaNtAlIpCk5nkyvXm9k7m/X1ycQYQA5QqEufNApQ6jIQ6i0lZXTSWyw+k0EZW8i3fvptOOMbniPxGJBbyrjbSRgA/C0RYq53HgTx+YtoGkVf9VZZzXC/3Q7kRsCmwg8YcY0SiyN9t8/+h8rosCbU/Ptd50AOsIpDFu+eROutfVXlf/e10dPvV6stRUxjNT36LlkxWWMspr7hq7F9deXHtxPSqut7ve/WcWOMueeYjeOw9OqcZ7LGBZatPD8/fAaHs41SIX91rba22vtW2tdYmokEo3tA/6fgCVIhNpf46FdDV+2Xb8PY/+dmwUNN6ITKyiYrosTVelC9Rlq9p56tJbLset9FrmJpKQh6OyRsYYp6TpH++qHA/wh+0Y0ZGsGltIeA/nx98u4EQSLmXbZ5JN/hv6/fT9dCcqT30EcXZ2CjHCyLuNvWCEZVHv/oLuJ/8McN/pCKgar6n9xstienKUHv2s4eyv+TDY69H5Pk4SyfDn48iSP/666Aut7dz1y4eCbzvCVUEfoufTycE2uc5Oe40oV1WN7TdKu4jvM3IjMGWaQBxQIoxWaENP46F7NE77HEfgz2gRDiZclMiccX9caCqbfKJclaq4bH3NjcvTSmqbDiZCejT7cvn1w+zV59Oj46/fjl8dTKYTuqM++NoFqqTd8IP7XotdHbHV/YHwZHNsKAPhHaW1kdoyMXr/V4NQrmLrJ4hEZOsm0HUysP1KrFa5DHjpTdfx4x8N+lZkV9f34ujVVOjA/wuRzaUJDztrm+6+OB96cC9hq5O0092x+2PbXpGm4TuRiBvuVt03rrrrLhElygJ971EcnimFNW0s3GqoMZ3XW8jJMfPwH24DGmg= +sidebar_class_name: "get api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

    Get group

    + + + +Get a group by its key. + +## Request + +

    Path Parameters

    + +The group is successfully returned. + +
    Schema
    + +The request lacks valid authentication credentials. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +Forbidden. The request is not allowed. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +The group with the given key was not found. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +An internal error occurred while processing the request. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-incident.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-incident.api.mdx index 7b3afbc717..6521055295 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-incident.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-incident.api.mdx @@ -5,7 +5,7 @@ description: "Returns incident as JSON." sidebar_label: "Get incident (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. The incident is successfully returned. -
    Schema
    +
    Schema
    The incident request failed. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-license.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-license.api.mdx index ea6d1e2875..a1115167a8 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-license.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-license.api.mdx @@ -37,7 +37,7 @@ Obtains the status of the current Camunda license Obtains the current status of the Camunda license -
    Schema
    +
    Schema
    An internal error occurred while processing the request. diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-process-instance.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-process-instance.api.mdx index f6a66b8c97..44e96213f2 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-process-instance.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-process-instance.api.mdx @@ -5,7 +5,7 @@ description: "Get the process instance by the process instance key." sidebar_label: "Get process instance (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,7 +48,7 @@ in future releases. The process instance is successfully returned. -
    Schema
    +
    Schema
    The provided data is not valid. diff --git a/docs/apis-tools/camunda-api-rest/specifications/get-user-task.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/get-user-task.api.mdx index 11fb14b29a..641fe1f747 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/get-user-task.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/get-user-task.api.mdx @@ -5,7 +5,7 @@ description: "Get the user task by the user task key." sidebar_label: "Get user task (alpha)" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -48,11 +48,11 @@ in future releases. The user task is successfully returned. -
    Schema
      customHeaders object
      +
      Schema
        customHeaders object
        Custom headers for the user task. -
      +
    The provided data is not valid. More details are provided in the response body. diff --git a/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx new file mode 100644 index 0000000000..73e4cd9c8e --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/remove-group-from-tenant.api.mdx @@ -0,0 +1,59 @@ +--- +id: remove-group-from-tenant +title: "Remove a group from a tenant" +description: "Removes a single group from a specified tenant without deleting the group." +sidebar_label: "Remove a group from a tenant" +hide_title: true +hide_table_of_contents: true +api: eJztWE1z2zYQ/Ss7OCVTRlQSJ0150zh26jbxeBy5Pbg+gORKRAICDLC0rOHwv3cWIGXZUtJ0xkcdNBTB/d73QGI7QXLpRXYt5mikIXGTCNugk6SsOStFJhzW9hY/ONs2p87Wg1giSvSFUw3LiUxcBikPErwyS42wZAVYOFvzWoOFWigsgYI6rBRVtiUoUSMpswSqBpWJSEQjnayR0HFgnTCyRpGJqPonrkUiFPtsJFUiEQ6/tcphKTJyLT4ObF4htEZ9axFUiYY4DAd2ETxGk+zSFxXWUmSdoHXD3pQhXKITiVhYV0uKS2+PRN8nm5BCxE8a0aYG/yegG3bpG2s8etZ4NX3Fl123sSkr6cG3RYHeL1qt1xBbXMZubdelT8TRdLrfVuPsrSqxhFKSBOXBWIJbqVXJ4RfWEBpiVdk0WhUBUGnjbK6x/uWLZzvdVpYPHczgIkpCiSSVBpt/wYJAeoiCOZagDFxfnh7Db0dvfr15VhE1PkvT1Wo1cYviBZaKrJtYt0zdouAfyz2fwLxCh1DLNeQIsiwV+5SaE2rQkUI/4rUAsqEeQ9jArZj8Y0QyNiWGxZDdKN+3bNM6T06Z5XbnWqd2KDSDq8uzERLrkRQPXAedhWw125C5bSnLtTRfuVGkSO91+tiLb+tauvWIuIcO+kR4ktT6/0Te61c7thkWv8/nFxBNQGFLhIV1QJXyoyNOolZG1W0tsqPpNBG1vIt3b6fTnm1yx38iEwN412hpArQep6MM1NbhgJ+QmDKepCmeqjPWqaV67HfC+8PYCzGA+H3MqO/7QKjXu3g/tS5XZYkmwBN4A0FPI6uk1naFB14deHXg1Q94dbSL93NLsLCtKSOvhq8P67behGYjcqDXgV4Hen2HXm/2fQfODHCVHeMQnbMObFG0zmEJq0rpYJ4/M0ffw3stYvHAtQPXDlzb5VqfiBqpsnz4DudjDEdiqkQm0vgG82m3OQ33aXiX+bQbT6M9Hx/R3Y7n59ZpkYkuEqnP0rSrrKc+6xrrqE9vuUu30imZ64hNfhwJNwJJ20LqsLyvofyAT8Rjoseybk0p4R1cnnyewwdJuJLrUGB2+dD0u+m76V6rLPodi7OLM4gZRjhubRGjWeb6XrNR+GcMh4O1x6J1itafWS2WJ0fp0M1a7sgGJoO/YJ3vo5BIhj+nI3j++Hse+q/Mwgb1AQe7gXBX0PkY+XTychdzF2eBOoWt69aE/dMsw2gF5FZihW49cUKJ0KpA4wO6hwnGKPYxPoG/okd4OeGmROSM2+ZSUdXmk8LWaRHVNtdc2zytpTLp4MKnx7NPV+fvZy8+nh2fnH8+efFyMp3QHYXkG+uplmYrjjg/AvlwbkR7h03d/avjaedOQysJ7yhttFSGwRVq0A0EvB6mUF4kItseSEUO8upmJnSTDES6Fl2XS49XTvc9L39r0a1Fdn1zz7tA1FJ5/l+KbCG1fzw42k772eUwYnoOPzng2pvbsCjNOmwBuuU7kYivuH4wcOOR19MH9+O6/zi2TZX7mz4RFcoSXahhfDwrCmxoS/G7XxjM8c12+/7k48n8RPT9v0pURKI= +sidebar_class_name: "delete api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

    Remove a group from a tenant

    + + + +Removes a single group from a specified tenant without deleting the group. + +## Request + +

    Path Parameters

    + +The group was successfully removed from the tenant. + +
    + +The provided data is not valid. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +Forbidden. The request is not allowed. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +Not found. The tenant or group was not found. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +An internal error occurred while processing the request. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    diff --git a/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx new file mode 100644 index 0000000000..c800f40415 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant.api.mdx @@ -0,0 +1,59 @@ +--- +id: remove-mapping-rule-from-tenant +title: "Remove a mapping rule from a tenant" +description: "Removes a single mapping rule from a specified tenant without deleting the rule." +sidebar_label: "Remove a mapping rule from a tenant" +hide_title: true +hide_table_of_contents: true +api: eJztWEtz2zYQ/is7OCVTWlQSJ0150zh26zbJeBylPbg+gMRKRAICDB6WNRz+984CpCxZSpt20psOGorkvvf7AGI75vnSseKGzVFz7dltxkyLlntp9KVgBbPYmDt8x9tW6uV1UHhhTTMIZ0ygq6xsSZoV7DrKOuDgpF4qhCapgQ0KYWFNQ69arORCogAfrcBK+toEDwIVepL2NUaNCctYyy1v0KOlIDumeYOsYEnzN1yzjEny3HJfs4xZ/BKkRcEKbwM+Dm9eIwQtvwQEKVB7isKCWUSHySS5dFWNDWdFx/y6JW9Se1yiZRlbGNtwnx69OmV9n21CGlL9rjFtl+/fRnZLnl1rtENHGs+nz+my732nRyvuwIWqQucWQak1pPaL1LztOvUZO51OD5tsrbmTAgUI7jlIB9p4uONKCsqiMtqj9qTK21bJKoItb60pFTY/fHJkp9tKdtfBDK6SJAj0XCow5SesPHAHSbBEAVLDzfXFGfx0+vLH2ye1960r8ny1Wk3sojpBIb2xE2OXuV1U9CO5pxOY12ipImsoEbgQknxyRQm1aL1EN8K3Am9iPYawgToy+VOzbOxNCosgvFF+6Nymg85bqZfbDQxW7hFrBh+vL0eArEeO7LiOOgseFNngpQm+KBXXn6lRXnp10OljLy40DbfrEX+7DvqMOc99cP8IwBfP92wTLH6Zz68gmYDKCISFseBr6UZHlEQjtWxCw4rT6TRjDb9Pd6+m055sUse/IRMNeN8qriO0HqcjNTTG4oCfmJjUznNdfa/OGCuX8rHfCa0XYy/YAOI3KaO+7yOhXuzj/cLYUgqBOsITaDlB50dWcaXMCo+8OvLqyKu/4dXpPt7fGw8LE7RIvBo+Rozd3xD1RvLIsiPLjiz7CsteHvocnGmgKlvCIVprLJiqCtaigFUtVTRPX5ub7/60vSUsHrl25NqRa/tc6zPWoK8Nnc/jqRnjSdnXrGB52shc3m0OyX0+bGkntKW5vHs4q/Z0qkR7N56vg1WsYF1iVF/keVcb5/uia431fX5H7brjVvJSJZDS68S8EVHKVFzFx4c6Sy/oxDxmfMaboAWH13B9/mEOP3OPK76OlSaXu6ZfT19PD1ol0a9YnF1dQsow4XJrrRjNEukPmk3C32I4nrcdVsFKv/5Aaqk8JXKLdhaoNRu8DP6idbpPQiwb/lyMKPr1j3kEgtQLE9UHQOwHQl1B61Lk08mzffBdXUYOVaZpgo4LqV7GyQvwrcQqFZynhDKmZIXaRZgPE45R7G16A78nj/BsQk1JyBnXz6X0dSgnlWnyKqltrqUyZd5wqfPBhcvPZu8+vn8zO3l7eXb+/sP5ybPJdOLvfUy+Nc43XG/FkaZMwA9Ol/zByVT3sJX8H0Oqoa8e733eKi41IS0WpBtoeTOMrBzLWLE9vdphJr3cmiPdZgO9bljXldzhR6v6nh5/CWjXrLi5fWBjpK+Qjv4LViy4co+HTdtVeHI9jKWewjeOxQ4mOTzkeh0XBhXojmXsM653xnQ0KPv+wT2ej/2HELfK3d/2GauRC7SxmElgVlXY+i3Vr36J0BKwWZbfnL89n5+zvv8LKRtgdA== +sidebar_class_name: "delete api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

    Remove a mapping rule from a tenant

    + + + +Removes a single mapping rule from a specified tenant without deleting the rule. + +## Request + +

    Path Parameters

    + +The mapping rule was successfully removed from the tenant. + +
    + +The provided data is not valid. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +Forbidden. The request is not allowed. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +Not found. The tenant or mapping rule was not found. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +An internal error occurred while processing the request. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    diff --git a/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx new file mode 100644 index 0000000000..a03636c960 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/remove-user-from-tenant.api.mdx @@ -0,0 +1,59 @@ +--- +id: remove-user-from-tenant +title: "Remove a user from a tenant" +description: "Removes a single user from a specified tenant without deleting the user." +sidebar_label: "Remove a user from a tenant" +hide_title: true +hide_table_of_contents: true +api: eJztWE1z2zYQ/Ss7OCVTRlQSJ0150zh26zbNeBy5Pbg+gORKRAICDLC0rOHwv3cWIGXZUlx3xkcdNBTB/d73QGI7QXLpRXYl5mikIXGdCNugk6SsOStFJhzW9gYvPbpTZ+tBKhEl+sKphsVEJi6CkAcJXpmlRmg9Olg4W/NSg4VaKCyBgjasFFW2JShRIymzBKqixkQkopFO1kjoOKpOGFmjyETU/APXIhGKPTaSKpEIh99b5bAUGbkWH4Y1Z7tGfW8RVImGOAoHdhEcRpPs0hcV1lJknaB1w96UIVyiE4lYWFdLikvvj0TfJ5uQOOBnDWiswP8J55o9+sYaj5413kzf8GWPV27ISnrwbVGg94tW6zXE5paxU9tF6RNxNJ3uN9U4e6NKLKGUJEF5MJbgRmpVcvSFNYSGWFU2jVZFgFLaOJtrrH/66tlOt5XkfQczOI+SUCJJpcHmX7EgkB6iYI4lKANXF6fH8MvRu5+vX1REjc/SdLVaTdyieIWlIusm1i1Ttyj4x3IvJzCv0CHUcg05gixLxT6l5oQadKTQj1gtgGyoxxA2cCcm/xiRjD2JYTFeN8p3Hdt0zpNTZrnduNapHfbM4PLibATEeiTEPddBZyFbzTZkblvKci3NN24UKdJ7nT704tu6lm494u2+gz4RniS1/j+B9/bNjm2GxW/z+TlEE1DYEmFhHVCl/OiIk6iVUXVbi+xoOk1ELW/j3fvptGeb3PEnZGIAbxstTYDWw3SUgdo6HPATElPGkzTFc3XGOrVUD/1OeHMYeyEGEH+MGfV9Hwj1dhfvp9blqizRBHgCbx/oaWSV1Nqu8MCrA68OvHqEV0e7eP9sCRa2NWXk1fDlYd3di9BsJA7sOrDrwK4fsOvdvs/AmQGusmMconPWgS2K1jksYVUpHczzV+boe3itRSweuHbg2oFru1zrE1EjVZZP3eFojOE4TJXIRBpfYD7tNifhPuVXmU+74SDa89ER3c14cm6dFpnoIo36LE27ynrqs66xjvr0hnt0I52SuY7I5MeRbiOMtC2kDsv72skP+Cw8pnks69aUEj7AxcmXOfwqCVdyHcrLLu+b/jD9MN1rlUV/YHF2fgYxwwjGrQ1iNMtM32s2Cj/FcDhUeyxap2j9hdVieXKUDt2s5X5sQDL4C9b5PgqJZPhzOkLn97/nofvKLGxQH1CwGwh3BZ2PkU8nr3cRd34WiFPYum5N2D3NMsxUQG4lVujWUxwoaFWg8QHbw+xiFPsUn8Bf0SO8nnBTInLGTXOpqGrzSWHrtIhqm2uubZ7WUpl0cOHT49mfl58/zl59Ojs++fzl5NXryXRCtxSSb6ynWpqtOOLcCOS9eRHtnTF1d++N5xw3DX0kvKW00VIZRlYoQDdw72oYPnmRiGx7DhXox4vjJOg6GTh0Jboulx4vne57Xv7eoluL7Or6jnKBo6Xy/L8U2UJq/3BctJ3yi4thsPQSnjjV2pvZsCjNOrBft3wnEvEN1/embDznev7gHi3646GNNe6v+0RUKEt0oYLx6awosKEtvR9+WDC5N7vsx5NPJ/MT0ff/AuVcPcI= +sidebar_class_name: "delete api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

    Remove a user from a tenant

    + + + +Removes a single user from a specified tenant without deleting the user. + +## Request + +

    Path Parameters

    + +The user was successfully removed from the tenant. + +
    + +The provided data is not valid. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +Forbidden. The request is not allowed. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +Not found. The tenant or user was not found. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +An internal error occurred while processing the request. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    diff --git a/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx new file mode 100644 index 0000000000..5035858566 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/search-groups.api.mdx @@ -0,0 +1,76 @@ +--- +id: search-groups +title: "Query groups" +description: "Search for groups based on given criteria." +sidebar_label: "Query groups" +hide_title: true +hide_table_of_contents: true +api: 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 +sidebar_class_name: "post api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

    Query groups

    + + + +Search for groups based on given criteria. + +## Request + +

    Body

      sort object[]
      + +Sort field criteria. + +
    • Array [
    • ]
    • page object
      + +Pagination criteria. + +
      filter object
      + +Group filter request + +
    + +The groups search result. + +
    Schema
      page object
      + +Pagination information about the search results. + +
      items object[]
      + +The matching groups. + +
    • Array [
    • ]
    + +The group search query failed. More details are provided in the response body. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +The request lacks valid authentication credentials. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +Forbidden. The request is not allowed. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +An internal error occurred while processing the request. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    diff --git a/docs/apis-tools/camunda-api-rest/specifications/search-roles.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/search-roles.api.mdx index efbd41a62a..81cf8bef87 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/search-roles.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/search-roles.api.mdx @@ -5,7 +5,7 @@ description: "Search for roles based on given criteria." sidebar_label: "Query roles" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -37,7 +37,7 @@ Search for roles based on given criteria. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. diff --git a/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx index e149378817..79a284f560 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/search-tenants.api.mdx @@ -5,7 +5,7 @@ description: "Retrieves a filtered and sorted list of tenants." sidebar_label: "Query tenants" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "post api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -37,7 +37,7 @@ Retrieves a filtered and sorted list of tenants. Sort field criteria. -
  • Array [
  • ]
  • page object
    +
  • Array [
  • ]
  • page object
    Pagination criteria. diff --git a/docs/apis-tools/camunda-api-rest/specifications/sidebar.js b/docs/apis-tools/camunda-api-rest/specifications/sidebar.js index 3c02469b5c..6ffecfcfdc 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/sidebar.js +++ b/docs/apis-tools/camunda-api-rest/specifications/sidebar.js @@ -3,6 +3,18 @@ module.exports = [ type: "doc", id: "apis-tools/camunda-api-rest/specifications/camunda-8-rest-api", }, + { + type: "category", + label: "Authentication", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-authentication", + label: "Get current user", + className: "api-method get", + }, + ], + }, { type: "category", label: "Authorization", @@ -189,6 +201,54 @@ module.exports = [ }, ], }, + { + type: "category", + label: "Group", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-group", + label: "Create group", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/get-group", + label: "Get group", + className: "api-method get", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/update-group", + label: "Update group", + className: "api-method patch", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/delete-group", + label: "Delete group", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/add-user-to-group", + label: "Assign a user to a group", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/unassign-user-from-group", + label: "Unassign a user from a group", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/search-groups", + label: "Query groups", + className: "api-method post", + }, + ], + }, { type: "category", label: "Incident", @@ -261,6 +321,30 @@ module.exports = [ }, ], }, + { + type: "category", + label: "Mapping rule", + items: [ + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/create-mapping-rule", + label: "Create mapping rule", + className: "api-method post", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/delete-mapping-rule", + label: "Delete a mapping rule", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/find-mappings", + label: "Query mappings", + className: "api-method post", + }, + ], + }, { type: "category", label: "Message", @@ -445,6 +529,42 @@ module.exports = [ label: "Delete tenant", className: "api-method delete", }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/assign-user-to-tenant", + label: "Assign a user to a tenant", + className: "api-method put", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/remove-user-from-tenant", + label: "Remove a user from a tenant", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/assign-mapping-rule-to-tenant", + label: "Assign a mapping rule to a tenant", + className: "api-method put", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/remove-mapping-rule-from-tenant", + label: "Remove a mapping rule from a tenant", + className: "api-method delete", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/assign-group-to-tenant", + label: "Assign a group to a tenant", + className: "api-method put", + }, + { + type: "doc", + id: "apis-tools/camunda-api-rest/specifications/remove-group-from-tenant", + label: "Remove a group from a tenant", + className: "api-method delete", + }, { type: "doc", id: "apis-tools/camunda-api-rest/specifications/search-tenants", @@ -549,16 +669,4 @@ module.exports = [ }, ], }, - { - type: "category", - label: "Mapping Rule", - items: [ - { - type: "doc", - id: "apis-tools/camunda-api-rest/specifications/create-mapping-rule", - label: "Create mapping rule", - className: "api-method post", - }, - ], - }, ]; diff --git a/docs/apis-tools/camunda-api-rest/specifications/unassign-user-from-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/unassign-user-from-group.api.mdx new file mode 100644 index 0000000000..3c5afc6296 --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/unassign-user-from-group.api.mdx @@ -0,0 +1,60 @@ +--- +id: unassign-user-from-group +title: "Unassign a user from a group" +description: "Unassigns a user from a group." +sidebar_label: "Unassign a user from a group" +hide_title: true +hide_table_of_contents: true +api: eJztWE1z2zYQ/SsYnJIpQ8qOk7q8afyRuk0yHltuD44PILgUEYMAgw/LHA7/e2cB0lYsufV4etRBI4lc7MNi38MC21PHlpbm1/ST0b6lNwnVLRjmhFZnJc2pV8xasVRXFsyp0U00S2gJlhvRoh3N6dVoZQkj3oIhldENYWSJ1uk3RRPaMsMacGAQraeKNUBzGgz+hI4mVKCjlrmaJtTADy8MlDR3xsNTtEUN0TO5hS6lCbW8hobRvKeua9GtUA6WYGhCK20a5uKjjwd0GJIHbJzoa6BDgK9AvkHnttXKgsUR+7N9/HoGYMUsmRYfSmI952Bt5aXs4uq6aRVSOiT0YDb7F2dce1kSpR0pYM1r+k190QZICY4JaQkzQFqj70QJJREqQExTJoUuu5hKrpUD5RCPta0UPNAla40uJDS/fLcI3q+tzc+zmpPzaDniEl18B+4IsyQaFhH9+uL0iPx28OHXmze1c63Ns2y1WqWm4u+gFE6bVJtlZiqOH7R7m5JFDQZIwzoMlJWlQEwmMaoWjBNgiW2Bi0pw4nQIcJw2wQTG+MZUxmkhdR8GPyb6IeHWGaGW6/n2RmwIZE6uLs6IKEE5UXVCLTehw5iKeYk+WKG9ywvJ1C1m1wknt4I+RbG+aZjpiK62AAwJtY45b/+Tr+/3N3wjl35fLM5JdEG4LoFU2hBXCzsBYRCNUKLxDc0PZrOENuw+/vs4mw3oEzP+gkgUgftWMhWo9TQcoUjzyNsQmFDWMcX/r8xoI5biKW6K28eUCzqS+DhGNAxDUOH7Tb6falOIsgQV6ElwgwHriLBBkExKvYIy3elqp6udrp7V1cH26haPAdqMNVO4OtZFcQcKa3QooyizSntVJiSs61gUJwFOJTbwVtipqO70uNPjTo/b9fhh22lzrgiuskEegjHaEM25NwZKsqqFDO7xDDthj4Vwd6bcaW2ntee0NiS0AVdrvIuXIMFBuEu7muY0C5XKZv10ix4yLGw268er7YA3VDB306XbG0lz2kcRDXmW9bW2bsj7Vhs3ZHeYoTtmBCtk5CW+jmKbSCQ1ZzI83pZMfIG36ynII9Z4VTJySC5OLhfkE3OwYl1YXIT82fXh7HC21SuaPuNxfn5GYoSRimvbw+QWdb7VbTR+ieNwd7fAvRGuu8RhcXkKYAbM3GM2Higy4gXv+D8a0WT8cToR54+/FyH3QlU6DB85sDkRzAoYG2c+S/c2+XZ+FmTDddN4FfZOtYynIbYWGJfeOgwooVJwUDYwe+yGTGaf4xvyV0QkeykmJTJn2jKXwtW+SLluMh6HPXwXUhdZw4TKRgibHc2/XH09nr/7fHZ08vXy5N1eOkvdvQvBt9q6hqm1eUytpG2dpKeB949l4yUtqDFBDu5d1komFFImRNaPkrqODSlLE5qvtaaCqvDZ1DK6SUZpXNO+L5iFKyOHAR//8GA6ml/fPCopSK8UFn+XNK+YtE/7SuuBvLkYO1BvyUaja2sE40OmuiBf6fEfTegtdOsdNux8vXoW6z2vV0xiWrfhZkhoDawEE1Ylvp1zDq1bG/fsCQB1+LAdHp98Plmc0GH4Bz4JJLY= +sidebar_class_name: "delete api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

    Unassign a user from a group

    + + + +Unassigns a user from a group. + +## Request + +

    Path Parameters

    + +The user was unassigned successfully from the group. + +
    + +The user could not be unassigned. +More details are provided in the response body. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +Forbidden. The request is not allowed. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +The group or user with the given key was not found, or the user is not assigned to this group. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +An internal error occurred while processing the request. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx index c371eeb494..d62e3a8b37 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-authorization.api.mdx @@ -5,7 +5,7 @@ description: "Manage the permissions assigned to the authorization." sidebar_label: "Update authorization" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null @@ -40,7 +40,7 @@ Manage the permissions assigned to the authorization. The permissions to add/remove. -
  • Array [
  • ]
  • +
  • Array [
  • ]
  • The authorization was patched successfully. diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-group.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-group.api.mdx new file mode 100644 index 0000000000..d33a746bea --- /dev/null +++ b/docs/apis-tools/camunda-api-rest/specifications/update-group.api.mdx @@ -0,0 +1,60 @@ +--- +id: update-group +title: "Update group" +description: "Update a group with the given key." +sidebar_label: "Update group" +hide_title: true +hide_table_of_contents: true +api: eJztWEtz2zYQ/isYnJopLcqpk6a8qYqTuE1TjyO3B0eHFbgiEYMAA4CWNRz+984C1FtOfOhRntFY4mLf3weA23IPhePZHX9vTVPzacJNjRa8NPoq5xlv6hw8RmHCc3TCypqkPOO3QcaAFSRmC+lL5ktkhXxAze5xOeAJr8FChR4teWm5hgp5xoPGn7jkCZdkqgZf8oRb/NZIiznPvG1w39+kRLLKzDy6CV69YTFGcuZEiRXwrOV+WZMfqT0WaHnC58ZW4OOj1xe866bRHTr/u8mXpLPvXRjtUXsSQV0rKUJZ0q+OomkPnZnZVxSecrZURC/RkVSUoAt0GAwdZuTQU0ZxVd5nBd5bOWs8OkoLlPp7Hsq3qz56jvL3g4v9WKfgvJW6OOg0xRmrnLNculrBkpHmTisGvOsS7qVXZClAZrxOvZuScFPhu62yTPe0Iq5uYnN410VNVxvtYtAvhxfHa9kDEdw6WtcIgc7NG6WWA94l/GI4PK5bW/Mgc0oQPDDpmDaePYCS+eCL5k+iobZmprD6+RAV+726jitZjh6kYrEhDByLC2eYM6nZ3c27Mfvt4tWv059K72uXpelisRjYuTjDXHpjB8YWqZ0L+tC6FwM2KdEiq2DJZsggzyX5BMU2rWauRiHnUhBffMw2BEN9j/l9HydReoiTNa0aKw9gM2K3N1dM5qi9nC+lLg5dB505NIpswMw0Ppsp0Pd8A6UfgXPEXFNVYNcbw66DLuHOg2/cD7eFX14eBf6HyeSaRRNMmBzZ3FjmS+lWjiiJSmpZNRXPLobDhFfwGH+9Hg47skkdf0YmmuFjrUAHaO2nIzWrjMUePyExqZ0HLf6vzhgrC7nvd5fWPYjfxowiNy+G58cp1e+vTIG4d5FLDBpfktdIHyYshiBAhc3qRLITyU4kO06y759568tXf7NanWBz0+j8RK0TtU7Ueopar45dCUeaUZUt4RCtNZYZIRprMWeLUqpgnm6WK9/9WXe6K564duLaU1zrEl6hL00eX/lFGQYEvuQZT8PB5dJ2dYB19D6P9mE1OWis4hlvI2e6LE3b0jjfZW1trO/SB2rIA1gJMxVhSOLIrRVmlBGgwuNjvSPB9kvtGKpG58DesJvLzxP2HjwuIL5Ekstd02+Gb4ZHrdLSJyyOrq9YzDAib2s3WJklWh81Gxc/x3CYdDgUjZV++ZnUYnlmCBbtqKHqrxHR+wvW6XdcxJP+y7sVTv74dxJaTTvZzWaKcvkIVR15uDP16Kc+Pd66gMa5CX57rBxmQO1E62LKw8H5IS6vrwK9hKmqRoc9VhfxIgRbFRGqcZ4qkXAlBWqHWxGtln2MEvZP9MjOB9TNCLnV1lpIXzazgTBVKqLa+v9MmVlagdRp78Kl49Fft5/ejs4+Xo0vP32+PDsfDAf+0Yfka+N8BXorjn6UVhybs7Wb4+R5I7e+lx4ffVorkJrQFXJpe7bdxQGc4wnP1qO4adJT5o637Qwc3lrVdfT4W4N2ybO76YZhcRolHX3PeTYH5fbnddtx/3TTT35esB9P8Y7G3z8EvQw8Vw394gm/x+X2PLGbdgkvEXK0IcQoHsdAziZkZKN+MNXrkpXGSAis/RNrd85xotd6U7seTcYfiC79SLEyOSlbWNB0ExY841/4F4rbhCoFJobnLVegiwYKWh8N099/P6100Q== +sidebar_class_name: "patch api-method" +info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api +custom_edit_url: null +hide_send_button: true +--- + +import ApiTabs from "@theme/ApiTabs"; +import DiscriminatorTabs from "@theme/DiscriminatorTabs"; +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; +import MimeTabs from "@theme/MimeTabs"; +import ParamsItem from "@theme/ParamsItem"; +import ResponseSamples from "@theme/ResponseSamples"; +import SchemaItem from "@theme/SchemaItem"; +import SchemaTabs from "@theme/SchemaTabs"; +import Markdown from "@theme/Markdown"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; + +

    Update group

    + + + +Update a group with the given key. + +## Request + +

    Path Parameters

    Body

    required
      changeset object
      + +A set of changed group attributes. + +
    + +The group was updated successfully. + +
    + +The provided data is not valid. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +The request lacks valid authentication credentials. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +The group with the groupKey is not found. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    + +An internal error occurred while processing the request. + +
    Schema
      = 400` and `<= 600`"} schema={{"type":"integer","format":"int32","description":"The HTTP status code for this problem.","minimum":400,"maximum":600}}>
    diff --git a/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx b/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx index 24f2a98997..1c48091667 100644 --- a/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx +++ b/docs/apis-tools/camunda-api-rest/specifications/update-user-task.api.mdx @@ -5,7 +5,7 @@ description: "Update a user task with the given key." sidebar_label: "Update user task" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "patch api-method" info_path: docs/apis-tools/camunda-api-rest/specifications/camunda-8-rest-api custom_edit_url: null From a30ec127f2ca236f3b4093f851d1738b58c47051 Mon Sep 17 00:00:00 2001 From: Adam Urban Date: Thu, 12 Dec 2024 19:13:52 +0100 Subject: [PATCH 26/26] feat(sm/console): tags and custom props (#4661) * feat(sm/console): tags and custom props * chore: package json lock * feat(console): add full example of config including an override example * docs(console): minor improvement * fix(console): typo --- .../console-deployment/configuration.md | 118 +- package-lock.json | 7948 ++++++----------- 2 files changed, 2802 insertions(+), 5264 deletions(-) diff --git a/docs/self-managed/console-deployment/configuration.md b/docs/self-managed/console-deployment/configuration.md index 8bfa775bf1..25d4b40162 100644 --- a/docs/self-managed/console-deployment/configuration.md +++ b/docs/self-managed/console-deployment/configuration.md @@ -47,11 +47,13 @@ To enable usage collection, configure the parameters described in the next secti To enable telemetry, the following parameters need to be configured. Camunda will provide you with the customer ID (Camunda Docker username) needed to send telemetry data to Camunda. -| Parameter | Description | Example value | -| ---------------- | ----------------------------------------------------------------------------------- | --------------- | -| `customerId` | Unique identifier of the customer. This is also a Camunda Docker registry user name | `customername` | -| `installationId` | Unique installation ID of the current customer installation | `my-deployment` | -| `telemetry` | Telemetry config for Console Self-Managed: `disabled`, `online` or `download` | `online` | +| Parameter | Description | Example value | +| ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------- | +| `customerId` | Unique identifier of the customer. This is also a Camunda Docker registry username. | `customername` | +| `installationId` | Unique installation ID of the current customer installation. | `my-deployment` | +| `telemetry` | Telemetry config for Console Self-Managed: `disabled`, `online`, or `download`. | `online` | +| `managed.releases.tags` | Assign cluster tags to indicate what type of cluster it is. Default tags are `dev`, `stage`, `test`, or `prod`, but users can assign any custom tag. | `- dev` (list of strings) | +| `managed.releases.custom-properties` | List of custom properties users can add to their cluster with custom descriptions and custom links on the cluster details page. | See custom properties section | Console environment variables could be set in Helm. For more details, check [Console Helm values](https://artifacthub.io/packages/helm/camunda/camunda-platform#console-parameters). For example: @@ -67,6 +69,112 @@ console: value: online ``` +### Override configuration parameters + +Configuration parameters formerly replaced the complete configuration. Even if you only changed the `customerId`, the complete configuration still had to be added. + +This is no longer the case with the override parameters. A subset of parameters can be set so individual parameters can be adjusted. If a parameter must be changed for a specific cluster, the `name` and `namespace` fields must be set with the exact values so correlations can be made accordingly. + +#### Example + +Given the following configuration provided by Helm: + +```yaml +camunda: + console: + customerId: customer-id + installationId: camunda-platform-id-dev-console-sm-main + telemetry: disabled + managed: + method: plain + releases: + - name: camunda-platform + namespace: camunda-platform-namespace + version: 9.1.2 + components: + - name: Console + id: console + version: ... + url: https://... + readiness: https://... + metrics: https://... + - name: Keycloak + id: keycloak + version: ... + url: https://... + - name: Identity + id: identity + version: ... + url: https://... + readiness: https://... + metrics: https://... + - name: WebModeler WebApp + id: webModelerWebApp + version: ... + url: https://... + - name: Zeebe Gateway + id: zeebeGateway + version: ... + urls: + grpc: grpc://... + http: https://... + readiness: https://... + metrics: https://... + - name: Zeebe + id: zeebe + version: ... +``` + +The following example of an `overrideConfiguration` changes the `customerId` and adds `tags` and `custom-properties` for the cluster with name `camunda-platform` in namespace `camunda-platform-namespace`: + +```yaml +console: + overrideConfiguration: + camunda: + console: + customerId: "new-customer-id" + managed: + releases: + - name: camunda-platform + namespace: camunda-platform-namespace + tags: + - production + custom-properties: + - description: "This is a custom description of the cluster." + links: + - name: "Camunda" + url: "https://camunda.com" + - name: "Camunda Docs" + url: "https://docs.camunda.io" + - name: "Grafana" + url: "https://..." +``` + +### Custom properties + +Custom properties are useful to add custom information to the **Cluster details** page in Console. A custom property contains a description and multiple links. + +The following example shows one custom property for a cluster: + +```yaml +console: + overrideConfiguration: + camunda: + console: + customerId: "new-customer-id" + managed: + releases: + - name: camunda-platform + namespace: camunda-platform + custom-properties: + - description: "Useful links to Camunda resources." + links: + - name: "Camunda Blog" + url: "https://camunda.com/blog/" + - name: "Camunda Docs" + url: "https://docs.camunda.io" +``` + ## Using a different OpenID Connect (OIDC) authentication provider than Keycloak By default, Console uses Keycloak to provide authentication. diff --git a/package-lock.json b/package-lock.json index 1a62f5222f..69f17b8f0d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,7 +1,7 @@ { "name": "camunda-cloud-documentation", "version": "0.0.0", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { @@ -41,8 +41,7 @@ }, "node_modules/@algolia/autocomplete-core": { "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==", + "license": "MIT", "dependencies": { "@algolia/autocomplete-plugin-algolia-insights": "1.9.3", "@algolia/autocomplete-shared": "1.9.3" @@ -50,8 +49,7 @@ }, "node_modules/@algolia/autocomplete-plugin-algolia-insights": { "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==", + "license": "MIT", "dependencies": { "@algolia/autocomplete-shared": "1.9.3" }, @@ -61,8 +59,7 @@ }, "node_modules/@algolia/autocomplete-preset-algolia": { "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz", - "integrity": "sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==", + "license": "MIT", "dependencies": { "@algolia/autocomplete-shared": "1.9.3" }, @@ -73,8 +70,7 @@ }, "node_modules/@algolia/autocomplete-shared": { "version": "1.9.3", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.9.3.tgz", - "integrity": "sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==", + "license": "MIT", "peerDependencies": { "@algolia/client-search": ">= 4.9.1 < 6", "algoliasearch": ">= 4.9.1 < 6" @@ -82,29 +78,25 @@ }, "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==", + "license": "MIT", "dependencies": { "@algolia/cache-common": "4.19.1" } }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "@algolia/cache-common": "4.19.1" } }, "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==", + "license": "MIT", "dependencies": { "@algolia/client-common": "4.19.1", "@algolia/client-search": "4.19.1", @@ -113,8 +105,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@algolia/client-common": "4.19.1", "@algolia/client-search": "4.19.1", @@ -124,8 +115,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@algolia/requester-common": "4.19.1", "@algolia/transporter": "4.19.1" @@ -133,8 +123,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@algolia/client-common": "4.19.1", "@algolia/requester-common": "4.19.1", @@ -143,8 +132,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@algolia/client-common": "4.19.1", "@algolia/requester-common": "4.19.1", @@ -153,47 +141,40 @@ }, "node_modules/@algolia/events": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@algolia/events/-/events-4.0.1.tgz", - "integrity": "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==" + "license": "MIT" }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "@algolia/logger-common": "4.19.1" } }, "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==", + "license": "MIT", "dependencies": { "@algolia/requester-common": "4.19.1" } }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "@algolia/requester-common": "4.19.1" } }, "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==", + "license": "MIT", "dependencies": { "@algolia/cache-common": "4.19.1", "@algolia/logger-common": "4.19.1", @@ -214,8 +195,7 @@ }, "node_modules/@apidevtools/json-schema-ref-parser": { "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-10.1.0.tgz", - "integrity": "sha512-3e+viyMuXdrcK8v5pvP+SDoAQ77FH6OyRmuK48SZKmdHJRFm87RsSs8qm6kP39a/pOPURByJw+OXzQIqcfmKtA==", + "license": "MIT", "dependencies": { "@jsdevtools/ono": "^7.1.3", "@types/json-schema": "^7.0.11", @@ -327,8 +307,7 @@ }, "node_modules/@babel/helper-annotate-as-pure": { "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==", + "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" }, @@ -338,8 +317,7 @@ }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-explode-assignable-expression": "^7.18.6", "@babel/types": "^7.18.9" @@ -386,8 +364,7 @@ }, "node_modules/@babel/helper-create-class-features-plugin": { "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz", - "integrity": "sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==", + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.9", @@ -406,8 +383,7 @@ }, "node_modules/@babel/helper-create-regexp-features-plugin": { "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", - "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "regexpu-core": "^5.1.0" @@ -421,8 +397,7 @@ }, "node_modules/@babel/helper-define-polyfill-provider": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.17.7", "@babel/helper-plugin-utils": "^7.16.7", @@ -437,24 +412,21 @@ }, "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==", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-environment-visitor": { "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==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-explode-assignable-expression": { "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==", + "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" }, @@ -464,8 +436,7 @@ }, "node_modules/@babel/helper-function-name": { "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", - "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "license": "MIT", "dependencies": { "@babel/template": "^7.18.10", "@babel/types": "^7.19.0" @@ -476,8 +447,7 @@ }, "node_modules/@babel/helper-hoist-variables": { "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==", + "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" }, @@ -487,8 +457,7 @@ }, "node_modules/@babel/helper-member-expression-to-functions": { "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==", + "license": "MIT", "dependencies": { "@babel/types": "^7.18.9" }, @@ -526,8 +495,7 @@ }, "node_modules/@babel/helper-optimise-call-expression": { "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==", + "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" }, @@ -545,8 +513,7 @@ }, "node_modules/@babel/helper-remap-async-to-generator": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-environment-visitor": "^7.18.9", @@ -562,8 +529,7 @@ }, "node_modules/@babel/helper-replace-supers": { "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", - "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", + "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-member-expression-to-functions": "^7.18.9", @@ -577,8 +543,7 @@ }, "node_modules/@babel/helper-simple-access": { "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "license": "MIT", "dependencies": { "@babel/types": "^7.20.2" }, @@ -588,8 +553,7 @@ }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", - "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "license": "MIT", "dependencies": { "@babel/types": "^7.20.0" }, @@ -599,8 +563,7 @@ }, "node_modules/@babel/helper-split-export-declaration": { "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==", + "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" }, @@ -634,8 +597,7 @@ }, "node_modules/@babel/helper-wrap-function": { "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", - "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", + "license": "MIT", "dependencies": { "@babel/helper-function-name": "^7.19.0", "@babel/template": "^7.18.10", @@ -660,8 +622,7 @@ }, "node_modules/@babel/highlight": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", @@ -687,8 +648,7 @@ }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -701,8 +661,7 @@ }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", @@ -717,8 +676,7 @@ }, "node_modules/@babel/plugin-proposal-async-generator-functions": { "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz", - "integrity": "sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==", + "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-plugin-utils": "^7.19.0", @@ -734,8 +692,7 @@ }, "node_modules/@babel/plugin-proposal-class-properties": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -749,8 +706,7 @@ }, "node_modules/@babel/plugin-proposal-class-static-block": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -765,8 +721,7 @@ }, "node_modules/@babel/plugin-proposal-dynamic-import": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-dynamic-import": "^7.8.3" @@ -780,8 +735,7 @@ }, "node_modules/@babel/plugin-proposal-export-namespace-from": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" @@ -795,8 +749,7 @@ }, "node_modules/@babel/plugin-proposal-json-strings": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-json-strings": "^7.8.3" @@ -810,8 +763,7 @@ }, "node_modules/@babel/plugin-proposal-logical-assignment-operators": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" @@ -825,8 +777,7 @@ }, "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" @@ -840,8 +791,7 @@ }, "node_modules/@babel/plugin-proposal-numeric-separator": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-numeric-separator": "^7.10.4" @@ -855,8 +805,7 @@ }, "node_modules/@babel/plugin-proposal-object-rest-spread": { "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz", - "integrity": "sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==", + "license": "MIT", "dependencies": { "@babel/compat-data": "^7.20.1", "@babel/helper-compilation-targets": "^7.20.0", @@ -873,8 +822,7 @@ }, "node_modules/@babel/plugin-proposal-optional-catch-binding": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" @@ -888,8 +836,7 @@ }, "node_modules/@babel/plugin-proposal-optional-chaining": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", @@ -904,8 +851,7 @@ }, "node_modules/@babel/plugin-proposal-private-methods": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -919,8 +865,7 @@ }, "node_modules/@babel/plugin-proposal-private-property-in-object": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-create-class-features-plugin": "^7.18.6", @@ -936,8 +881,7 @@ }, "node_modules/@babel/plugin-proposal-unicode-property-regex": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -951,8 +895,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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -962,9 +905,8 @@ }, "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, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -974,8 +916,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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, @@ -985,8 +926,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -999,8 +939,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1010,8 +949,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" }, @@ -1021,8 +959,7 @@ }, "node_modules/@babel/plugin-syntax-import-assertions": { "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", - "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.19.0" }, @@ -1050,9 +987,8 @@ }, "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, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -1062,8 +998,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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1073,8 +1008,7 @@ }, "node_modules/@babel/plugin-syntax-jsx": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1087,8 +1021,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -1098,8 +1031,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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1109,8 +1041,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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -1120,8 +1051,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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1131,8 +1061,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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1142,8 +1071,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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1153,8 +1081,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1167,8 +1094,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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1181,8 +1107,7 @@ }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", - "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.19.0" }, @@ -1195,8 +1120,7 @@ }, "node_modules/@babel/plugin-transform-arrow-functions": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1209,8 +1133,7 @@ }, "node_modules/@babel/plugin-transform-async-to-generator": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6", @@ -1225,8 +1148,7 @@ }, "node_modules/@babel/plugin-transform-block-scoped-functions": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1239,8 +1161,7 @@ }, "node_modules/@babel/plugin-transform-block-scoping": { "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz", - "integrity": "sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -1253,8 +1174,7 @@ }, "node_modules/@babel/plugin-transform-classes": { "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz", - "integrity": "sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==", + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-compilation-targets": "^7.20.0", @@ -1275,8 +1195,7 @@ }, "node_modules/@babel/plugin-transform-computed-properties": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" }, @@ -1289,8 +1208,7 @@ }, "node_modules/@babel/plugin-transform-destructuring": { "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz", - "integrity": "sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -1303,8 +1221,7 @@ }, "node_modules/@babel/plugin-transform-dotall-regex": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1318,8 +1235,7 @@ }, "node_modules/@babel/plugin-transform-duplicate-keys": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" }, @@ -1332,8 +1248,7 @@ }, "node_modules/@babel/plugin-transform-exponentiation-operator": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1347,8 +1262,7 @@ }, "node_modules/@babel/plugin-transform-for-of": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1361,8 +1275,7 @@ }, "node_modules/@babel/plugin-transform-function-name": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.18.9", "@babel/helper-function-name": "^7.18.9", @@ -1377,8 +1290,7 @@ }, "node_modules/@babel/plugin-transform-literals": { "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", - "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" }, @@ -1391,8 +1303,7 @@ }, "node_modules/@babel/plugin-transform-member-expression-literals": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1405,8 +1316,7 @@ }, "node_modules/@babel/plugin-transform-modules-amd": { "version": "7.19.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz", - "integrity": "sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==", + "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.19.6", "@babel/helper-plugin-utils": "^7.19.0" @@ -1420,8 +1330,7 @@ }, "node_modules/@babel/plugin-transform-modules-commonjs": { "version": "7.19.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz", - "integrity": "sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==", + "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.19.6", "@babel/helper-plugin-utils": "^7.19.0", @@ -1436,8 +1345,7 @@ }, "node_modules/@babel/plugin-transform-modules-systemjs": { "version": "7.19.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz", - "integrity": "sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==", + "license": "MIT", "dependencies": { "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-module-transforms": "^7.19.6", @@ -1453,8 +1361,7 @@ }, "node_modules/@babel/plugin-transform-modules-umd": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1468,8 +1375,7 @@ }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", - "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.19.0", "@babel/helper-plugin-utils": "^7.19.0" @@ -1483,8 +1389,7 @@ }, "node_modules/@babel/plugin-transform-new-target": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1497,8 +1402,7 @@ }, "node_modules/@babel/plugin-transform-object-super": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-replace-supers": "^7.18.6" @@ -1512,8 +1416,7 @@ }, "node_modules/@babel/plugin-transform-parameters": { "version": "7.20.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz", - "integrity": "sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -1526,8 +1429,7 @@ }, "node_modules/@babel/plugin-transform-property-literals": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1540,8 +1442,7 @@ }, "node_modules/@babel/plugin-transform-react-constant-elements": { "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.20.2.tgz", - "integrity": "sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.20.2" }, @@ -1554,8 +1455,7 @@ }, "node_modules/@babel/plugin-transform-react-display-name": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1568,8 +1468,7 @@ }, "node_modules/@babel/plugin-transform-react-jsx": { "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz", - "integrity": "sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==", + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-module-imports": "^7.18.6", @@ -1586,8 +1485,7 @@ }, "node_modules/@babel/plugin-transform-react-jsx-development": { "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==", + "license": "MIT", "dependencies": { "@babel/plugin-transform-react-jsx": "^7.18.6" }, @@ -1600,8 +1498,7 @@ }, "node_modules/@babel/plugin-transform-react-pure-annotations": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1615,8 +1512,7 @@ }, "node_modules/@babel/plugin-transform-regenerator": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", - "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "regenerator-transform": "^0.15.0" @@ -1630,8 +1526,7 @@ }, "node_modules/@babel/plugin-transform-reserved-words": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1644,8 +1539,7 @@ }, "node_modules/@babel/plugin-transform-runtime": { "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.9.tgz", - "integrity": "sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==", + "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.9", @@ -1663,16 +1557,14 @@ }, "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==", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/plugin-transform-shorthand-properties": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1685,8 +1577,7 @@ }, "node_modules/@babel/plugin-transform-spread": { "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz", - "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.19.0", "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" @@ -1700,8 +1591,7 @@ }, "node_modules/@babel/plugin-transform-sticky-regex": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" }, @@ -1714,8 +1604,7 @@ }, "node_modules/@babel/plugin-transform-template-literals": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" }, @@ -1728,8 +1617,7 @@ }, "node_modules/@babel/plugin-transform-typeof-symbol": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" }, @@ -1742,8 +1630,7 @@ }, "node_modules/@babel/plugin-transform-typescript": { "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.2.tgz", - "integrity": "sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==", + "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.20.2", "@babel/helper-plugin-utils": "^7.20.2", @@ -1758,8 +1645,7 @@ }, "node_modules/@babel/plugin-transform-unicode-escapes": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.9" }, @@ -1772,8 +1658,7 @@ }, "node_modules/@babel/plugin-transform-unicode-regex": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1787,9 +1672,7 @@ }, "node_modules/@babel/polyfill": { "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz", - "integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==", - "deprecated": "🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.", + "license": "MIT", "dependencies": { "core-js": "^2.6.5", "regenerator-runtime": "^0.13.4" @@ -1797,15 +1680,12 @@ }, "node_modules/@babel/polyfill/node_modules/core-js": { "version": "2.6.12", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", - "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", - "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", - "hasInstallScript": true + "hasInstallScript": true, + "license": "MIT" }, "node_modules/@babel/preset-env": { "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", - "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", + "license": "MIT", "dependencies": { "@babel/compat-data": "^7.20.1", "@babel/helper-compilation-targets": "^7.20.0", @@ -1892,8 +1772,7 @@ }, "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.3", "core-js-compat": "^3.25.1" @@ -1904,8 +1783,7 @@ }, "node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-regenerator": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.3" }, @@ -1915,16 +1793,14 @@ }, "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==", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/preset-modules": { "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", @@ -1938,8 +1814,7 @@ }, "node_modules/@babel/preset-react": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", - "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-validator-option": "^7.18.6", @@ -1957,8 +1832,7 @@ }, "node_modules/@babel/preset-typescript": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz", - "integrity": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/helper-validator-option": "^7.18.6", @@ -1973,8 +1847,7 @@ }, "node_modules/@babel/register": { "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.21.0.tgz", - "integrity": "sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==", + "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", "find-cache-dir": "^2.0.0", @@ -1991,8 +1864,7 @@ }, "node_modules/@babel/register/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==", + "license": "MIT", "dependencies": { "commondir": "^1.0.1", "make-dir": "^2.0.0", @@ -2004,8 +1876,7 @@ }, "node_modules/@babel/register/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==", + "license": "MIT", "dependencies": { "locate-path": "^3.0.0" }, @@ -2015,8 +1886,7 @@ }, "node_modules/@babel/register/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==", + "license": "MIT", "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -2027,8 +1897,7 @@ }, "node_modules/@babel/register/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==", + "license": "MIT", "dependencies": { "pify": "^4.0.1", "semver": "^5.6.0" @@ -2039,8 +1908,7 @@ }, "node_modules/@babel/register/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==", + "license": "MIT", "dependencies": { "p-limit": "^2.0.0" }, @@ -2050,16 +1918,14 @@ }, "node_modules/@babel/register/node_modules/path-exists": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/@babel/register/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==", + "license": "MIT", "dependencies": { "find-up": "^3.0.0" }, @@ -2069,16 +1935,14 @@ }, "node_modules/@babel/register/node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/@babel/runtime": { "version": "7.22.11", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.11.tgz", - "integrity": "sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==", + "license": "MIT", "dependencies": { "regenerator-runtime": "^0.14.0" }, @@ -2088,8 +1952,7 @@ }, "node_modules/@babel/runtime-corejs3": { "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz", - "integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==", + "license": "MIT", "dependencies": { "core-js-pure": "^3.20.2", "regenerator-runtime": "^0.13.4" @@ -2100,8 +1963,7 @@ }, "node_modules/@babel/runtime/node_modules/regenerator-runtime": { "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + "license": "MIT" }, "node_modules/@babel/template": { "version": "7.25.9", @@ -2147,18 +2009,21 @@ }, "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 + "dev": true, + "license": "MIT" }, "node_modules/@bpmn-io/cm-theme": { "version": "0.1.0-alpha.2", - "resolved": "https://registry.npmjs.org/@bpmn-io/cm-theme/-/cm-theme-0.1.0-alpha.2.tgz", - "integrity": "sha512-ZILgiYzxk3KMvxplUXmdRFQo45/JehDPg5k9tWfehmzUOSE13ssyLPil8uCloMQnb3yyzyOWTjb/wzKXTHlFQw==", + "license": "MIT", "dependencies": { "@codemirror/language": "^6.3.1", "@codemirror/view": "^6.5.1", "@lezer/highlight": "^1.1.4" + }, + "workspaces": { + "packages": [ + "preview-themes" + ] } }, "node_modules/@bpmn-io/draggle": { @@ -2319,8 +2184,7 @@ }, "node_modules/@braintree/sanitize-url": { "version": "6.0.4", - "resolved": "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz", - "integrity": "sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==" + "license": "MIT" }, "node_modules/@carbon/grid": { "version": "11.29.0", @@ -2371,8 +2235,7 @@ }, "node_modules/@codemirror/lang-json": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@codemirror/lang-json/-/lang-json-6.0.1.tgz", - "integrity": "sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==", + "license": "MIT", "dependencies": { "@codemirror/language": "^6.0.0", "@lezer/json": "^1.0.0" @@ -2413,8 +2276,7 @@ }, "node_modules/@codemirror/state": { "version": "6.4.1", - "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.4.1.tgz", - "integrity": "sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==" + "license": "MIT" }, "node_modules/@codemirror/view": { "version": "6.35.0", @@ -2428,8 +2290,7 @@ }, "node_modules/@colors/colors": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "license": "MIT", "optional": true, "engines": { "node": ">=0.1.90" @@ -2437,13 +2298,11 @@ }, "node_modules/@docsearch/css": { "version": "3.5.2", - "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.5.2.tgz", - "integrity": "sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==" + "license": "MIT" }, "node_modules/@docsearch/react": { "version": "3.5.2", - "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.5.2.tgz", - "integrity": "sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==", + "license": "MIT", "dependencies": { "@algolia/autocomplete-core": "1.9.3", "@algolia/autocomplete-preset-algolia": "1.9.3", @@ -2473,8 +2332,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/core": "^7.18.6", "@babel/generator": "^7.18.7", @@ -2561,8 +2419,7 @@ }, "node_modules/@docusaurus/core/node_modules/ansi-regex": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -2572,8 +2429,7 @@ }, "node_modules/@docusaurus/core/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -2586,8 +2442,7 @@ }, "node_modules/@docusaurus/core/node_modules/boxen": { "version": "6.2.1", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz", - "integrity": "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==", + "license": "MIT", "dependencies": { "ansi-align": "^3.0.1", "camelcase": "^6.2.0", @@ -2607,8 +2462,7 @@ }, "node_modules/@docusaurus/core/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -2622,8 +2476,7 @@ }, "node_modules/@docusaurus/core/node_modules/cli-boxes": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", - "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -2633,8 +2486,7 @@ }, "node_modules/@docusaurus/core/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -2644,26 +2496,22 @@ }, "node_modules/@docusaurus/core/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==" + "license": "MIT" }, "node_modules/@docusaurus/core/node_modules/emoji-regex": { "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + "license": "MIT" }, "node_modules/@docusaurus/core/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@docusaurus/core/node_modules/string-width": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", @@ -2678,8 +2526,7 @@ }, "node_modules/@docusaurus/core/node_modules/strip-ansi": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -2692,8 +2539,7 @@ }, "node_modules/@docusaurus/core/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -2703,8 +2549,7 @@ }, "node_modules/@docusaurus/core/node_modules/type-fest": { "version": "2.15.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.15.1.tgz", - "integrity": "sha512-LYSjcIz3NmoQksXq/3/B7Nfad+T8mkaI628agAAnHCpXPTBRMK2ygt3eABpzII8CbZZM8dLdVQ4Gr8ousjFjMw==", + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=12.20" }, @@ -2714,8 +2559,7 @@ }, "node_modules/@docusaurus/core/node_modules/widest-line": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", - "integrity": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==", + "license": "MIT", "dependencies": { "string-width": "^5.0.1" }, @@ -2728,8 +2572,7 @@ }, "node_modules/@docusaurus/core/node_modules/wrap-ansi": { "version": "8.0.1", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.0.1.tgz", - "integrity": "sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g==", + "license": "MIT", "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", @@ -2744,8 +2587,7 @@ }, "node_modules/@docusaurus/core/node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.1.0.tgz", - "integrity": "sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -2755,8 +2597,7 @@ }, "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==", + "license": "MIT", "dependencies": { "cssnano-preset-advanced": "^5.3.8", "postcss": "^8.4.14", @@ -2769,8 +2610,7 @@ }, "node_modules/@docusaurus/logger": { "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-2.4.1.tgz", - "integrity": "sha512-5h5ysIIWYIDHyTVd8BjheZmQZmEgWDR54aQ1BX9pjFfpyzFo5puKXKYrYJXbjEHGyVhEzmB9UXwbxGfaZhOjcg==", + "license": "MIT", "dependencies": { "chalk": "^4.1.2", "tslib": "^2.4.0" @@ -2781,8 +2621,7 @@ }, "node_modules/@docusaurus/logger/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -2795,8 +2634,7 @@ }, "node_modules/@docusaurus/logger/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -2810,8 +2648,7 @@ }, "node_modules/@docusaurus/logger/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -2821,21 +2658,18 @@ }, "node_modules/@docusaurus/logger/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==" + "license": "MIT" }, "node_modules/@docusaurus/logger/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@docusaurus/logger/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -2845,8 +2679,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/parser": "^7.18.8", "@babel/traverse": "^7.18.8", @@ -2876,8 +2709,7 @@ }, "node_modules/@docusaurus/mdx-loader/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", @@ -2890,8 +2722,7 @@ }, "node_modules/@docusaurus/mdx-loader/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" @@ -2903,8 +2734,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/react-loadable": "5.5.2", "@docusaurus/types": "2.4.1", @@ -2922,8 +2752,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/logger": "2.4.1", @@ -2952,8 +2781,7 @@ }, "node_modules/@docusaurus/plugin-content-blog/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", @@ -2966,8 +2794,7 @@ }, "node_modules/@docusaurus/plugin-content-blog/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" @@ -2979,8 +2806,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/logger": "2.4.1", @@ -3009,8 +2835,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/mdx-loader": "2.4.1", @@ -3031,8 +2856,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/types": "2.4.1", @@ -3051,8 +2875,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/types": "2.4.1", @@ -3069,8 +2892,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/types": "2.4.1", @@ -3087,8 +2909,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/types": "2.4.1", @@ -3105,8 +2926,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/logger": "2.4.1", @@ -3128,8 +2948,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/plugin-content-blog": "2.4.1", @@ -3155,8 +2974,7 @@ }, "node_modules/@docusaurus/react-loadable": { "version": "5.5.2", - "resolved": "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz", - "integrity": "sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==", + "license": "MIT", "dependencies": { "@types/react": "*", "prop-types": "^15.6.2" @@ -3167,8 +2985,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/mdx-loader": "2.4.1", @@ -3206,16 +3023,14 @@ }, "node_modules/@docusaurus/theme-classic/node_modules/clsx": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "license": "MIT", "engines": { "node": ">=6" } }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/mdx-loader": "2.4.1", "@docusaurus/module-type-aliases": "2.4.1", @@ -3244,16 +3059,14 @@ }, "node_modules/@docusaurus/theme-common/node_modules/clsx": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/@docusaurus/theme-mermaid": { "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-mermaid/-/theme-mermaid-2.4.1.tgz", - "integrity": "sha512-cM0ImKIqZfjmlaC+uAjep39kNBvb1bjz429QBHGs32maob4+UnRzVPPpCUCltyPVb4xjG5h1Tyq4pHzhtIikqA==", + "license": "MIT", "dependencies": { "@docusaurus/core": "2.4.1", "@docusaurus/module-type-aliases": "2.4.1", @@ -3274,8 +3087,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docsearch/react": "^3.1.1", "@docusaurus/core": "2.4.1", @@ -3304,16 +3116,14 @@ }, "node_modules/@docusaurus/theme-search-algolia/node_modules/clsx": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "license": "MIT", "engines": { "node": ">=6" } }, "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==", + "license": "MIT", "dependencies": { "fs-extra": "^10.1.0", "tslib": "^2.4.0" @@ -3324,8 +3134,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@types/history": "^4.7.11", "@types/react": "*", @@ -3343,8 +3152,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/logger": "2.4.1", "@svgr/webpack": "^6.2.1", @@ -3377,8 +3185,7 @@ }, "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==", + "license": "MIT", "dependencies": { "tslib": "^2.4.0" }, @@ -3396,8 +3203,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@docusaurus/logger": "2.4.1", "@docusaurus/utils": "2.4.1", @@ -3411,8 +3217,7 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -3422,26 +3227,22 @@ }, "node_modules/@exodus/schemasafe": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.3.0.tgz", - "integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==" + "license": "MIT" }, "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==" + "license": "BSD-3-Clause" }, "node_modules/@hapi/topo": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", - "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0" } }, "node_modules/@hookform/error-message": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@hookform/error-message/-/error-message-2.0.1.tgz", - "integrity": "sha512-U410sAr92xgxT1idlu9WWOVjndxLdgPUHEB8Schr27C9eh7/xUnITWpCMF93s+lGiG++D4JnbSnrb5A21AdSNg==", + "license": "MIT", "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0", @@ -3458,8 +3259,7 @@ }, "node_modules/@isaacs/cliui": { "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", @@ -3474,8 +3274,7 @@ }, "node_modules/@isaacs/cliui/node_modules/ansi-regex": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -3485,8 +3284,7 @@ }, "node_modules/@isaacs/cliui/node_modules/ansi-styles": { "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -3496,13 +3294,11 @@ }, "node_modules/@isaacs/cliui/node_modules/emoji-regex": { "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + "license": "MIT" }, "node_modules/@isaacs/cliui/node_modules/string-width": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", @@ -3517,8 +3313,7 @@ }, "node_modules/@isaacs/cliui/node_modules/strip-ansi": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -3531,8 +3326,7 @@ }, "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", @@ -3547,9 +3341,8 @@ }, "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, + "license": "ISC", "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", @@ -3563,27 +3356,24 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/@istanbuljs/load-nyc-config/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, + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/@istanbuljs/load-nyc-config/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==", "dev": true, + "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -3594,18 +3384,16 @@ }, "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, + "license": "MIT", "engines": { "node": ">=8" } }, "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, + "license": "MIT", "engines": { "node": ">=8" } @@ -3615,6 +3403,7 @@ "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", @@ -3629,9 +3418,8 @@ }, "node_modules/@jest/console/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3644,9 +3432,8 @@ }, "node_modules/@jest/console/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3660,9 +3447,8 @@ }, "node_modules/@jest/console/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -3672,24 +3458,21 @@ }, "node_modules/@jest/console/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@jest/console/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/console/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3702,6 +3485,7 @@ "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, + "license": "MIT", "dependencies": { "@jest/console": "^29.7.0", "@jest/reporters": "^29.7.0", @@ -3746,9 +3530,8 @@ }, "node_modules/@jest/core/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3761,9 +3544,8 @@ }, "node_modules/@jest/core/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3786,15 +3568,15 @@ "url": "https://github.com/sponsors/sibiraj-s" } ], + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/core/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -3804,24 +3586,21 @@ }, "node_modules/@jest/core/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@jest/core/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/core/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -3834,6 +3613,7 @@ "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", @@ -3849,6 +3629,7 @@ "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, + "license": "MIT", "dependencies": { "expect": "^29.7.0", "jest-snapshot": "^29.7.0" @@ -3862,6 +3643,7 @@ "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, + "license": "MIT", "dependencies": { "jest-get-type": "^29.6.3" }, @@ -3874,6 +3656,7 @@ "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", @@ -3891,6 +3674,7 @@ "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/environment": "^29.7.0", "@jest/expect": "^29.7.0", @@ -3906,6 +3690,7 @@ "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, + "license": "MIT", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^29.7.0", @@ -3946,9 +3731,8 @@ }, "node_modules/@jest/reporters/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -3961,9 +3745,8 @@ }, "node_modules/@jest/reporters/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -3977,9 +3760,8 @@ }, "node_modules/@jest/reporters/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -3989,15 +3771,13 @@ }, "node_modules/@jest/reporters/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@jest/reporters/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -4007,6 +3787,7 @@ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "jest-util": "^29.7.0", @@ -4019,9 +3800,8 @@ }, "node_modules/@jest/reporters/node_modules/jest-worker/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, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -4034,9 +3814,8 @@ }, "node_modules/@jest/reporters/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -4046,9 +3825,8 @@ }, "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, + "license": "MIT", "dependencies": { "@sinclair/typebox": "^0.27.8" }, @@ -4058,9 +3836,8 @@ }, "node_modules/@jest/source-map": { "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, + "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", @@ -4075,6 +3852,7 @@ "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, + "license": "MIT", "dependencies": { "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", @@ -4090,6 +3868,7 @@ "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", @@ -4105,6 +3884,7 @@ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/types": "^29.6.3", @@ -4128,9 +3908,8 @@ }, "node_modules/@jest/transform/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -4143,9 +3922,8 @@ }, "node_modules/@jest/transform/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -4159,9 +3937,8 @@ }, "node_modules/@jest/transform/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -4171,30 +3948,26 @@ }, "node_modules/@jest/transform/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@jest/transform/node_modules/convert-source-map": { "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 + "dev": true, + "license": "MIT" }, "node_modules/@jest/transform/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/transform/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -4204,9 +3977,8 @@ }, "node_modules/@jest/transform/node_modules/write-file-atomic": { "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, + "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^3.0.7" @@ -4217,9 +3989,8 @@ }, "node_modules/@jest/types": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", - "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", @@ -4234,9 +4005,8 @@ }, "node_modules/@jest/types/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -4249,9 +4019,8 @@ }, "node_modules/@jest/types/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -4265,9 +4034,8 @@ }, "node_modules/@jest/types/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -4277,24 +4045,21 @@ }, "node_modules/@jest/types/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@jest/types/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/types/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -4317,8 +4082,7 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=6.0.0" } @@ -4333,8 +4097,7 @@ }, "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==" + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", @@ -4347,13 +4110,11 @@ }, "node_modules/@jsdevtools/ono": { "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz", - "integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==" + "license": "MIT" }, "node_modules/@leichtgewicht/ip-codec": { "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==" + "license": "MIT" }, "node_modules/@lezer/common": { "version": "1.2.3", @@ -4370,8 +4131,7 @@ }, "node_modules/@lezer/json": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@lezer/json/-/json-1.0.2.tgz", - "integrity": "sha512-xHT2P4S5eeCYECyKNPhr4cbEL9tc8w83SPwRC373o9uEdrvGKTZoJVAGxpOsZckMlEh9W23Pc72ew918RWQOBQ==", + "license": "MIT", "dependencies": { "@lezer/common": "^1.2.0", "@lezer/highlight": "^1.0.0", @@ -4397,8 +4157,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/core": "7.12.9", "@babel/plugin-syntax-jsx": "7.12.1", @@ -4427,8 +4186,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/generator": "^7.12.5", @@ -4457,8 +4215,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -4468,16 +4225,14 @@ }, "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==", + "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/@mdx-js/mdx/node_modules/unified": { "version": "9.2.0", - "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz", - "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==", + "license": "MIT", "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", @@ -4493,8 +4248,7 @@ }, "node_modules/@mdx-js/mdx/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", @@ -4507,8 +4261,7 @@ }, "node_modules/@mdx-js/mdx/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" @@ -4520,8 +4273,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -4532,8 +4284,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -4541,8 +4292,7 @@ }, "node_modules/@mrmlnc/readdir-enhanced": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", - "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "license": "MIT", "dependencies": { "call-me-maybe": "^1.0.1", "glob-to-regexp": "^0.3.0" @@ -4553,13 +4303,11 @@ }, "node_modules/@mrmlnc/readdir-enhanced/node_modules/glob-to-regexp": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", - "integrity": "sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==" + "license": "BSD" }, "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==", + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -4570,16 +4318,14 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -4590,8 +4336,7 @@ }, "node_modules/@paloaltonetworks/openapi-to-postmanv2": { "version": "3.1.0-hotfix.1", - "resolved": "https://registry.npmjs.org/@paloaltonetworks/openapi-to-postmanv2/-/openapi-to-postmanv2-3.1.0-hotfix.1.tgz", - "integrity": "sha512-0bdaPCEyQbnUo4xpOu7EzxXXkDx4BAXqc8QSbVBlzlVB5KoTLJiKKB4c3fa4BXbK+3u/OqfLbeNCebc2EC8ngA==", + "license": "Apache-2.0", "dependencies": { "@paloaltonetworks/postman-collection": "^4.1.0", "ajv": "8.1.0", @@ -4614,8 +4359,7 @@ }, "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/ajv": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.1.0.tgz", - "integrity": "sha512-B/Sk2Ix7A36fs/ZkuGLIR86EdjbgR6fsAcbx9lOP/QBSXujDNbVmIS/U4Itz5k8fPFDeVZl/zQ/gJW4Jrq6XjQ==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -4629,26 +4373,22 @@ }, "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/async": { "version": "3.2.1", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.1.tgz", - "integrity": "sha512-XdD5lRO/87udXCMC9meWdYiR+Nq6ZjUfXidViUZGu2F1MO4T3XwZ1et0hb2++BgLfhyJwy44BGB/yx80ABx8hg==" + "license": "MIT" }, "node_modules/@paloaltonetworks/openapi-to-postmanv2/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==" + "license": "MIT" }, "node_modules/@paloaltonetworks/openapi-to-postmanv2/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==", + "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -4659,14 +4399,12 @@ }, "node_modules/@paloaltonetworks/openapi-to-postmanv2/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "node_modules/@paloaltonetworks/postman-code-generators": { "version": "1.1.15-patch.2", - "resolved": "https://registry.npmjs.org/@paloaltonetworks/postman-code-generators/-/postman-code-generators-1.1.15-patch.2.tgz", - "integrity": "sha512-tRnAKtV4M8wLxcVnAx6ZCjCqbrR1xiqJNQkf1A71K8UxEP3N/+EspT82N5c0555w02oYFk21ViHuzuhm4gaGLw==", "hasInstallScript": true, + "license": "Apache-2.0", "dependencies": { "@paloaltonetworks/postman-collection": "^4.1.0", "async": "^3.2.4", @@ -4679,13 +4417,11 @@ }, "node_modules/@paloaltonetworks/postman-code-generators/node_modules/async": { "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" + "license": "MIT" }, "node_modules/@paloaltonetworks/postman-collection": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@paloaltonetworks/postman-collection/-/postman-collection-4.1.1.tgz", - "integrity": "sha512-9JHHkkD8Xb4rvdKob7TDPRfqfmdG3KU0aO5gJyyjvMFbOVysam5I0d8/9HPOuJXWkUHGo3Sn+ov2Fcm2bnJ52Q==", + "license": "Apache-2.0", "dependencies": { "file-type": "3.9.0", "http-reasons": "0.1.0", @@ -4704,16 +4440,14 @@ }, "node_modules/@paloaltonetworks/postman-collection/node_modules/file-type": { "version": "3.9.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", - "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/@paloaltonetworks/postman-collection/node_modules/iconv-lite": { "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, @@ -4723,8 +4457,7 @@ }, "node_modules/@paloaltonetworks/postman-collection/node_modules/semver": { "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" }, @@ -4737,8 +4470,7 @@ }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", "optional": true, "engines": { "node": ">=14" @@ -4746,9 +4478,8 @@ }, "node_modules/@playwright/test": { "version": "1.49.0", - "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.49.0.tgz", - "integrity": "sha512-DMulbwQURa8rNIQrf94+jPJQ4FmOVdpE5ZppRNvWVjvhC+6sOeo28r8MgIpQRYouXRtt/FCCXU7zn20jnHR4Qw==", "dev": true, + "license": "Apache-2.0", "dependencies": { "playwright": "1.49.0" }, @@ -4761,13 +4492,11 @@ }, "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==" + "license": "MIT" }, "node_modules/@redocly/ajv": { "version": "8.11.0", - "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -4781,13 +4510,11 @@ }, "node_modules/@redocly/ajv/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "node_modules/@redocly/openapi-core": { "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.7.0.tgz", - "integrity": "sha512-mDl9tq96WjMElX4RX+oyqfTiquBNXzFRWres/JN6AlWhBbhFOz2nXnCCIILcjZkRchKFDKShU+pqHpvPJ7xVDQ==", + "license": "MIT", "dependencies": { "@redocly/ajv": "^8.11.0", "colorette": "^1.2.0", @@ -4806,21 +4533,18 @@ }, "node_modules/@redocly/openapi-core/node_modules/brace-expansion": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/@redocly/openapi-core/node_modules/colorette": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" + "license": "MIT" }, "node_modules/@redocly/openapi-core/node_modules/minimatch": { "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, @@ -4830,8 +4554,7 @@ }, "node_modules/@reduxjs/toolkit": { "version": "1.9.7", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.7.tgz", - "integrity": "sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==", + "license": "MIT", "dependencies": { "immer": "^9.0.21", "redux": "^4.2.1", @@ -4861,37 +4584,31 @@ }, "node_modules/@saucelabs/theme-github-codeblock": { "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@saucelabs/theme-github-codeblock/-/theme-github-codeblock-0.2.3.tgz", - "integrity": "sha512-GSl3Lr/jOWm4OP3BPX2vXxc8FMSOXj1mJnls6cUqMwlGOfKQ1Ia9pq1O9/ES+5TrZHIzAws/n5FFSn1OkGJw/Q==" + "license": "MIT" }, "node_modules/@sideway/address": { "version": "4.1.4", - "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", - "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "license": "BSD-3-Clause", "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==" + "license": "BSD-3-Clause" }, "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==" + "license": "BSD-3-Clause" }, "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 + "dev": true, + "license": "MIT" }, "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==", + "license": "MIT", "engines": { "node": ">=6" } @@ -4901,23 +4618,22 @@ "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } }, "node_modules/@sinonjs/fake-timers": { "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, + "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^3.0.0" } }, "node_modules/@slorber/static-site-generator-webpack-plugin": { "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==", + "license": "MIT", "dependencies": { "eval": "^0.1.8", "p-map": "^4.0.0", @@ -4929,8 +4645,7 @@ }, "node_modules/@stencil/core": { "version": "2.22.3", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-2.22.3.tgz", - "integrity": "sha512-kmVA0M/HojwsfkeHsifvHVIYe4l5tin7J5+DLgtl8h6WWfiMClND5K3ifCXXI2ETDNKiEk21p6jql3Fx9o2rng==", + "license": "MIT", "bin": { "stencil": "bin/stencil" }, @@ -4941,8 +4656,7 @@ }, "node_modules/@svgr/babel-plugin-add-jsx-attribute": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz", - "integrity": "sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -4956,8 +4670,7 @@ }, "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.5.0.tgz", - "integrity": "sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -4971,8 +4684,7 @@ }, "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { "version": "6.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.5.0.tgz", - "integrity": "sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -4986,8 +4698,7 @@ }, "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz", - "integrity": "sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5001,8 +4712,7 @@ }, "node_modules/@svgr/babel-plugin-svg-dynamic-title": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz", - "integrity": "sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5016,8 +4726,7 @@ }, "node_modules/@svgr/babel-plugin-svg-em-dimensions": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz", - "integrity": "sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5031,8 +4740,7 @@ }, "node_modules/@svgr/babel-plugin-transform-react-native-svg": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz", - "integrity": "sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5046,8 +4754,7 @@ }, "node_modules/@svgr/babel-plugin-transform-svg-component": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz", - "integrity": "sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -5061,8 +4768,7 @@ }, "node_modules/@svgr/babel-preset": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.5.1.tgz", - "integrity": "sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==", + "license": "MIT", "dependencies": { "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1", "@svgr/babel-plugin-remove-jsx-attribute": "*", @@ -5086,8 +4792,7 @@ }, "node_modules/@svgr/core": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.5.1.tgz", - "integrity": "sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==", + "license": "MIT", "dependencies": { "@babel/core": "^7.19.6", "@svgr/babel-preset": "^6.5.1", @@ -5105,8 +4810,7 @@ }, "node_modules/@svgr/hast-util-to-babel-ast": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz", - "integrity": "sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==", + "license": "MIT", "dependencies": { "@babel/types": "^7.20.0", "entities": "^4.4.0" @@ -5121,8 +4825,7 @@ }, "node_modules/@svgr/hast-util-to-babel-ast/node_modules/entities": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", - "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", + "license": "BSD-2-Clause", "engines": { "node": ">=0.12" }, @@ -5132,8 +4835,7 @@ }, "node_modules/@svgr/plugin-jsx": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz", - "integrity": "sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==", + "license": "MIT", "dependencies": { "@babel/core": "^7.19.6", "@svgr/babel-preset": "^6.5.1", @@ -5153,8 +4855,7 @@ }, "node_modules/@svgr/plugin-svgo": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.5.1.tgz", - "integrity": "sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==", + "license": "MIT", "dependencies": { "cosmiconfig": "^7.0.1", "deepmerge": "^4.2.2", @@ -5173,8 +4874,7 @@ }, "node_modules/@svgr/webpack": { "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-6.5.1.tgz", - "integrity": "sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==", + "license": "MIT", "dependencies": { "@babel/core": "^7.19.6", "@babel/plugin-transform-react-constant-elements": "^7.18.12", @@ -5319,6 +5019,7 @@ "x64" ], "dev": true, + "license": "Apache-2.0 AND MIT", "optional": true, "os": [ "linux" @@ -5335,6 +5036,7 @@ "x64" ], "dev": true, + "license": "Apache-2.0 AND MIT", "optional": true, "os": [ "linux" @@ -5408,8 +5110,7 @@ }, "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==", + "license": "MIT", "dependencies": { "defer-to-connect": "^1.0.1" }, @@ -5419,8 +5120,7 @@ }, "node_modules/@trysound/sax": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "license": "ISC", "engines": { "node": ">=10.13.0" } @@ -5430,6 +5130,7 @@ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", @@ -5443,6 +5144,7 @@ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" } @@ -5452,6 +5154,7 @@ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, + "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" @@ -5462,14 +5165,14 @@ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/types": "^7.20.7" } }, "node_modules/@types/body-parser": { "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "license": "MIT", "dependencies": { "@types/connect": "*", "@types/node": "*" @@ -5477,32 +5180,28 @@ }, "node_modules/@types/bonjour": { "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/cheerio": { "version": "0.22.31", - "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.31.tgz", - "integrity": "sha512-Kt7Cdjjdi2XWSfrZ53v4Of0wG3ZcmaegFXjMmz9tfNrZSkzzo36G0AL1YqSdcIA78Etjt6E609pt5h1xnQkPUw==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect": { "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect-history-api-fallback": { "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==", + "license": "MIT", "dependencies": { "@types/express-serve-static-core": "*", "@types/node": "*" @@ -5515,16 +5214,14 @@ }, "node_modules/@types/debug": { "version": "4.1.12", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", - "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "license": "MIT", "dependencies": { "@types/ms": "*" } }, "node_modules/@types/eslint": { "version": "8.4.1", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.1.tgz", - "integrity": "sha512-GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==", + "license": "MIT", "dependencies": { "@types/estree": "*", "@types/json-schema": "*" @@ -5532,8 +5229,7 @@ }, "node_modules/@types/eslint-scope": { "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" @@ -5541,13 +5237,11 @@ }, "node_modules/@types/estree": { "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" + "license": "MIT" }, "node_modules/@types/express": { "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", - "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "license": "MIT", "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.18", @@ -5557,8 +5251,7 @@ }, "node_modules/@types/express-serve-static-core": { "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==", + "license": "MIT", "dependencies": { "@types/node": "*", "@types/qs": "*", @@ -5570,27 +5263,25 @@ "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, + "license": "MIT", "dependencies": { "@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==", + "license": "MIT", "dependencies": { "@types/unist": "*" } }, "node_modules/@types/history": { "version": "4.7.11", - "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", - "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" + "license": "MIT" }, "node_modules/@types/hoist-non-react-statics": { "version": "3.3.5", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", - "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", + "license": "MIT", "dependencies": { "@types/react": "*", "hoist-non-react-statics": "^3.3.0" @@ -5598,37 +5289,32 @@ }, "node_modules/@types/html-minifier-terser": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + "license": "MIT" }, "node_modules/@types/http-proxy": { "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==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, + "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, + "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" } @@ -5638,6 +5324,7 @@ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.14.tgz", "integrity": "sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==", "dev": true, + "license": "MIT", "dependencies": { "expect": "^29.0.0", "pretty-format": "^29.0.0" @@ -5645,79 +5332,65 @@ }, "node_modules/@types/json-schema": { "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + "license": "MIT" }, "node_modules/@types/lodash": { "version": "4.14.202", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz", - "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==" + "license": "MIT" }, "node_modules/@types/lodash.clonedeep": { "version": "4.5.9", - "resolved": "https://registry.npmjs.org/@types/lodash.clonedeep/-/lodash.clonedeep-4.5.9.tgz", - "integrity": "sha512-19429mWC+FyaAhOLzsS8kZUsI+/GmBAQ0HFiCPsKGU+7pBXOQWhyrY6xNNDwUSX8SMZMJvuFVMF9O5dQOlQK9Q==", + "license": "MIT", "dependencies": { "@types/lodash": "*" } }, "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==", + "license": "MIT", "dependencies": { "@types/unist": "*" } }, "node_modules/@types/mime": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" + "license": "MIT" }, "node_modules/@types/ms": { "version": "0.7.34", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", - "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==" + "license": "MIT" }, "node_modules/@types/node": { "version": "17.0.13", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.13.tgz", - "integrity": "sha512-Y86MAxASe25hNzlDbsviXl8jQHb0RDvKt4c40ZJQ1Don0AAL0STLZSs4N+6gLEO55pedy7r2cLwS+ZDxPm/2Bw==" + "license": "MIT" }, "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==" + "license": "MIT" }, "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==" + "license": "MIT" }, "node_modules/@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==" + "license": "MIT" }, "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==" + "license": "MIT" }, "node_modules/@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==" + "license": "MIT" }, "node_modules/@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==" + "license": "MIT" }, "node_modules/@types/react": { "version": "17.0.38", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.38.tgz", - "integrity": "sha512-SI92X1IA+FMnP3qM5m4QReluXzhcmovhZnLNm3pyeQlooi02qI7sLiepEYqT678uNiyc25XfCqxREFpy3W7YhQ==", + "license": "MIT", "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -5726,8 +5399,7 @@ }, "node_modules/@types/react-redux": { "version": "7.1.33", - "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.33.tgz", - "integrity": "sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==", + "license": "MIT", "dependencies": { "@types/hoist-non-react-statics": "^3.3.0", "@types/react": "*", @@ -5737,8 +5409,7 @@ }, "node_modules/@types/react-router": { "version": "5.1.20", - "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz", - "integrity": "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==", + "license": "MIT", "dependencies": { "@types/history": "^4.7.11", "@types/react": "*" @@ -5746,8 +5417,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@types/history": "^4.7.11", "@types/react": "*", @@ -5756,8 +5426,7 @@ }, "node_modules/@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==", + "license": "MIT", "dependencies": { "@types/history": "^4.7.11", "@types/react": "*", @@ -5766,34 +5435,29 @@ }, "node_modules/@types/retry": { "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + "license": "MIT" }, "node_modules/@types/sax": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/scheduler": { "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + "license": "MIT" }, "node_modules/@types/serve-index": { "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "license": "MIT", "dependencies": { "@types/express": "*" } }, "node_modules/@types/serve-static": { "version": "1.13.10", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", - "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "license": "MIT", "dependencies": { "@types/mime": "^1", "@types/node": "*" @@ -5801,8 +5465,7 @@ }, "node_modules/@types/sockjs": { "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "license": "MIT", "dependencies": { "@types/node": "*" } @@ -5821,36 +5484,31 @@ }, "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==" + "license": "MIT" }, "node_modules/@types/ws": { "version": "8.5.3", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", - "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/yargs": { "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", "dev": true, + "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/ast": { "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "license": "MIT", "dependencies": { "@webassemblyjs/helper-numbers": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1" @@ -5858,23 +5516,19 @@ }, "node_modules/@webassemblyjs/floating-point-hex-parser": { "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==" + "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { "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==" + "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { "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==", + "license": "MIT", "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.11.1", "@webassemblyjs/helper-api-error": "1.11.1", @@ -5883,13 +5537,11 @@ }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { "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==" + "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { "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==", + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-buffer": "1.11.1", @@ -5899,29 +5551,25 @@ }, "node_modules/@webassemblyjs/ieee754": { "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-buffer": "1.11.1", @@ -5935,8 +5583,7 @@ }, "node_modules/@webassemblyjs/wasm-gen": { "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.1", @@ -5947,8 +5594,7 @@ }, "node_modules/@webassemblyjs/wasm-opt": { "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-buffer": "1.11.1", @@ -5958,8 +5604,7 @@ }, "node_modules/@webassemblyjs/wasm-parser": { "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/helper-api-error": "1.11.1", @@ -5971,8 +5616,7 @@ }, "node_modules/@webassemblyjs/wast-printer": { "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", "@xtuc/long": "4.2.2" @@ -5985,18 +5629,15 @@ }, "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==" + "license": "BSD-3-Clause" }, "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==" + "license": "Apache-2.0" }, "node_modules/abort-controller": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", "dependencies": { "event-target-shim": "^5.0.0" }, @@ -6006,8 +5647,7 @@ }, "node_modules/accepts": { "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==", + "license": "MIT", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" @@ -6018,8 +5658,7 @@ }, "node_modules/acorn": { "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -6029,32 +5668,28 @@ }, "node_modules/acorn-import-assertions": { "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "license": "MIT", "peerDependencies": { "acorn": "^8" } }, "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==", + "license": "MIT", "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" @@ -6065,8 +5700,7 @@ }, "node_modules/ajv": { "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -6080,8 +5714,7 @@ }, "node_modules/ajv-formats": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "license": "MIT", "dependencies": { "ajv": "^8.0.0" }, @@ -6096,8 +5729,7 @@ }, "node_modules/ajv-formats/node_modules/ajv": { "version": "8.9.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz", - "integrity": "sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -6111,21 +5743,18 @@ }, "node_modules/ajv-formats/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "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==", + "license": "MIT", "peerDependencies": { "ajv": "^6.9.1" } }, "node_modules/algoliasearch": { "version": "4.19.1", - "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.19.1.tgz", - "integrity": "sha512-IJF5b93b2MgAzcE/tuzW0yOPnuUyRgGAtaPv5UUywXM8kzqfdwZTO4sPJBzoGz1eOy6H9uEchsJsBFTELZSu+g==", + "license": "MIT", "dependencies": { "@algolia/cache-browser-local-storage": "4.19.1", "@algolia/cache-common": "4.19.1", @@ -6145,8 +5774,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@algolia/events": "^4.0.1" }, @@ -6156,22 +5784,19 @@ }, "node_modules/alphanum-sort": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==" + "license": "MIT" }, "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==", + "license": "ISC", "dependencies": { "string-width": "^4.1.0" } }, "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==", "dev": true, + "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, @@ -6184,9 +5809,8 @@ }, "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==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -6196,19 +5820,17 @@ }, "node_modules/ansi-html-community": { "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==", "engines": [ "node >= 0.8.0" ], + "license": "Apache-2.0", "bin": { "ansi-html": "bin/ansi-html" } }, "node_modules/ansi-red": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", - "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", + "license": "MIT", "dependencies": { "ansi-wrap": "0.1.0" }, @@ -6218,16 +5840,14 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, @@ -6237,21 +5857,18 @@ }, "node_modules/ansi-wrap": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", - "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "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==" + "license": "MIT" }, "node_modules/anymatch": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -6262,8 +5879,6 @@ }, "node_modules/arch": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", "funding": [ { "type": "github", @@ -6277,12 +5892,12 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/archive-type": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", - "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", + "license": "MIT", "dependencies": { "file-type": "^4.2.0" }, @@ -6292,50 +5907,43 @@ }, "node_modules/archive-type/node_modules/file-type": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", - "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/arg": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + "license": "MIT" }, "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==" + "license": "Python-2.0" }, "node_modules/arr-diff": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "license": "MIT", "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==", + "license": "MIT", "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": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array-buffer-byte-length": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "is-array-buffer": "^3.0.1" @@ -6346,16 +5954,14 @@ }, "node_modules/array-find-index": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "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==" + "license": "MIT" }, "node_modules/array-move": { "version": "4.0.0", @@ -6370,32 +5976,28 @@ }, "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==", + "license": "MIT", "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": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "license": "MIT", "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": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/array.prototype.filter": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.2.tgz", - "integrity": "sha512-us+UrmGOilqttSOgoWZTpOvHu68vZT2YCjc/H4vhu56vzZpaDFBhB+Se2UwqWzMKbDv7Myq5M5pcZLAtUvTQdQ==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -6412,8 +6014,7 @@ }, "node_modules/array.prototype.find": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.2.1.tgz", - "integrity": "sha512-I2ri5Z9uMpMvnsNrHre9l3PaX+z9D0/z6F7Yt2u15q7wt0I62g5kX6xUKR1SJiefgG+u2/gJUmM8B47XRvQR6w==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -6426,8 +6027,7 @@ }, "node_modules/array.prototype.flat": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -6443,8 +6043,7 @@ }, "node_modules/array.prototype.reduce": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz", - "integrity": "sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -6461,29 +6060,25 @@ }, "node_modules/arrify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/asap": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + "license": "MIT" }, "node_modules/asn1": { "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "license": "MIT", "dependencies": { "safer-buffer": "~2.1.0" } }, "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==", + "license": "MIT", "dependencies": { "bn.js": "^4.0.0", "inherits": "^2.0.1", @@ -6493,13 +6088,11 @@ }, "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==" + "license": "MIT" }, "node_modules/assert": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", - "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "is-nan": "^1.3.2", @@ -6510,50 +6103,43 @@ }, "node_modules/assert-plus": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/assign-symbols": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/async": { "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "license": "MIT", "dependencies": { "lodash": "^4.17.14" } }, "node_modules/asynckit": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + "license": "MIT" }, "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==", + "license": "ISC", "engines": { "node": ">= 4.0.0" } }, "node_modules/atoa": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atoa/-/atoa-1.0.0.tgz", - "integrity": "sha512-VVE1H6cc4ai+ZXo/CRWoJiHXrA1qfA31DPnx6D20+kSI547hQN5Greh51LQ1baMRMfxO5K5M4ImMtZbZt2DODQ==" + "license": "MIT" }, "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==", + "license": "(MIT OR Apache-2.0)", "bin": { "atob": "bin/atob.js" }, @@ -6563,16 +6149,13 @@ }, "node_modules/autolinker": { "version": "3.16.2", - "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-3.16.2.tgz", - "integrity": "sha512-JiYl7j2Z19F9NdTmirENSUUIIL/9MytEWtmzhfmsKPCp9E+G35Y0UNCMoM9tFigxT59qSc8Ml2dlZXOCVTYwuA==", + "license": "MIT", "dependencies": { "tslib": "^2.3.0" } }, "node_modules/autoprefixer": { "version": "10.4.15", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.15.tgz", - "integrity": "sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==", "funding": [ { "type": "opencollective", @@ -6587,6 +6170,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { "browserslist": "^4.21.10", "caniuse-lite": "^1.0.30001520", @@ -6607,8 +6191,7 @@ }, "node_modules/available-typed-arrays": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -6618,21 +6201,18 @@ }, "node_modules/aws-sign2": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/aws4": { "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" + "license": "MIT" }, "node_modules/axios": { "version": "0.25.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz", - "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==", + "license": "MIT", "dependencies": { "follow-redirects": "^1.14.7" } @@ -6642,6 +6222,7 @@ "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, + "license": "MIT", "dependencies": { "@jest/transform": "^29.7.0", "@types/babel__core": "^7.1.14", @@ -6660,9 +6241,8 @@ }, "node_modules/babel-jest/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -6675,9 +6255,8 @@ }, "node_modules/babel-jest/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -6691,9 +6270,8 @@ }, "node_modules/babel-jest/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -6703,24 +6281,21 @@ }, "node_modules/babel-jest/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/babel-jest/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/babel-jest/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -6730,8 +6305,7 @@ }, "node_modules/babel-loader": { "version": "8.2.5", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", - "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", + "license": "MIT", "dependencies": { "find-cache-dir": "^3.3.1", "loader-utils": "^2.0.0", @@ -6748,8 +6322,7 @@ }, "node_modules/babel-loader/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==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.5", "ajv": "^6.12.4", @@ -6765,8 +6338,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "7.10.4", "@mdx-js/util": "1.6.22" @@ -6781,21 +6353,18 @@ }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "7.10.4" }, @@ -6806,14 +6375,12 @@ }, "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==" + "license": "MIT" }, "node_modules/babel-plugin-istanbul": { "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, + "license": "BSD-3-Clause", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", @@ -6827,9 +6394,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, + "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", @@ -6843,18 +6409,16 @@ }, "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, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/babel-plugin-jest-hoist": { "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, + "license": "MIT", "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", @@ -6867,8 +6431,7 @@ }, "node_modules/babel-plugin-polyfill-corejs2": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "license": "MIT", "dependencies": { "@babel/compat-data": "^7.17.7", "@babel/helper-define-polyfill-provider": "^0.3.3", @@ -6880,16 +6443,14 @@ }, "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==", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/babel-plugin-polyfill-corejs3": { "version": "0.5.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", - "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", + "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.1", "core-js-compat": "^3.21.0" @@ -6900,8 +6461,7 @@ }, "node_modules/babel-plugin-polyfill-regenerator": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", - "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", + "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.3.1" }, @@ -6914,6 +6474,7 @@ "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz", "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", @@ -6937,9 +6498,8 @@ }, "node_modules/babel-preset-jest": { "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, + "license": "MIT", "dependencies": { "babel-plugin-jest-hoist": "^29.6.3", "babel-preset-current-node-syntax": "^1.0.0" @@ -6953,16 +6513,14 @@ }, "node_modules/babylon": { "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "license": "MIT", "bin": { "babylon": "bin/babylon.js" } }, "node_modules/bail": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz", - "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -6970,13 +6528,11 @@ }, "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==" + "license": "MIT" }, "node_modules/base": { "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "license": "MIT", "dependencies": { "cache-base": "^1.0.1", "class-utils": "^0.3.5", @@ -6992,8 +6548,7 @@ }, "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": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "license": "MIT", "dependencies": { "is-descriptor": "^1.0.0" }, @@ -7003,21 +6558,17 @@ }, "node_modules/base16": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/base16/-/base16-1.0.0.tgz", - "integrity": "sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==" + "license": "MIT" }, "node_modules/base64-arraybuffer": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", - "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", + "license": "MIT", "engines": { "node": ">= 0.6.0" } }, "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", @@ -7031,41 +6582,37 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/batch": { "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==" + "license": "MIT" }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "license": "BSD-3-Clause", "dependencies": { "tweetnacl": "^0.14.3" } }, "node_modules/big-integer": { "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "license": "Unlicense", "engines": { "node": ">=0.6" } }, "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==", + "license": "MIT", "engines": { "node": "*" } }, "node_modules/bin-build": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", - "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", + "license": "MIT", "dependencies": { "decompress": "^4.0.0", "download": "^6.2.2", @@ -7079,8 +6626,7 @@ }, "node_modules/bin-build/node_modules/cross-spawn": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "license": "MIT", "dependencies": { "lru-cache": "^4.0.1", "shebang-command": "^1.2.0", @@ -7089,8 +6635,7 @@ }, "node_modules/bin-build/node_modules/execa": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "license": "MIT", "dependencies": { "cross-spawn": "^5.0.1", "get-stream": "^3.0.0", @@ -7106,24 +6651,21 @@ }, "node_modules/bin-build/node_modules/get-stream": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-build/node_modules/is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/bin-build/node_modules/lru-cache": { "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "license": "ISC", "dependencies": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" @@ -7131,8 +6673,7 @@ }, "node_modules/bin-build/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": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", "dependencies": { "path-key": "^2.0.0" }, @@ -7142,16 +6683,14 @@ }, "node_modules/bin-build/node_modules/path-key": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-build/node_modules/shebang-command": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", "dependencies": { "shebang-regex": "^1.0.0" }, @@ -7161,16 +6700,14 @@ }, "node_modules/bin-build/node_modules/shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/bin-build/node_modules/which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -7180,13 +6717,11 @@ }, "node_modules/bin-build/node_modules/yallist": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + "license": "ISC" }, "node_modules/bin-check": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", - "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", + "license": "MIT", "dependencies": { "execa": "^0.7.0", "executable": "^4.1.0" @@ -7197,8 +6732,7 @@ }, "node_modules/bin-check/node_modules/cross-spawn": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "license": "MIT", "dependencies": { "lru-cache": "^4.0.1", "shebang-command": "^1.2.0", @@ -7207,8 +6741,7 @@ }, "node_modules/bin-check/node_modules/execa": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "license": "MIT", "dependencies": { "cross-spawn": "^5.0.1", "get-stream": "^3.0.0", @@ -7224,24 +6757,21 @@ }, "node_modules/bin-check/node_modules/get-stream": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-check/node_modules/is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/bin-check/node_modules/lru-cache": { "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "license": "ISC", "dependencies": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" @@ -7249,8 +6779,7 @@ }, "node_modules/bin-check/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": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", "dependencies": { "path-key": "^2.0.0" }, @@ -7260,16 +6789,14 @@ }, "node_modules/bin-check/node_modules/path-key": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-check/node_modules/shebang-command": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", "dependencies": { "shebang-regex": "^1.0.0" }, @@ -7279,16 +6806,14 @@ }, "node_modules/bin-check/node_modules/shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/bin-check/node_modules/which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -7298,13 +6823,11 @@ }, "node_modules/bin-check/node_modules/yallist": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + "license": "ISC" }, "node_modules/bin-version": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", - "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", + "license": "MIT", "dependencies": { "execa": "^1.0.0", "find-versions": "^3.0.0" @@ -7315,8 +6838,7 @@ }, "node_modules/bin-version-check": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", - "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "license": "MIT", "dependencies": { "bin-version": "^3.0.0", "semver": "^5.6.0", @@ -7328,16 +6850,14 @@ }, "node_modules/bin-version-check/node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/bin-version/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==", + "license": "MIT", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -7351,8 +6871,7 @@ }, "node_modules/bin-version/node_modules/execa": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", "dependencies": { "cross-spawn": "^6.0.0", "get-stream": "^4.0.0", @@ -7368,16 +6887,14 @@ }, "node_modules/bin-version/node_modules/is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/bin-version/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": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", "dependencies": { "path-key": "^2.0.0" }, @@ -7387,24 +6904,21 @@ }, "node_modules/bin-version/node_modules/path-key": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-version/node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/bin-version/node_modules/shebang-command": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", "dependencies": { "shebang-regex": "^1.0.0" }, @@ -7414,16 +6928,14 @@ }, "node_modules/bin-version/node_modules/shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/bin-version/node_modules/which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -7433,8 +6945,7 @@ }, "node_modules/bin-wrapper": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", - "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "license": "MIT", "dependencies": { "bin-check": "^4.1.0", "bin-version-check": "^4.0.0", @@ -7449,16 +6960,14 @@ }, "node_modules/bin-wrapper/node_modules/@sindresorhus/is": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", - "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-wrapper/node_modules/cacheable-request": { "version": "2.1.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", - "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", + "license": "MIT", "dependencies": { "clone-response": "1.0.2", "get-stream": "3.0.0", @@ -7471,8 +6980,7 @@ }, "node_modules/bin-wrapper/node_modules/download": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", - "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "license": "MIT", "dependencies": { "archive-type": "^4.0.0", "caw": "^2.0.1", @@ -7493,32 +7001,28 @@ }, "node_modules/bin-wrapper/node_modules/download/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-wrapper/node_modules/file-type": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", - "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/bin-wrapper/node_modules/get-stream": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-wrapper/node_modules/got": { "version": "8.3.2", - "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", - "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "license": "MIT", "dependencies": { "@sindresorhus/is": "^0.7.0", "cacheable-request": "^2.1.1", @@ -7544,53 +7048,46 @@ }, "node_modules/bin-wrapper/node_modules/got/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-wrapper/node_modules/http-cache-semantics": { "version": "3.8.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", - "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==" + "license": "BSD-2-Clause" }, "node_modules/bin-wrapper/node_modules/import-lazy": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", - "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/bin-wrapper/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": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/bin-wrapper/node_modules/keyv": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", - "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "license": "MIT", "dependencies": { "json-buffer": "3.0.0" } }, "node_modules/bin-wrapper/node_modules/lowercase-keys": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", - "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/bin-wrapper/node_modules/make-dir": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "license": "MIT", "dependencies": { "pify": "^3.0.0" }, @@ -7600,16 +7097,14 @@ }, "node_modules/bin-wrapper/node_modules/make-dir/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-wrapper/node_modules/normalize-url": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", - "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "license": "MIT", "dependencies": { "prepend-http": "^2.0.0", "query-string": "^5.0.1", @@ -7621,16 +7116,14 @@ }, "node_modules/bin-wrapper/node_modules/p-cancelable": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", - "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/bin-wrapper/node_modules/p-event": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", - "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", + "license": "MIT", "dependencies": { "p-timeout": "^2.0.1" }, @@ -7640,8 +7133,7 @@ }, "node_modules/bin-wrapper/node_modules/p-timeout": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", - "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "license": "MIT", "dependencies": { "p-finally": "^1.0.0" }, @@ -7651,8 +7143,7 @@ }, "node_modules/bin-wrapper/node_modules/sort-keys": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", - "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", + "license": "MIT", "dependencies": { "is-plain-obj": "^1.0.0" }, @@ -7662,28 +7153,22 @@ }, "node_modules/binary": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", - "integrity": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==", + "license": "MIT", "dependencies": { "buffers": "~0.1.1", "chainsaw": "~0.1.0" - }, - "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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/bl": { "version": "1.2.3", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", - "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "license": "MIT", "dependencies": { "readable-stream": "^2.3.5", "safe-buffer": "^5.1.1" @@ -7691,13 +7176,11 @@ }, "node_modules/bl/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "license": "MIT" }, "node_modules/bl/node_modules/readable-stream": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -7710,26 +7193,21 @@ }, "node_modules/bl/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==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/bluebird": { "version": "3.4.7", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz", - "integrity": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==" + "license": "MIT" }, "node_modules/bn.js": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" + "license": "MIT" }, "node_modules/body": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz", - "integrity": "sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==", "dependencies": { "continuable-cache": "^0.3.1", "error": "^7.0.0", @@ -7739,8 +7217,7 @@ }, "node_modules/body-parser": { "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==", + "license": "MIT", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", @@ -7762,34 +7239,28 @@ }, "node_modules/body-parser/node_modules/bytes": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", "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==", + "license": "MIT", "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "node_modules/body/node_modules/bytes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz", - "integrity": "sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==" + "version": "1.0.0" }, "node_modules/body/node_modules/raw-body": { "version": "1.1.7", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz", - "integrity": "sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg==", + "license": "MIT", "dependencies": { "bytes": "1", "string_decoder": "0.10" @@ -7800,13 +7271,11 @@ }, "node_modules/body/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==" + "license": "MIT" }, "node_modules/bonjour-service": { "version": "1.0.13", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.13.tgz", - "integrity": "sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==", + "license": "MIT", "dependencies": { "array-flatten": "^2.1.2", "dns-equal": "^1.0.0", @@ -7816,13 +7285,11 @@ }, "node_modules/boolbase": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + "license": "ISC" }, "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==", + "license": "MIT", "dependencies": { "ansi-align": "^3.0.0", "camelcase": "^6.2.0", @@ -7842,8 +7309,7 @@ }, "node_modules/boxen/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -7856,8 +7322,7 @@ }, "node_modules/boxen/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -7871,8 +7336,7 @@ }, "node_modules/boxen/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -7882,21 +7346,18 @@ }, "node_modules/boxen/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==" + "license": "MIT" }, "node_modules/boxen/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/boxen/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -7906,8 +7367,7 @@ }, "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==", + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -7915,8 +7375,7 @@ }, "node_modules/braces": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", "dependencies": { "fill-range": "^7.0.1" }, @@ -7926,13 +7385,11 @@ }, "node_modules/brorand": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "buffer-xor": "^1.0.3", "cipher-base": "^1.0.0", @@ -7944,8 +7401,7 @@ }, "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==", + "license": "MIT", "dependencies": { "browserify-aes": "^1.0.4", "browserify-des": "^1.0.0", @@ -7954,8 +7410,7 @@ }, "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==", + "license": "MIT", "dependencies": { "cipher-base": "^1.0.1", "des.js": "^1.0.0", @@ -7965,8 +7420,7 @@ }, "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==", + "license": "MIT", "dependencies": { "bn.js": "^5.0.0", "randombytes": "^2.0.1" @@ -7974,8 +7428,7 @@ }, "node_modules/browserify-sign": { "version": "4.2.2", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.2.tgz", - "integrity": "sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==", + "license": "ISC", "dependencies": { "bn.js": "^5.2.1", "browserify-rsa": "^4.1.0", @@ -7993,8 +7446,6 @@ }, "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", @@ -8008,12 +7459,12 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "pako": "~1.0.5" } @@ -8036,6 +7487,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { "caniuse-lite": "^1.0.30001669", "electron-to-chromium": "^1.5.41", @@ -8051,17 +7503,14 @@ }, "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, + "license": "Apache-2.0", "dependencies": { "node-int64": "^0.4.0" } }, "node_modules/buffer": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "funding": [ { "type": "github", @@ -8076,6 +7525,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" @@ -8083,8 +7533,7 @@ }, "node_modules/buffer-alloc": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "license": "MIT", "dependencies": { "buffer-alloc-unsafe": "^1.1.0", "buffer-fill": "^1.0.0" @@ -8092,65 +7541,54 @@ }, "node_modules/buffer-alloc-unsafe": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" + "license": "MIT" }, "node_modules/buffer-crc32": { "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "license": "MIT", "engines": { "node": "*" } }, "node_modules/buffer-fill": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==" + "license": "MIT" }, "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==" + "license": "MIT" }, "node_modules/buffer-indexof-polyfill": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz", - "integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==", + "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/buffer-xor": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" + "license": "MIT" }, "node_modules/buffers": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", - "integrity": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==", "engines": { "node": ">=0.2.0" } }, "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": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" + "license": "MIT" }, "node_modules/bytes": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "license": "MIT", "engines": { "node": ">= 0.8" } }, "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==", + "license": "MIT", "dependencies": { "collection-visit": "^1.0.0", "component-emitter": "^1.2.1", @@ -8168,8 +7606,7 @@ }, "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==", + "license": "MIT", "dependencies": { "clone-response": "^1.0.2", "get-stream": "^5.1.0", @@ -8185,8 +7622,7 @@ }, "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==", + "license": "MIT", "dependencies": { "pump": "^3.0.0" }, @@ -8199,24 +7635,21 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" @@ -8227,13 +7660,11 @@ }, "node_modules/call-me-maybe": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", - "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==" + "license": "MIT" }, "node_modules/caller-callsite": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "license": "MIT", "dependencies": { "callsites": "^2.0.0" }, @@ -8243,16 +7674,14 @@ }, "node_modules/caller-callsite/node_modules/callsites": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "license": "MIT", "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": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "license": "MIT", "dependencies": { "caller-callsite": "^2.0.0" }, @@ -8262,16 +7691,14 @@ }, "node_modules/callsites": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "pascal-case": "^3.1.2", "tslib": "^2.0.3" @@ -8279,8 +7706,7 @@ }, "node_modules/camelcase": { "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -8290,16 +7716,14 @@ }, "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==", + "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/camelcase-keys": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==", + "license": "MIT", "dependencies": { "camelcase": "^2.0.0", "map-obj": "^1.0.0" @@ -8310,16 +7734,14 @@ }, "node_modules/camelcase-keys/node_modules/camelcase": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "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==", + "license": "MIT", "dependencies": { "browserslist": "^4.0.0", "caniuse-lite": "^1.0.0", @@ -8344,17 +7766,16 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/caseless": { "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + "license": "Apache-2.0" }, "node_modules/caw": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", - "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", + "license": "MIT", "dependencies": { "get-proxy": "^2.0.0", "isurl": "^1.0.0-alpha5", @@ -8367,8 +7788,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8376,19 +7796,14 @@ }, "node_modules/chainsaw": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", - "integrity": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==", + "license": "MIT/X11", "dependencies": { "traverse": ">=0.3.0 <0.4" - }, - "engines": { - "node": "*" } }, "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==", + "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -8400,17 +7815,15 @@ }, "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, + "license": "MIT", "engines": { "node": ">=10" } }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8418,8 +7831,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8427,8 +7839,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -8436,16 +7847,14 @@ }, "node_modules/charset": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/charset/-/charset-1.0.1.tgz", - "integrity": "sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==", + "license": "MIT", "engines": { "node": ">=4.0.0" } }, "node_modules/cheerio": { "version": "1.0.0-rc.12", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", - "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", + "license": "MIT", "dependencies": { "cheerio-select": "^2.1.0", "dom-serializer": "^2.0.0", @@ -8464,8 +7873,7 @@ }, "node_modules/cheerio-select": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", - "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", "css-select": "^5.1.0", @@ -8480,8 +7888,7 @@ }, "node_modules/cheerio-select/node_modules/css-select": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.1.0", @@ -8495,8 +7902,7 @@ }, "node_modules/cheerio-select/node_modules/dom-serializer": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", @@ -8508,8 +7914,7 @@ }, "node_modules/cheerio-select/node_modules/domhandler": { "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.3.0" }, @@ -8522,8 +7927,7 @@ }, "node_modules/cheerio-select/node_modules/domutils": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", - "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", + "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", @@ -8535,8 +7939,7 @@ }, "node_modules/cheerio-select/node_modules/entities": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", - "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", + "license": "BSD-2-Clause", "engines": { "node": ">=0.12" }, @@ -8546,8 +7949,7 @@ }, "node_modules/cheerio/node_modules/dom-serializer": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "license": "MIT", "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", @@ -8559,8 +7961,7 @@ }, "node_modules/cheerio/node_modules/domhandler": { "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.3.0" }, @@ -8573,8 +7974,7 @@ }, "node_modules/cheerio/node_modules/domutils": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", - "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", + "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", @@ -8586,8 +7986,7 @@ }, "node_modules/cheerio/node_modules/entities": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", - "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", + "license": "BSD-2-Clause", "engines": { "node": ">=0.12" }, @@ -8597,8 +7996,6 @@ }, "node_modules/cheerio/node_modules/htmlparser2": { "version": "8.0.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.1.tgz", - "integrity": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -8606,6 +8003,7 @@ "url": "https://github.com/sponsors/fb55" } ], + "license": "MIT", "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", @@ -8615,14 +8013,13 @@ }, "node_modules/chokidar": { "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "funding": [ { "type": "individual", "url": "https://paulmillr.com/funding/" } ], + "license": "MIT", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -8641,21 +8038,18 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=6.0" } }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -8669,8 +8063,7 @@ }, "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==", + "license": "MIT", "dependencies": { "arr-union": "^3.1.0", "define-property": "^0.2.5", @@ -8683,8 +8076,7 @@ }, "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": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -8694,8 +8086,7 @@ }, "node_modules/class-utils/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": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -8705,8 +8096,7 @@ }, "node_modules/class-utils/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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -8716,13 +8106,11 @@ }, "node_modules/class-utils/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==" + "license": "MIT" }, "node_modules/class-utils/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": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -8732,8 +8120,7 @@ }, "node_modules/class-utils/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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -8743,8 +8130,7 @@ }, "node_modules/class-utils/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==", + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -8756,8 +8142,7 @@ }, "node_modules/class-utils/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==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -8769,8 +8154,7 @@ }, "node_modules/clean-css": { "version": "5.3.1", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.1.tgz", - "integrity": "sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==", + "license": "MIT", "dependencies": { "source-map": "~0.6.0" }, @@ -8780,24 +8164,21 @@ }, "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==", + "license": "BSD-3-Clause", "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==", + "license": "MIT", "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==", + "license": "MIT", "engines": { "node": ">=6" }, @@ -8807,9 +8188,8 @@ }, "node_modules/cli-cursor": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", - "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", "dev": true, + "license": "MIT", "dependencies": { "restore-cursor": "^4.0.0" }, @@ -8822,8 +8202,7 @@ }, "node_modules/cli-table3": { "version": "0.6.2", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.2.tgz", - "integrity": "sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==", + "license": "MIT", "dependencies": { "string-width": "^4.2.0" }, @@ -8836,9 +8215,8 @@ }, "node_modules/cli-truncate": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", "dev": true, + "license": "MIT", "dependencies": { "slice-ansi": "^5.0.0", "string-width": "^5.0.0" @@ -8852,9 +8230,8 @@ }, "node_modules/cli-truncate/node_modules/ansi-regex": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -8864,15 +8241,13 @@ }, "node_modules/cli-truncate/node_modules/emoji-regex": { "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/cli-truncate/node_modules/string-width": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, + "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", @@ -8887,9 +8262,8 @@ }, "node_modules/cli-truncate/node_modules/strip-ansi": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -8902,8 +8276,7 @@ }, "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==", + "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", @@ -8915,8 +8288,7 @@ }, "node_modules/clone-deep": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4", "kind-of": "^6.0.2", @@ -8928,25 +8300,22 @@ }, "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=", + "license": "MIT", "dependencies": { "mimic-response": "^1.0.0" } }, "node_modules/clsx": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/co": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, + "license": "MIT", "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" @@ -8954,8 +8323,7 @@ }, "node_modules/coa": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "license": "MIT", "dependencies": { "@types/q": "^1.5.1", "chalk": "^2.4.1", @@ -8967,8 +8335,7 @@ }, "node_modules/codemirror": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.1.tgz", - "integrity": "sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==", + "license": "MIT", "dependencies": { "@codemirror/autocomplete": "^6.0.0", "@codemirror/commands": "^6.0.0", @@ -8981,9 +8348,7 @@ }, "node_modules/coffee-script": { "version": "1.12.7", - "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", - "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", - "deprecated": "CoffeeScript on NPM has moved to \"coffeescript\" (no hyphen)", + "license": "MIT", "bin": { "cake": "bin/cake", "coffee": "bin/coffee" @@ -8994,8 +8359,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -9003,14 +8367,12 @@ }, "node_modules/collect-v8-coverage": { "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 + "dev": true, + "license": "MIT" }, "node_modules/collection-visit": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "license": "MIT", "dependencies": { "map-visit": "^1.0.0", "object-visit": "^1.0.0" @@ -9021,8 +8383,7 @@ }, "node_modules/color": { "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "license": "MIT", "dependencies": { "color-convert": "^1.9.3", "color-string": "^1.6.0" @@ -9030,21 +8391,18 @@ }, "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==", + "license": "MIT", "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": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + "license": "MIT" }, "node_modules/color-string": { "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "license": "MIT", "dependencies": { "color-name": "^1.0.0", "simple-swizzle": "^0.2.2" @@ -9052,26 +8410,22 @@ }, "node_modules/colord": { "version": "2.9.2", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", - "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==" + "license": "MIT" }, "node_modules/colorette": { "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + "license": "MIT" }, "node_modules/combine-promises": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/combine-promises/-/combine-promises-1.1.0.tgz", - "integrity": "sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==", + "license": "MIT", "engines": { "node": ">=10" } }, "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==", + "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" }, @@ -9081,8 +8435,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -9090,31 +8443,26 @@ }, "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==", + "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/commondir": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "license": "MIT" }, "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==" + "license": "MIT" }, "node_modules/component-event": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/component-event/-/component-event-0.2.1.tgz", - "integrity": "sha512-wGA++isMqiDq1jPYeyv2as/Bt/u+3iLW0rEa+8NQ82jAv3TgqMiCM+B2SaBdn2DfLilLjjq736YcezihRYhfxw==" + "license": "MIT" }, "node_modules/compressible": { "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" }, @@ -9124,8 +8472,7 @@ }, "node_modules/compression": { "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "license": "MIT", "dependencies": { "accepts": "~1.3.5", "bytes": "3.0.0", @@ -9141,21 +8488,17 @@ }, "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==", + "license": "MIT", "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "node_modules/compute-gcd": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz", - "integrity": "sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==", "dependencies": { "validate.io-array": "^1.0.3", "validate.io-function": "^1.0.2", @@ -9164,8 +8507,6 @@ }, "node_modules/compute-lcm": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz", - "integrity": "sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==", "dependencies": { "compute-gcd": "^1.2.1", "validate.io-array": "^1.0.3", @@ -9175,16 +8516,14 @@ }, "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=" + "license": "MIT" }, "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" ], + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -9194,13 +8533,11 @@ }, "node_modules/concat-stream/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "license": "MIT" }, "node_modules/concat-stream/node_modules/readable-stream": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -9213,32 +8550,28 @@ }, "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==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/concat-with-sourcemaps": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", - "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "license": "ISC", "dependencies": { "source-map": "^0.6.1" } }, "node_modules/concat-with-sourcemaps/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==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/config-chain": { "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "license": "MIT", "dependencies": { "ini": "^1.3.4", "proto-list": "~1.2.1" @@ -9246,8 +8579,7 @@ }, "node_modules/configstore": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", - "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "license": "BSD-2-Clause", "dependencies": { "dot-prop": "^5.2.0", "graceful-fs": "^4.1.2", @@ -9262,57 +8594,45 @@ }, "node_modules/connect-history-api-fallback": { "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==", + "license": "MIT", "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==" + "license": "MIT" }, "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==" + "version": "1.2.0" }, "node_modules/console-stream": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/console-stream/-/console-stream-0.1.1.tgz", - "integrity": "sha512-QC/8l9e6ofi6nqZ5PawlDgzmMw3OxIXtvolBzap/F4UDBJlDaZRSNbL/lb41C29FcbSJncBFlJFj2WJoNyZRfQ==" + "version": "0.1.1" }, "node_modules/constants-browserify": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==" + "license": "MIT" }, "node_modules/content-disposition": { "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", + "license": "MIT", "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==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/continuable-cache": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz", - "integrity": "sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==" + "version": "0.3.1" }, "node_modules/contra": { "version": "1.9.4", - "resolved": "https://registry.npmjs.org/contra/-/contra-1.9.4.tgz", - "integrity": "sha512-N9ArHAqwR/lhPq4OdIAwH4e1btn6EIZMAz4TazjnzCiVECcWUPTma+dRAM38ERImEJBh8NiCCpjoQruSZ+agYg==", + "license": "MIT", "dependencies": { "atoa": "1.0.0", "ticky": "1.0.1" @@ -9320,37 +8640,32 @@ }, "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==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.1" } }, "node_modules/cookie": { "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "license": "MIT", "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": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + "license": "MIT" }, "node_modules/copy-descriptor": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/copy-text-to-clipboard": { "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==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -9360,8 +8675,7 @@ }, "node_modules/copy-webpack-plugin": { "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==", + "license": "MIT", "dependencies": { "fast-glob": "^3.2.11", "glob-parent": "^6.0.1", @@ -9383,8 +8697,7 @@ }, "node_modules/copy-webpack-plugin/node_modules/ajv": { "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -9398,8 +8711,7 @@ }, "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, @@ -9409,8 +8721,7 @@ }, "node_modules/copy-webpack-plugin/node_modules/glob-parent": { "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "license": "ISC", "dependencies": { "is-glob": "^4.0.3" }, @@ -9420,8 +8731,7 @@ }, "node_modules/copy-webpack-plugin/node_modules/globby": { "version": "13.1.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz", - "integrity": "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==", + "license": "MIT", "dependencies": { "dir-glob": "^3.0.1", "fast-glob": "^3.2.11", @@ -9438,13 +8748,11 @@ }, "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "node_modules/copy-webpack-plugin/node_modules/schema-utils": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.8.0", @@ -9461,8 +8769,7 @@ }, "node_modules/copy-webpack-plugin/node_modules/slash": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -9472,9 +8779,8 @@ }, "node_modules/core-js": { "version": "3.25.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.25.1.tgz", - "integrity": "sha512-sr0FY4lnO1hkQ4gLDr24K0DGnweGO1QwSj5BpfQjpSJPdqWalja4cTps29Y/PJVG/P7FYlPDkH3hO+Tr0CvDgQ==", "hasInstallScript": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" @@ -9482,8 +8788,7 @@ }, "node_modules/core-js-compat": { "version": "3.26.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz", - "integrity": "sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==", + "license": "MIT", "dependencies": { "browserslist": "^4.21.4" }, @@ -9494,9 +8799,8 @@ }, "node_modules/core-js-pure": { "version": "3.24.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.24.0.tgz", - "integrity": "sha512-uzMmW8cRh7uYw4JQtzqvGWRyC2T5+4zipQLQdi2FmiRqP83k3d6F3stv2iAlNhOs6cXN401FCD5TL0vvleuHgA==", "hasInstallScript": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" @@ -9504,21 +8808,18 @@ }, "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==" + "license": "MIT" }, "node_modules/cose-base": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/cose-base/-/cose-base-1.0.3.tgz", - "integrity": "sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==", + "license": "MIT", "dependencies": { "layout-base": "^1.0.0" } }, "node_modules/cosmiconfig": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -9532,8 +8833,7 @@ }, "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==", + "license": "MIT", "dependencies": { "bn.js": "^4.1.0", "elliptic": "^6.5.3" @@ -9541,13 +8841,11 @@ }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "cipher-base": "^1.0.1", "inherits": "^2.0.1", @@ -9558,8 +8856,7 @@ }, "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==", + "license": "MIT", "dependencies": { "cipher-base": "^1.0.3", "create-hash": "^1.1.0", @@ -9662,21 +8959,18 @@ }, "node_modules/crelt": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz", - "integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==" + "license": "MIT" }, "node_modules/cross-fetch": { "version": "3.1.8", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", - "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", + "license": "MIT", "dependencies": { "node-fetch": "^2.6.12" } }, "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==", + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -9688,8 +8982,7 @@ }, "node_modules/crowdin-cli": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/crowdin-cli/-/crowdin-cli-0.3.0.tgz", - "integrity": "sha512-s1vSRqWalCqd+vW7nF4oZo1a2pMpEgwIiwVlPRD0HmGY3HjJwQKXqZ26NpX5qCDVN8UdEsScy+2jle0PPQBmAg==", + "license": "MIT", "dependencies": { "request": "^2.53.0", "yamljs": "^0.2.1", @@ -9701,16 +8994,14 @@ }, "node_modules/crowdin-cli/node_modules/yargs": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-2.3.0.tgz", - "integrity": "sha512-w48USdbTdaVMcE3CnXsEtSY9zYSN7dTyVnLBgrJF2quA5rLwobC9zixxfexereLGFaxjxtR3oWdydC0qoayakw==", + "license": "MIT/X11", "dependencies": { "wordwrap": "0.0.2" } }, "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==", + "license": "MIT", "dependencies": { "browserify-cipher": "^1.0.0", "browserify-sign": "^4.0.0", @@ -9730,29 +9021,25 @@ }, "node_modules/crypto-js": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", - "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==" + "license": "MIT" }, "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==", + "license": "MIT", "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": "sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==", + "license": "MIT", "engines": { "node": "*" } }, "node_modules/css-declaration-sorter": { "version": "6.3.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", - "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", + "license": "ISC", "engines": { "node": "^10 || ^12 || >=14" }, @@ -9762,16 +9049,14 @@ }, "node_modules/css-line-break": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", - "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "license": "MIT", "dependencies": { "utrie": "^1.0.2" } }, "node_modules/css-loader": { "version": "6.7.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", - "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", + "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", "postcss": "^8.4.7", @@ -9795,8 +9080,7 @@ }, "node_modules/css-minimizer-webpack-plugin": { "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==", + "license": "MIT", "dependencies": { "cssnano": "^5.1.8", "jest-worker": "^27.5.1", @@ -9832,8 +9116,7 @@ }, "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -9847,8 +9130,7 @@ }, "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, @@ -9858,13 +9140,11 @@ }, "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.8.0", @@ -9881,16 +9161,14 @@ }, "node_modules/css-minimizer-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==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/css-select": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.0.1", @@ -9904,13 +9182,11 @@ }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "mdn-data": "2.0.14", "source-map": "^0.6.1" @@ -9921,16 +9197,14 @@ }, "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==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/css-what": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "license": "BSD-2-Clause", "engines": { "node": ">= 6" }, @@ -9940,8 +9214,7 @@ }, "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==", + "license": "MIT", "bin": { "cssesc": "bin/cssesc" }, @@ -9951,8 +9224,7 @@ }, "node_modules/cssnano": { "version": "5.1.12", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.12.tgz", - "integrity": "sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==", + "license": "MIT", "dependencies": { "cssnano-preset-default": "^5.2.12", "lilconfig": "^2.0.3", @@ -9971,8 +9243,7 @@ }, "node_modules/cssnano-preset-advanced": { "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==", + "license": "MIT", "dependencies": { "autoprefixer": "^10.4.12", "cssnano-preset-default": "^5.2.14", @@ -9990,8 +9261,7 @@ }, "node_modules/cssnano-preset-default": { "version": "5.2.14", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", - "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "license": "MIT", "dependencies": { "css-declaration-sorter": "^6.3.1", "cssnano-utils": "^3.1.0", @@ -10032,24 +9302,21 @@ }, "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": "sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==", + "license": "MIT", "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": "sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.0" }, @@ -10059,13 +9326,11 @@ }, "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==" + "license": "ISC" }, "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==", + "license": "MIT", "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" @@ -10080,24 +9345,21 @@ }, "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==", + "license": "BSD-3-Clause", "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==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/cssnano-utils": { "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==", + "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, @@ -10107,8 +9369,7 @@ }, "node_modules/csso": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "license": "MIT", "dependencies": { "css-tree": "^1.1.2" }, @@ -10118,13 +9379,11 @@ }, "node_modules/csstype": { "version": "3.0.10", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz", - "integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==" + "license": "MIT" }, "node_modules/currently-unhandled": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", + "license": "MIT", "dependencies": { "array-find-index": "^1.0.1" }, @@ -10134,8 +9393,7 @@ }, "node_modules/cytoscape": { "version": "3.28.1", - "resolved": "https://registry.npmjs.org/cytoscape/-/cytoscape-3.28.1.tgz", - "integrity": "sha512-xyItz4O/4zp9/239wCcH8ZcFuuZooEeF8KHRmzjDfGdXsj3OG9MFSMA0pJE0uX3uCN/ygof6hHf4L7lst+JaDg==", + "license": "MIT", "dependencies": { "heap": "^0.2.6", "lodash": "^4.17.21" @@ -10146,8 +9404,7 @@ }, "node_modules/cytoscape-cose-bilkent": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz", - "integrity": "sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==", + "license": "MIT", "dependencies": { "cose-base": "^1.0.0" }, @@ -10157,8 +9414,7 @@ }, "node_modules/cytoscape-fcose": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz", - "integrity": "sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==", + "license": "MIT", "dependencies": { "cose-base": "^2.2.0" }, @@ -10168,21 +9424,18 @@ }, "node_modules/cytoscape-fcose/node_modules/cose-base": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cose-base/-/cose-base-2.2.0.tgz", - "integrity": "sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==", + "license": "MIT", "dependencies": { "layout-base": "^2.0.0" } }, "node_modules/cytoscape-fcose/node_modules/layout-base": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/layout-base/-/layout-base-2.0.1.tgz", - "integrity": "sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==" + "license": "MIT" }, "node_modules/d3": { "version": "7.9.0", - "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", - "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", + "license": "ISC", "dependencies": { "d3-array": "3", "d3-axis": "3", @@ -10221,8 +9474,7 @@ }, "node_modules/d3-array": { "version": "3.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", - "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", "dependencies": { "internmap": "1 - 2" }, @@ -10232,16 +9484,14 @@ }, "node_modules/d3-axis": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", - "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-brush": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", - "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", + "license": "ISC", "dependencies": { "d3-dispatch": "1 - 3", "d3-drag": "2 - 3", @@ -10255,8 +9505,7 @@ }, "node_modules/d3-chord": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", - "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", + "license": "ISC", "dependencies": { "d3-path": "1 - 3" }, @@ -10266,16 +9515,14 @@ }, "node_modules/d3-color": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", - "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-contour": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", - "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", + "license": "ISC", "dependencies": { "d3-array": "^3.2.0" }, @@ -10285,8 +9532,7 @@ }, "node_modules/d3-delaunay": { "version": "6.0.4", - "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", - "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", + "license": "ISC", "dependencies": { "delaunator": "5" }, @@ -10296,16 +9542,14 @@ }, "node_modules/d3-dispatch": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", - "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-drag": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", - "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "license": "ISC", "dependencies": { "d3-dispatch": "1 - 3", "d3-selection": "3" @@ -10316,8 +9560,7 @@ }, "node_modules/d3-dsv": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", - "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", + "license": "ISC", "dependencies": { "commander": "7", "iconv-lite": "0.6", @@ -10340,16 +9583,14 @@ }, "node_modules/d3-dsv/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==", + "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/d3-dsv/node_modules/iconv-lite": { "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, @@ -10359,16 +9600,14 @@ }, "node_modules/d3-ease": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", - "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", "engines": { "node": ">=12" } }, "node_modules/d3-fetch": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", - "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", + "license": "ISC", "dependencies": { "d3-dsv": "1 - 3" }, @@ -10378,8 +9617,7 @@ }, "node_modules/d3-force": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", - "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", + "license": "ISC", "dependencies": { "d3-dispatch": "1 - 3", "d3-quadtree": "1 - 3", @@ -10391,16 +9629,14 @@ }, "node_modules/d3-format": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-geo": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", - "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", "dependencies": { "d3-array": "2.5.0 - 3" }, @@ -10410,16 +9646,14 @@ }, "node_modules/d3-hierarchy": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", - "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-interpolate": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", - "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", "dependencies": { "d3-color": "1 - 3" }, @@ -10429,40 +9663,35 @@ }, "node_modules/d3-path": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", - "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-polygon": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", - "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-quadtree": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", - "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-random": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", - "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-scale": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", - "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", "dependencies": { "d3-array": "2.10.0 - 3", "d3-format": "1 - 3", @@ -10476,8 +9705,7 @@ }, "node_modules/d3-scale-chromatic": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", - "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", + "license": "ISC", "dependencies": { "d3-color": "1 - 3", "d3-interpolate": "1 - 3" @@ -10488,16 +9716,14 @@ }, "node_modules/d3-selection": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", - "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-shape": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", - "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", "dependencies": { "d3-path": "^3.1.0" }, @@ -10507,8 +9733,7 @@ }, "node_modules/d3-time": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", - "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", "dependencies": { "d3-array": "2 - 3" }, @@ -10518,8 +9743,7 @@ }, "node_modules/d3-time-format": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", - "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", "dependencies": { "d3-time": "1 - 3" }, @@ -10529,16 +9753,14 @@ }, "node_modules/d3-timer": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", - "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/d3-transition": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", - "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "license": "ISC", "dependencies": { "d3-color": "1 - 3", "d3-dispatch": "1 - 3", @@ -10555,8 +9777,7 @@ }, "node_modules/d3-zoom": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", - "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", + "license": "ISC", "dependencies": { "d3-dispatch": "1 - 3", "d3-drag": "2 - 3", @@ -10570,8 +9791,7 @@ }, "node_modules/dagre-d3-es": { "version": "7.0.9", - "resolved": "https://registry.npmjs.org/dagre-d3-es/-/dagre-d3-es-7.0.9.tgz", - "integrity": "sha512-rYR4QfVmy+sR44IBDvVtcAmOReGBvRCWDpO2QjYwqgh9yijw6eSHBqaPG/LIOEy7aBsniLvtMW6pg19qJhq60w==", + "license": "MIT", "dependencies": { "d3": "^7.8.2", "lodash-es": "^4.17.21" @@ -10579,8 +9799,7 @@ }, "node_modules/dashdash": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" }, @@ -10590,13 +9809,11 @@ }, "node_modules/dayjs": { "version": "1.11.10", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz", - "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" + "license": "MIT" }, "node_modules/debug": { "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -10611,16 +9828,14 @@ }, "node_modules/decamelize": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decode-named-character-reference": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", + "license": "MIT", "dependencies": { "character-entities": "^2.0.0" }, @@ -10631,8 +9846,7 @@ }, "node_modules/decode-named-character-reference/node_modules/character-entities": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -10640,16 +9854,14 @@ }, "node_modules/decode-uri-component": { "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/decompress": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", - "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", + "license": "MIT", "dependencies": { "decompress-tar": "^4.0.0", "decompress-tarbz2": "^4.0.0", @@ -10666,8 +9878,7 @@ }, "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=", + "license": "MIT", "dependencies": { "mimic-response": "^1.0.0" }, @@ -10677,8 +9888,7 @@ }, "node_modules/decompress-tar": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", - "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", + "license": "MIT", "dependencies": { "file-type": "^5.2.0", "is-stream": "^1.1.0", @@ -10690,24 +9900,21 @@ }, "node_modules/decompress-tar/node_modules/file-type": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", - "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/decompress-tar/node_modules/is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decompress-tarbz2": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", - "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", + "license": "MIT", "dependencies": { "decompress-tar": "^4.1.0", "file-type": "^6.1.0", @@ -10721,24 +9928,21 @@ }, "node_modules/decompress-tarbz2/node_modules/file-type": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", - "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/decompress-tarbz2/node_modules/is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decompress-targz": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", - "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", + "license": "MIT", "dependencies": { "decompress-tar": "^4.1.1", "file-type": "^5.2.0", @@ -10750,24 +9954,21 @@ }, "node_modules/decompress-targz/node_modules/file-type": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", - "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/decompress-targz/node_modules/is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decompress-unzip": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", - "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", + "license": "MIT", "dependencies": { "file-type": "^3.8.0", "get-stream": "^2.2.0", @@ -10780,16 +9981,14 @@ }, "node_modules/decompress-unzip/node_modules/file-type": { "version": "3.9.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", - "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decompress-unzip/node_modules/get-stream": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", - "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "license": "MIT", "dependencies": { "object-assign": "^4.0.1", "pinkie-promise": "^2.0.0" @@ -10800,16 +9999,14 @@ }, "node_modules/decompress-unzip/node_modules/pify": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decompress/node_modules/make-dir": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "license": "MIT", "dependencies": { "pify": "^3.0.0" }, @@ -10819,16 +10016,14 @@ }, "node_modules/decompress/node_modules/make-dir/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/decompress/node_modules/pify": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -10838,6 +10033,7 @@ "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", "dev": true, + "license": "MIT", "peerDependencies": { "babel-plugin-macros": "^3.1.0" }, @@ -10849,29 +10045,25 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=4.0.0" } }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/default-gateway": { "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==", + "license": "BSD-2-Clause", "dependencies": { "execa": "^5.0.0" }, @@ -10881,21 +10073,18 @@ }, "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==" + "license": "MIT" }, "node_modules/define-lazy-prop": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/define-properties": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "license": "MIT", "dependencies": { "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" @@ -10909,8 +10098,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-descriptor": "^1.0.2", "isobject": "^3.0.1" @@ -10921,8 +10109,7 @@ }, "node_modules/del": { "version": "6.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", - "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "license": "MIT", "dependencies": { "globby": "^11.0.1", "graceful-fs": "^4.2.4", @@ -10942,40 +10129,35 @@ }, "node_modules/delaunator": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", - "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", + "license": "ISC", "dependencies": { "robust-predicates": "^3.0.2" } }, "node_modules/delayed-stream": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", "engines": { "node": ">=0.4.0" } }, "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==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/dequal": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/des.js": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", - "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "license": "MIT", "dependencies": { "inherits": "^2.0.1", "minimalistic-assert": "^1.0.0" @@ -10983,8 +10165,7 @@ }, "node_modules/destroy": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" @@ -10992,8 +10173,7 @@ }, "node_modules/detab": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/detab/-/detab-2.0.4.tgz", - "integrity": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==", + "license": "MIT", "dependencies": { "repeat-string": "^1.5.4" }, @@ -11004,22 +10184,19 @@ }, "node_modules/detect-newline": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "address": "^1.0.1", "debug": "^2.6.0" @@ -11034,8 +10211,7 @@ }, "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==", + "license": "MIT", "dependencies": { "address": "^1.0.1", "debug": "^2.6.0" @@ -11050,34 +10226,29 @@ }, "node_modules/detect-port-alt/node_modules/debug": { "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/detect-port-alt/node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "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==", + "license": "MIT", "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=" + "license": "MIT" }, "node_modules/diacritics-map": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", - "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", + "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -11092,25 +10263,22 @@ }, "node_modules/diff": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", - "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } }, "node_modules/diff-sequences": { "version": "29.6.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", - "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "dev": true, + "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "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==", + "license": "MIT", "dependencies": { "bn.js": "^4.1.0", "miller-rabin": "^4.0.0", @@ -11119,13 +10287,11 @@ }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, @@ -11135,18 +10301,15 @@ }, "node_modules/discontinuous-range": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", - "integrity": "sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==" + "license": "MIT" }, "node_modules/dns-equal": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + "license": "MIT" }, "node_modules/dns-packet": { "version": "5.4.0", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", - "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", + "license": "MIT", "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" }, @@ -11156,8 +10319,7 @@ }, "node_modules/docusaurus": { "version": "1.14.7", - "resolved": "https://registry.npmjs.org/docusaurus/-/docusaurus-1.14.7.tgz", - "integrity": "sha512-UWqar4ZX0lEcpLc5Tg+MwZ2jhF/1n1toCQRSeoxDON/D+E9ToLr+vTRFVMP/Tk84NXSVjZFRlrjWwM2pXzvLsQ==", + "license": "MIT", "dependencies": { "@babel/core": "^7.12.3", "@babel/plugin-proposal-class-properties": "^7.12.1", @@ -11220,8 +10382,7 @@ }, "node_modules/docusaurus-plugin-openapi-docs": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/docusaurus-plugin-openapi-docs/-/docusaurus-plugin-openapi-docs-2.0.4.tgz", - "integrity": "sha512-jLgEEbMsQ+Y6ihy4y7SmXthUMRDbqAL0OKrdtUaOAxxb/wkLXB28mX74xiZzL928DZJ84IJejHgbjFb2ITcKhA==", + "license": "MIT", "dependencies": { "@apidevtools/json-schema-ref-parser": "^10.1.0", "@docusaurus/plugin-content-docs": ">=2.4.1 <=2.4.3", @@ -11250,8 +10411,7 @@ }, "node_modules/docusaurus-plugin-openapi-docs/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -11264,8 +10424,7 @@ }, "node_modules/docusaurus-plugin-openapi-docs/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -11279,16 +10438,14 @@ }, "node_modules/docusaurus-plugin-openapi-docs/node_modules/clsx": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/docusaurus-plugin-openapi-docs/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -11298,13 +10455,11 @@ }, "node_modules/docusaurus-plugin-openapi-docs/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==" + "license": "MIT" }, "node_modules/docusaurus-plugin-openapi-docs/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==", + "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", @@ -11317,16 +10472,14 @@ }, "node_modules/docusaurus-plugin-openapi-docs/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/docusaurus-plugin-openapi-docs/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -11336,8 +10489,7 @@ }, "node_modules/docusaurus-theme-openapi-docs": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/docusaurus-theme-openapi-docs/-/docusaurus-theme-openapi-docs-2.0.4.tgz", - "integrity": "sha512-w4YodyfMuzvWg6DDDzqb+eNBt4D5ZkMB13343u4zREBdDBOeOK5ikLQuQ+735WqPbAbH4gonvInXLQTAYodCNw==", + "license": "MIT", "dependencies": { "@docusaurus/theme-common": ">=2.4.1 <=2.4.3", "@hookform/error-message": "^2.0.1", @@ -11375,16 +10527,14 @@ }, "node_modules/docusaurus-theme-openapi-docs/node_modules/clsx": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/docusaurus-theme-openapi-docs/node_modules/docusaurus-plugin-sass": { "version": "0.2.5", - "resolved": "https://registry.npmjs.org/docusaurus-plugin-sass/-/docusaurus-plugin-sass-0.2.5.tgz", - "integrity": "sha512-Z+D0fLFUKcFpM+bqSUmqKIU+vO+YF1xoEQh5hoFreg2eMf722+siwXDD+sqtwU8E4MvVpuvsQfaHwODNlxJAEg==", + "license": "MIT", "dependencies": { "sass-loader": "^10.1.1" }, @@ -11395,8 +10545,7 @@ }, "node_modules/docusaurus-theme-openapi-docs/node_modules/docusaurus-plugin-sass/node_modules/sass-loader": { "version": "10.5.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-10.5.2.tgz", - "integrity": "sha512-vMUoSNOUKJILHpcNCCyD23X34gve1TS7Rjd9uXHeKqhvBG39x6XbswFDtpbTElj6XdMFezoWhkh5vtKudf2cgQ==", + "license": "MIT", "dependencies": { "klona": "^2.0.4", "loader-utils": "^2.0.0", @@ -11431,16 +10580,14 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "@babel/highlight": "^7.10.4" } }, "node_modules/docusaurus/node_modules/airbnb-prop-types": { "version": "2.16.0", - "resolved": "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz", - "integrity": "sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==", + "license": "MIT", "dependencies": { "array.prototype.find": "^2.1.1", "function.prototype.name": "^1.1.2", @@ -11461,8 +10608,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -11475,16 +10621,14 @@ }, "node_modules/docusaurus/node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/docusaurus/node_modules/autoprefixer": { "version": "9.8.8", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", - "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", + "license": "MIT", "dependencies": { "browserslist": "^4.12.0", "caniuse-lite": "^1.0.30001109", @@ -11504,8 +10648,7 @@ }, "node_modules/docusaurus/node_modules/braces": { "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "license": "MIT", "dependencies": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", @@ -11524,8 +10667,7 @@ }, "node_modules/docusaurus/node_modules/browserslist": { "version": "4.14.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", - "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "license": "MIT", "dependencies": { "caniuse-lite": "^1.0.30001125", "electron-to-chromium": "^1.3.564", @@ -11545,8 +10687,7 @@ }, "node_modules/docusaurus/node_modules/chalk": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -11557,8 +10698,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -11568,21 +10708,18 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/node_modules/commander": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/docusaurus/node_modules/cosmiconfig": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "license": "MIT", "dependencies": { "import-fresh": "^2.0.0", "is-directory": "^0.3.1", @@ -11595,8 +10732,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.1", "timsort": "^0.3.0" @@ -11607,8 +10743,7 @@ }, "node_modules/docusaurus/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==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", "css-what": "^3.2.1", @@ -11618,8 +10753,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "mdn-data": "2.0.4", "source-map": "^0.6.1" @@ -11630,8 +10764,7 @@ }, "node_modules/docusaurus/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==", + "license": "BSD-2-Clause", "engines": { "node": ">= 6" }, @@ -11641,8 +10774,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "cosmiconfig": "^5.0.0", "cssnano-preset-default": "^4.0.8", @@ -11655,8 +10787,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "css-declaration-sorter": "^4.0.1", "cssnano-util-raw-cache": "^4.0.1", @@ -11695,8 +10826,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "entities": "^2.0.0" @@ -11704,8 +10834,7 @@ }, "node_modules/docusaurus/node_modules/domutils": { "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "0", "domelementtype": "1" @@ -11713,13 +10842,11 @@ }, "node_modules/docusaurus/node_modules/domutils/node_modules/domelementtype": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + "license": "BSD-2-Clause" }, "node_modules/docusaurus/node_modules/enzyme-adapter-react-16": { "version": "1.15.7", - "resolved": "https://registry.npmjs.org/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.7.tgz", - "integrity": "sha512-LtjKgvlTc/H7adyQcj+aq0P0H07LDL480WQl1gU512IUyaDo/sbOaNDdZsJXYW2XaoPqrLLE9KbZS+X2z6BASw==", + "license": "MIT", "dependencies": { "enzyme-adapter-utils": "^1.14.1", "enzyme-shallow-equal": "^1.0.5", @@ -11742,8 +10869,7 @@ }, "node_modules/docusaurus/node_modules/enzyme-adapter-utils": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/enzyme-adapter-utils/-/enzyme-adapter-utils-1.14.1.tgz", - "integrity": "sha512-JZgMPF1QOI7IzBj24EZoDpaeG/p8Os7WeBZWTJydpsH7JRStc7jYbHE4CmNQaLqazaGFyLM8ALWA3IIZvxW3PQ==", + "license": "MIT", "dependencies": { "airbnb-prop-types": "^2.16.0", "function.prototype.name": "^1.1.5", @@ -11762,24 +10888,21 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/docusaurus/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==", + "license": "BSD-3-Clause", "engines": { "node": ">= 0.4.0" } }, "node_modules/docusaurus/node_modules/fill-range": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", @@ -11792,8 +10915,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.5.5", "chalk": "^2.4.1", @@ -11810,8 +10932,7 @@ }, "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/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==", + "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, @@ -11821,8 +10942,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -11834,37 +10954,32 @@ }, "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/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==", + "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/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==" + "license": "MIT" }, "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/node_modules/escape-string-regexp": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/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==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/docusaurus/node_modules/fork-ts-checker-webpack-plugin/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==", + "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, @@ -11874,8 +10989,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", @@ -11888,8 +11002,7 @@ }, "node_modules/docusaurus/node_modules/globby": { "version": "11.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", - "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "license": "MIT", "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", @@ -11907,8 +11020,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "duplexer": "^0.1.1", "pify": "^4.0.1" @@ -11919,16 +11031,14 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/docusaurus/node_modules/immer": { "version": "8.0.1", - "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", - "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/immer" @@ -11936,8 +11046,7 @@ }, "node_modules/docusaurus/node_modules/import-fresh": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "license": "MIT", "dependencies": { "caller-path": "^2.0.0", "resolve-from": "^3.0.0" @@ -11948,13 +11057,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" }, @@ -11964,8 +11071,7 @@ }, "node_modules/docusaurus/node_modules/is-number": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -11975,8 +11081,7 @@ }, "node_modules/docusaurus/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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -11986,8 +11091,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -11998,8 +11102,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", @@ -12011,13 +11114,11 @@ }, "node_modules/docusaurus/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==" + "license": "CC0-1.0" }, "node_modules/docusaurus/node_modules/micromatch": { "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -12039,8 +11140,7 @@ }, "node_modules/docusaurus/node_modules/micromatch/node_modules/extend-shallow": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -12051,29 +11151,25 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/docusaurus/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==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "~1.0.0" } }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "is-docker": "^2.0.0", "is-wsl": "^2.1.1" @@ -12087,8 +11183,7 @@ }, "node_modules/docusaurus/node_modules/parse-json": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "license": "MIT", "dependencies": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" @@ -12099,13 +11194,11 @@ }, "node_modules/docusaurus/node_modules/picocolors": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + "license": "ISC" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "picocolors": "^0.2.1", "source-map": "^0.6.1" @@ -12120,8 +11213,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.27", "postcss-selector-parser": "^6.0.2", @@ -12130,8 +11222,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "browserslist": "^4.0.0", "color": "^3.0.0", @@ -12145,13 +11236,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.0", "postcss-value-parser": "^3.0.0" @@ -12162,13 +11251,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.0" }, @@ -12178,8 +11265,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.0" }, @@ -12189,8 +11275,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.0" }, @@ -12200,8 +11285,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.0" }, @@ -12211,8 +11295,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "css-color-names": "0.0.4", "postcss": "^7.0.0", @@ -12225,13 +11308,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "browserslist": "^4.0.0", "caniuse-api": "^3.0.0", @@ -12246,8 +11327,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", "indexes-of": "^1.0.1", @@ -12259,8 +11339,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.0", "postcss-value-parser": "^3.0.0" @@ -12271,13 +11350,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", "is-color-stop": "^1.0.0", @@ -12290,13 +11367,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "alphanum-sort": "^1.0.0", "browserslist": "^4.0.0", @@ -12311,13 +11386,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "alphanum-sort": "^1.0.0", "has": "^1.0.0", @@ -12330,8 +11403,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", "indexes-of": "^1.0.1", @@ -12343,8 +11415,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.0" }, @@ -12354,8 +11425,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "cssnano-util-get-match": "^4.0.0", "postcss": "^7.0.0", @@ -12367,13 +11437,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", "has": "^1.0.0", @@ -12386,13 +11454,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", "cssnano-util-get-match": "^4.0.0", @@ -12405,13 +11471,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "has": "^1.0.0", "postcss": "^7.0.0", @@ -12423,13 +11487,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "cssnano-util-get-match": "^4.0.0", "postcss": "^7.0.0", @@ -12441,13 +11503,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "browserslist": "^4.0.0", "postcss": "^7.0.0", @@ -12459,13 +11519,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "is-absolute-url": "^2.0.0", "normalize-url": "^3.0.0", @@ -12478,13 +11536,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.0", "postcss-value-parser": "^3.0.0" @@ -12495,13 +11551,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "cssnano-util-get-arguments": "^4.0.0", "postcss": "^7.0.0", @@ -12513,13 +11567,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "browserslist": "^4.0.0", "caniuse-api": "^3.0.0", @@ -12532,8 +11584,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "cssnano-util-get-match": "^4.0.0", "has": "^1.0.0", @@ -12546,13 +11597,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "postcss": "^7.0.0", "postcss-value-parser": "^3.0.0", @@ -12564,13 +11613,11 @@ }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "alphanum-sort": "^1.0.0", "postcss": "^7.0.0", @@ -12582,8 +11629,7 @@ }, "node_modules/docusaurus/node_modules/prompts": { "version": "2.4.0", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", - "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "license": "MIT", "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" @@ -12594,8 +11640,7 @@ }, "node_modules/docusaurus/node_modules/react": { "version": "16.14.0", - "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", - "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1", @@ -12607,8 +11652,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "@babel/code-frame": "7.10.4", "address": "1.1.2", @@ -12641,8 +11685,7 @@ }, "node_modules/docusaurus/node_modules/react-dev-utils/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==", + "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, @@ -12652,8 +11695,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -12665,37 +11707,32 @@ }, "node_modules/docusaurus/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": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/docusaurus/node_modules/react-dev-utils/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==", + "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, "node_modules/docusaurus/node_modules/react-dev-utils/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==" + "license": "MIT" }, "node_modules/docusaurus/node_modules/react-dev-utils/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==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/docusaurus/node_modules/react-dev-utils/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==", + "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, @@ -12705,8 +11742,7 @@ }, "node_modules/docusaurus/node_modules/react-dom": { "version": "16.14.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz", - "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1", @@ -12719,8 +11755,7 @@ }, "node_modules/docusaurus/node_modules/react-test-renderer": { "version": "16.14.0", - "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.14.0.tgz", - "integrity": "sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==", + "license": "MIT", "dependencies": { "object-assign": "^4.1.1", "prop-types": "^15.6.2", @@ -12733,16 +11768,14 @@ }, "node_modules/docusaurus/node_modules/resolve-from": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/docusaurus/node_modules/scheduler": { "version": "0.19.1", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", - "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1" @@ -12750,21 +11783,18 @@ }, "node_modules/docusaurus/node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/docusaurus/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==" + "license": "MIT" }, "node_modules/docusaurus/node_modules/sitemap": { "version": "3.2.2", - "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-3.2.2.tgz", - "integrity": "sha512-TModL/WU4m2q/mQcrDgNANn0P4LwprM9MMvG4hu5zP4c6IIKs2YLTu6nXXnNr8ODW/WFtxKggiJ1EGn2W0GNmg==", + "license": "MIT", "dependencies": { "lodash.chunk": "^4.2.0", "lodash.padstart": "^4.6.1", @@ -12778,16 +11808,14 @@ }, "node_modules/docusaurus/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==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.0" }, @@ -12797,8 +11825,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "browserslist": "^4.0.0", "postcss": "^7.0.0", @@ -12810,8 +11837,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "dot-prop": "^5.2.0", "indexes-of": "^1.0.1", @@ -12823,8 +11849,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -12834,9 +11859,7 @@ }, "node_modules/docusaurus/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.", + "license": "MIT", "dependencies": { "chalk": "^2.4.1", "coa": "^2.0.2", @@ -12861,8 +11884,7 @@ }, "node_modules/docusaurus/node_modules/svgo/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==", + "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, @@ -12872,8 +11894,7 @@ }, "node_modules/docusaurus/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==", + "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -12885,37 +11906,32 @@ }, "node_modules/docusaurus/node_modules/svgo/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==", + "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, "node_modules/docusaurus/node_modules/svgo/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==" + "license": "MIT" }, "node_modules/docusaurus/node_modules/svgo/node_modules/escape-string-regexp": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/docusaurus/node_modules/svgo/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==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/docusaurus/node_modules/svgo/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==", + "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, @@ -12925,16 +11941,14 @@ }, "node_modules/docusaurus/node_modules/tapable": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/docusaurus/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": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "license": "MIT", "dependencies": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" @@ -12945,21 +11959,18 @@ }, "node_modules/docusaurus/node_modules/tr46": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "license": "MIT", "dependencies": { "punycode": "^2.1.0" } }, "node_modules/docusaurus/node_modules/webidl-conversions": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + "license": "BSD-2-Clause" }, "node_modules/docusaurus/node_modules/whatwg-url": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "license": "MIT", "dependencies": { "lodash.sortby": "^4.7.0", "tr46": "^1.0.1", @@ -12968,16 +11979,14 @@ }, "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==", + "license": "MIT", "dependencies": { "utila": "~0.4" } }, "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==", + "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", @@ -12989,8 +11998,7 @@ }, "node_modules/domain-browser": { "version": "4.23.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-4.23.0.tgz", - "integrity": "sha512-ArzcM/II1wCCujdCNyQjXrAFwS4mrLh4C7DZWlaI8mdh7h3BfKdNd3bKXITfl2PT9FtfQqaGvhi1vPRQPimjGA==", + "license": "Artistic-2.0", "engines": { "node": ">=10" }, @@ -13000,19 +12008,17 @@ }, "node_modules/domelementtype": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } - ] + ], + "license": "BSD-2-Clause" }, "node_modules/domhandler": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.2.0" }, @@ -13025,8 +12031,7 @@ }, "node_modules/domify": { "version": "1.4.2", - "resolved": "https://registry.npmjs.org/domify/-/domify-1.4.2.tgz", - "integrity": "sha512-m4yreHcUWHBncGVV7U+yQzc12vIlq0jMrtHZ5mW6dQMiL/7skSYNVX9wqKwOtyO9SGCgevrAFEgOCAHmamHTUA==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/sindresorhus" } @@ -13041,8 +12046,7 @@ }, "node_modules/domutils": { "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", @@ -13054,8 +12058,7 @@ }, "node_modules/dot-case": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" @@ -13063,8 +12066,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-obj": "^2.0.0" }, @@ -13074,16 +12076,14 @@ }, "node_modules/dot-prop/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/download": { "version": "6.2.5", - "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", - "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", + "license": "MIT", "dependencies": { "caw": "^2.0.0", "content-disposition": "^0.5.2", @@ -13103,24 +12103,21 @@ }, "node_modules/download/node_modules/file-type": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", - "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/download/node_modules/get-stream": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/download/node_modules/got": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", - "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "license": "MIT", "dependencies": { "decompress-response": "^3.2.0", "duplexer3": "^0.1.4", @@ -13143,24 +12140,21 @@ }, "node_modules/download/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": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/download/node_modules/is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/download/node_modules/make-dir": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "license": "MIT", "dependencies": { "pify": "^3.0.0" }, @@ -13170,32 +12164,28 @@ }, "node_modules/download/node_modules/p-cancelable": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", - "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/download/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/download/node_modules/prepend-http": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/download/node_modules/url-parse-lax": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==", + "license": "MIT", "dependencies": { "prepend-http": "^1.0.1" }, @@ -13205,31 +12195,26 @@ }, "node_modules/downloadjs": { "version": "1.4.7", - "resolved": "https://registry.npmjs.org/downloadjs/-/downloadjs-1.4.7.tgz", - "integrity": "sha512-LN1gO7+u9xjU5oEScGFKvXhYf7Y/empUIIEAGBs1LzUq/rg5duiDrkuH5A2lQGd5jfMOb9X9usDa2oVXwJ0U/Q==" + "license": "MIT" }, "node_modules/duplexer": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + "license": "MIT" }, "node_modules/duplexer2": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", + "license": "BSD-3-Clause", "dependencies": { "readable-stream": "^2.0.2" } }, "node_modules/duplexer2/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "license": "MIT" }, "node_modules/duplexer2/node_modules/readable-stream": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -13242,26 +12227,22 @@ }, "node_modules/duplexer2/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==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/duplexer3": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + "license": "BSD-3-Clause" }, "node_modules/eastasianwidth": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + "license": "MIT" }, "node_modules/ecc-jsbn": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "license": "MIT", "dependencies": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" @@ -13269,8 +12250,7 @@ }, "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==" + "license": "MIT" }, "node_modules/electron-to-chromium": { "version": "1.5.68", @@ -13279,13 +12259,11 @@ }, "node_modules/elkjs": { "version": "0.8.2", - "resolved": "https://registry.npmjs.org/elkjs/-/elkjs-0.8.2.tgz", - "integrity": "sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==" + "license": "EPL-2.0" }, "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==", + "license": "MIT", "dependencies": { "bn.js": "^4.11.9", "brorand": "^1.1.0", @@ -13298,14 +12276,12 @@ }, "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==" + "license": "MIT" }, "node_modules/emittery": { "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -13315,21 +12291,18 @@ }, "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==" + "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "license": "MIT", "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -13337,24 +12310,21 @@ }, "node_modules/encodeurl": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "once": "^1.4.0" } }, "node_modules/enhanced-resolve": { "version": "5.10.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", - "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -13365,16 +12335,14 @@ }, "node_modules/entities": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/enzyme": { "version": "3.11.0", - "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz", - "integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==", + "license": "MIT", "dependencies": { "array.prototype.flat": "^1.2.3", "cheerio": "^1.0.0-rc.3", @@ -13405,8 +12373,7 @@ }, "node_modules/enzyme-shallow-equal": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.5.tgz", - "integrity": "sha512-i6cwm7hN630JXenxxJFBKzgLC3hMTafFQXflvzHgPmDhOBhxUWDe8AeRv1qp2/uWJ2Y8z5yLWMzmAfkTOiOCZg==", + "license": "MIT", "dependencies": { "has": "^1.0.3", "object-is": "^1.1.5" @@ -13417,29 +12384,24 @@ }, "node_modules/error": { "version": "7.2.1", - "resolved": "https://registry.npmjs.org/error/-/error-7.2.1.tgz", - "integrity": "sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==", "dependencies": { "string-template": "~0.2.1" } }, "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==", + "license": "MIT", "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=" + "license": "MIT" }, "node_modules/es-abstract": { "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.0", "available-typed-arrays": "^1.0.5", @@ -13485,18 +12447,15 @@ }, "node_modules/es-array-method-boxes-properly": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + "license": "MIT" }, "node_modules/es-module-lexer": { "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "license": "MIT" }, "node_modules/es-set-tostringtag": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.3", "has": "^1.0.3", @@ -13508,16 +12467,14 @@ }, "node_modules/es-shim-unscopables": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "license": "MIT", "dependencies": { "has": "^1.0.3" } }, "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==", + "license": "MIT", "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -13532,8 +12489,7 @@ }, "node_modules/es6-promise": { "version": "3.3.1", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", - "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==" + "license": "MIT" }, "node_modules/escalade": { "version": "3.2.0", @@ -13545,29 +12501,25 @@ }, "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==", + "license": "MIT", "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=" + "license": "MIT" }, "node_modules/escape-string-regexp": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/eslint-scope": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" @@ -13578,8 +12530,7 @@ }, "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==", + "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -13590,8 +12541,7 @@ }, "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==", + "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, @@ -13601,32 +12551,28 @@ }, "node_modules/esrecurse/node_modules/estraverse": { "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "license": "BSD-2-Clause", "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==", + "license": "BSD-2-Clause", "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==", + "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/eta": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/eta/-/eta-2.0.0.tgz", - "integrity": "sha512-NqE7S2VmVwgMS8yBxsH4VgNQjNjLq1gfGU0u9I6Cjh468nPRMoDfGdK9n1p/3Dvsw3ebklDkZsFAnKJ9sefjBA==", + "license": "MIT", "engines": { "node": ">=6.0.0" }, @@ -13636,16 +12582,13 @@ }, "node_modules/etag": { "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/eval": { "version": "0.1.8", - "resolved": "https://registry.npmjs.org/eval/-/eval-0.1.8.tgz", - "integrity": "sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==", "dependencies": { "@types/node": "*", "require-like": ">= 0.1.1" @@ -13656,29 +12599,25 @@ }, "node_modules/event-target-shim": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/eventemitter3": { "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + "license": "MIT" }, "node_modules/events": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", "engines": { "node": ">=0.8.x" } }, "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==", + "license": "MIT", "dependencies": { "md5.js": "^1.3.4", "safe-buffer": "^5.1.1" @@ -13686,8 +12625,7 @@ }, "node_modules/exec-buffer": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz", - "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==", + "license": "MIT", "dependencies": { "execa": "^0.7.0", "p-finally": "^1.0.0", @@ -13701,8 +12639,7 @@ }, "node_modules/exec-buffer/node_modules/cross-spawn": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "license": "MIT", "dependencies": { "lru-cache": "^4.0.1", "shebang-command": "^1.2.0", @@ -13711,8 +12648,7 @@ }, "node_modules/exec-buffer/node_modules/execa": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", + "license": "MIT", "dependencies": { "cross-spawn": "^5.0.1", "get-stream": "^3.0.0", @@ -13728,24 +12664,21 @@ }, "node_modules/exec-buffer/node_modules/get-stream": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/exec-buffer/node_modules/is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/exec-buffer/node_modules/lru-cache": { "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "license": "ISC", "dependencies": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" @@ -13753,8 +12686,7 @@ }, "node_modules/exec-buffer/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": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", "dependencies": { "path-key": "^2.0.0" }, @@ -13764,24 +12696,21 @@ }, "node_modules/exec-buffer/node_modules/path-key": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/exec-buffer/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/exec-buffer/node_modules/rimraf": { "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -13791,8 +12720,7 @@ }, "node_modules/exec-buffer/node_modules/shebang-command": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", "dependencies": { "shebang-regex": "^1.0.0" }, @@ -13802,16 +12730,14 @@ }, "node_modules/exec-buffer/node_modules/shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/exec-buffer/node_modules/which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -13821,13 +12747,11 @@ }, "node_modules/exec-buffer/node_modules/yallist": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + "license": "ISC" }, "node_modules/execa": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", @@ -13848,8 +12772,7 @@ }, "node_modules/execa/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==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -13859,8 +12782,7 @@ }, "node_modules/executable": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", + "license": "MIT", "dependencies": { "pify": "^2.2.0" }, @@ -13870,21 +12792,17 @@ }, "node_modules/executable/node_modules/pify": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/exenv": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", - "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==" + "license": "BSD-3-Clause" }, "node_modules/exit": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, "engines": { "node": ">= 0.8.0" @@ -13892,8 +12810,7 @@ }, "node_modules/expand-brackets": { "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "license": "MIT", "dependencies": { "debug": "^2.3.3", "define-property": "^0.2.5", @@ -13909,16 +12826,14 @@ }, "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==", + "license": "MIT", "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": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -13928,8 +12843,7 @@ }, "node_modules/expand-brackets/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": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -13939,8 +12853,7 @@ }, "node_modules/expand-brackets/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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -13950,13 +12863,11 @@ }, "node_modules/expand-brackets/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==" + "license": "MIT" }, "node_modules/expand-brackets/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": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -13966,8 +12877,7 @@ }, "node_modules/expand-brackets/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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -13977,8 +12887,7 @@ }, "node_modules/expand-brackets/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==", + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -13990,21 +12899,18 @@ }, "node_modules/expand-brackets/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==", + "license": "MIT", "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "node_modules/expand-range": { "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", + "license": "MIT", "dependencies": { "fill-range": "^2.1.0" }, @@ -14014,8 +12920,7 @@ }, "node_modules/expand-range/node_modules/fill-range": { "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "license": "MIT", "dependencies": { "is-number": "^2.1.0", "isobject": "^2.0.0", @@ -14029,13 +12934,11 @@ }, "node_modules/expand-range/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==" + "license": "MIT" }, "node_modules/expand-range/node_modules/is-number": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -14045,13 +12948,11 @@ }, "node_modules/expand-range/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "license": "MIT" }, "node_modules/expand-range/node_modules/isobject": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "license": "MIT", "dependencies": { "isarray": "1.0.0" }, @@ -14061,8 +12962,7 @@ }, "node_modules/expand-range/node_modules/kind-of": { "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -14075,6 +12975,7 @@ "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", @@ -14088,8 +12989,7 @@ }, "node_modules/express": { "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "license": "MIT", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", @@ -14129,13 +13029,11 @@ }, "node_modules/express/node_modules/array-flatten": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + "license": "MIT" }, "node_modules/express/node_modules/content-disposition": { "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", "dependencies": { "safe-buffer": "5.2.1" }, @@ -14145,34 +13043,28 @@ }, "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==", + "license": "MIT", "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "node_modules/express/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": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + "license": "MIT" }, "node_modules/express/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==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/express/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", @@ -14186,12 +13078,12 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/ext-list": { "version": "2.2.2", - "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", - "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "license": "MIT", "dependencies": { "mime-db": "^1.28.0" }, @@ -14201,8 +13093,7 @@ }, "node_modules/ext-name": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", - "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "license": "MIT", "dependencies": { "ext-list": "^2.0.0", "sort-keys-length": "^1.0.0" @@ -14213,13 +13104,11 @@ }, "node_modules/extend": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" }, @@ -14229,8 +13118,7 @@ }, "node_modules/extglob": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "license": "MIT", "dependencies": { "array-unique": "^0.3.2", "define-property": "^1.0.0", @@ -14247,8 +13135,7 @@ }, "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": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "license": "MIT", "dependencies": { "is-descriptor": "^1.0.0" }, @@ -14258,22 +13145,19 @@ }, "node_modules/extsprintf": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "engines": [ "node >=0.6.0" - ] + ], + "license": "MIT" }, "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==" + "license": "MIT" }, "node_modules/fast-folder-size": { "version": "1.6.1", - "resolved": "https://registry.npmjs.org/fast-folder-size/-/fast-folder-size-1.6.1.tgz", - "integrity": "sha512-F3tRpfkAzb7TT2JNKaJUglyuRjRa+jelQD94s9OSqkfEeytLmupCqQiD+H2KoIXGtp4pB5m4zNmv5m2Ktcr+LA==", "hasInstallScript": true, + "license": "ISC", "dependencies": { "unzipper": "^0.10.11" }, @@ -14283,8 +13167,7 @@ }, "node_modules/fast-glob": { "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -14298,31 +13181,26 @@ }, "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==" + "license": "MIT" }, "node_modules/fast-safe-stringify": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", - "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" + "license": "MIT" }, "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=", + "license": "MIT", "dependencies": { "punycode": "^1.3.2" } }, "node_modules/fast-url-parser/node_modules/punycode": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + "license": "MIT" }, "node_modules/fast-xml-parser": { "version": "4.1.3", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.1.3.tgz", - "integrity": "sha512-LsNDahCiCcJPe8NO7HijcnukHB24tKbfDDA5IILx9dmW3Frb52lhbeX6MPNUSvyGNfav2VTYpJ/OqkRoVLrh2Q==", + "license": "MIT", "dependencies": { "strnum": "^1.0.5" }, @@ -14336,16 +13214,14 @@ }, "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==", + "license": "ISC", "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==", + "license": "Apache-2.0", "dependencies": { "websocket-driver": ">=0.5.1" }, @@ -14355,25 +13231,22 @@ }, "node_modules/fb-watchman": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, + "license": "Apache-2.0", "dependencies": { "bser": "2.1.1" } }, "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==", + "license": "BSD-3-Clause", "dependencies": { "fbjs": "^3.0.0" } }, "node_modules/fbjs": { "version": "3.0.5", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz", - "integrity": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==", + "license": "MIT", "dependencies": { "cross-fetch": "^3.1.5", "fbjs-css-vars": "^1.0.0", @@ -14386,21 +13259,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==" + "license": "MIT" }, "node_modules/fd-slicer": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "license": "MIT", "dependencies": { "pend": "~1.2.0" } }, "node_modules/feed": { "version": "4.2.2", - "resolved": "https://registry.npmjs.org/feed/-/feed-4.2.2.tgz", - "integrity": "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==", + "license": "MIT", "dependencies": { "xml-js": "^1.6.11" }, @@ -14473,8 +13343,7 @@ }, "node_modules/figures": { "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==", + "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5", "object-assign": "^4.1.0" @@ -14493,8 +13362,7 @@ }, "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==", + "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", "schema-utils": "^3.0.0" @@ -14512,29 +13380,25 @@ }, "node_modules/file-saver": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz", - "integrity": "sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==" + "license": "MIT" }, "node_modules/file-type": { "version": "10.11.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", - "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/filename-reserved-regex": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", - "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/filenamify": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", - "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", + "license": "MIT", "dependencies": { "filename-reserved-regex": "^2.0.0", "strip-outer": "^1.0.0", @@ -14546,16 +13410,14 @@ }, "node_modules/filesize": { "version": "8.0.7", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", - "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "license": "BSD-3-Clause", "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==", + "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -14565,16 +13427,14 @@ }, "node_modules/filter-obj": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-2.0.2.tgz", - "integrity": "sha512-lO3ttPjHZRfjMcxWKb1j1eDhTFsu4meeR3lnMcnBFhk6RuLhvEiuALu2TlfL310ph4lCYYwgF/ElIjdP739tdg==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/finalhandler": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "license": "MIT", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -14590,21 +13450,18 @@ }, "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==", + "license": "MIT", "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "commondir": "^1.0.1", "make-dir": "^3.0.2", @@ -14619,8 +13476,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==", + "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -14631,8 +13487,7 @@ }, "node_modules/find-versions": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", - "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "license": "MIT", "dependencies": { "semver-regex": "^2.0.0" }, @@ -14642,13 +13497,11 @@ }, "node_modules/flatpickr": { "version": "4.6.13", - "resolved": "https://registry.npmjs.org/flatpickr/-/flatpickr-4.6.13.tgz", - "integrity": "sha512-97PMG/aywoYpB4IvbvUJi0RQi8vearvU0oov1WW3k0WZPBMrTQVqekSX5CjSG/M4Q3i6A/0FKXC7RyAoAUUSPw==" + "license": "MIT" }, "node_modules/flux": { "version": "4.0.4", - "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.4.tgz", - "integrity": "sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==", + "license": "BSD-3-Clause", "dependencies": { "fbemitter": "^3.0.0", "fbjs": "^3.0.1" @@ -14667,14 +13520,13 @@ }, "node_modules/follow-redirects": { "version": "1.14.9", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", - "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", "funding": [ { "type": "individual", "url": "https://github.com/sponsors/RubenVerborgh" } ], + "license": "MIT", "engines": { "node": ">=4.0" }, @@ -14686,29 +13538,25 @@ }, "node_modules/for-each": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "license": "MIT", "dependencies": { "is-callable": "^1.1.3" } }, "node_modules/for-in": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/foreach": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz", - "integrity": "sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==" + "license": "MIT" }, "node_modules/foreground-child": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "license": "ISC", "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^4.0.1" @@ -14722,8 +13570,7 @@ }, "node_modules/foreground-child/node_modules/signal-exit": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", "engines": { "node": ">=14" }, @@ -14733,16 +13580,14 @@ }, "node_modules/forever-agent": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "6.5.2", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", - "integrity": "sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.8.3", "@types/json-schema": "^7.0.5", @@ -14779,8 +13624,7 @@ }, "node_modules/fork-ts-checker-webpack-plugin/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -14793,8 +13637,7 @@ }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -14808,8 +13651,7 @@ }, "node_modules/fork-ts-checker-webpack-plugin/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -14819,13 +13661,11 @@ }, "node_modules/fork-ts-checker-webpack-plugin/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==" + "license": "MIT" }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.1.0", @@ -14839,8 +13679,7 @@ }, "node_modules/fork-ts-checker-webpack-plugin/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==", + "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", @@ -14853,16 +13692,14 @@ }, "node_modules/fork-ts-checker-webpack-plugin/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.4", "ajv": "^6.12.2", @@ -14878,8 +13715,7 @@ }, "node_modules/fork-ts-checker-webpack-plugin/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -14889,16 +13725,14 @@ }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/form-data": { "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.6", @@ -14910,16 +13744,14 @@ }, "node_modules/forwarded": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/fraction.js": { "version": "4.3.4", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.4.tgz", - "integrity": "sha512-pwiTgt0Q7t+GHZA4yaLjObx4vXmmdcS0iSJ19o8d/goUGgItX9UZWKWNnLHehxviD8wU2IWRsnR8cD5+yOJP2Q==", + "license": "MIT", "engines": { "node": "*" }, @@ -14930,8 +13762,7 @@ }, "node_modules/fragment-cache": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "license": "MIT", "dependencies": { "map-cache": "^0.2.2" }, @@ -14941,16 +13772,14 @@ }, "node_modules/fresh": { "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/from2": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "license": "MIT", "dependencies": { "inherits": "^2.0.1", "readable-stream": "^2.0.0" @@ -14958,13 +13787,11 @@ }, "node_modules/from2/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "license": "MIT" }, "node_modules/from2/node_modules/readable-stream": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -14977,21 +13804,18 @@ }, "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==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/fs-constants": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + "license": "MIT" }, "node_modules/fs-extra": { "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==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -15003,31 +13827,15 @@ }, "node_modules/fs-monkey": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + "license": "Unlicense" }, "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" - } + "license": "ISC" }, "node_modules/fstream": { "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", - "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", + "license": "ISC", "dependencies": { "graceful-fs": "^4.1.2", "inherits": "~2.0.0", @@ -15040,8 +13848,7 @@ }, "node_modules/fstream/node_modules/rimraf": { "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -15051,13 +13858,11 @@ }, "node_modules/function-bind": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "license": "MIT" }, "node_modules/function.prototype.name": { "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", @@ -15073,16 +13878,14 @@ }, "node_modules/functions-have-names": { "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/gaze": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", - "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", + "license": "MIT", "dependencies": { "globule": "^1.0.0" }, @@ -15092,24 +13895,21 @@ }, "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==", + "license": "MIT", "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==", + "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-intrinsic": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "license": "MIT", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", @@ -15121,22 +13921,19 @@ }, "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==" + "license": "ISC" }, "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, + "license": "MIT", "engines": { "node": ">=8.0.0" } }, "node_modules/get-proxy": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", - "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", + "license": "MIT", "dependencies": { "npm-conf": "^1.1.0" }, @@ -15146,16 +13943,14 @@ }, "node_modules/get-stdin": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "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==", + "license": "MIT", "dependencies": { "pump": "^3.0.0" }, @@ -15165,8 +13960,7 @@ }, "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==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -15180,25 +13974,22 @@ }, "node_modules/get-value": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/getpass": { "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" } }, "node_modules/gifsicle": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-4.0.1.tgz", - "integrity": "sha512-A/kiCLfDdV+ERV/UB+2O41mifd+RxH8jlRG8DMxZO84Bma/Fw0htqZ+hY2iaalLRNyUu7tYZQslqUBJxBggxbg==", "hasInstallScript": true, + "license": "MIT", "dependencies": { "bin-build": "^3.0.0", "bin-wrapper": "^4.0.0", @@ -15214,8 +14005,7 @@ }, "node_modules/gifsicle/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==", + "license": "MIT", "dependencies": { "nice-try": "^1.0.4", "path-key": "^2.0.1", @@ -15229,8 +14019,7 @@ }, "node_modules/gifsicle/node_modules/execa": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", "dependencies": { "cross-spawn": "^6.0.0", "get-stream": "^4.0.0", @@ -15246,16 +14035,14 @@ }, "node_modules/gifsicle/node_modules/is-stream": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/gifsicle/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": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "license": "MIT", "dependencies": { "path-key": "^2.0.0" }, @@ -15265,24 +14052,21 @@ }, "node_modules/gifsicle/node_modules/path-key": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/gifsicle/node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/gifsicle/node_modules/shebang-command": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "license": "MIT", "dependencies": { "shebang-regex": "^1.0.0" }, @@ -15292,16 +14076,14 @@ }, "node_modules/gifsicle/node_modules/shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/gifsicle/node_modules/which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -15311,13 +14093,11 @@ }, "node_modules/github-slugger": { "version": "1.5.0", - "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", - "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==" + "license": "ISC" }, "node_modules/glob": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -15335,8 +14115,7 @@ }, "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==", + "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, @@ -15346,13 +14125,11 @@ }, "node_modules/glob-to-regexp": { "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==" + "license": "BSD-2-Clause" }, "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==", + "license": "MIT", "dependencies": { "ini": "2.0.0" }, @@ -15365,16 +14142,14 @@ }, "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==", + "license": "ISC", "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==", + "license": "MIT", "dependencies": { "global-prefix": "^3.0.0" }, @@ -15384,8 +14159,7 @@ }, "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==", + "license": "MIT", "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", @@ -15397,8 +14171,7 @@ }, "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==", + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -15408,16 +14181,14 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/globalthis": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "license": "MIT", "dependencies": { "define-properties": "^1.1.3" }, @@ -15430,8 +14201,7 @@ }, "node_modules/globby": { "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "license": "MIT", "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", @@ -15449,8 +14219,7 @@ }, "node_modules/globule": { "version": "1.3.4", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz", - "integrity": "sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==", + "license": "MIT", "dependencies": { "glob": "~7.1.1", "lodash": "^4.17.21", @@ -15462,8 +14231,7 @@ }, "node_modules/globule/node_modules/glob": { "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -15481,8 +14249,7 @@ }, "node_modules/gopd": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.3" }, @@ -15492,8 +14259,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@sindresorhus/is": "^0.14.0", "@szmarczak/http-timer": "^1.1.2", @@ -15513,13 +14279,11 @@ }, "node_modules/graceful-fs": { "version": "4.2.9", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", - "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==" + "license": "ISC" }, "node_modules/gray-matter": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", - "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", + "license": "MIT", "dependencies": { "js-yaml": "^3.13.1", "kind-of": "^6.0.2", @@ -15532,16 +14296,14 @@ }, "node_modules/gray-matter/node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/gray-matter/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==", + "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -15552,9 +14314,7 @@ }, "node_modules/gulp-header": { "version": "1.8.12", - "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", - "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", - "deprecated": "Removed event-stream from gulp-header", + "license": "MIT", "dependencies": { "concat-with-sourcemaps": "*", "lodash.template": "^4.4.0", @@ -15563,8 +14323,7 @@ }, "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==", + "license": "MIT", "dependencies": { "duplexer": "^0.1.2" }, @@ -15577,22 +14336,18 @@ }, "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==" + "license": "MIT" }, "node_modules/har-schema": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "license": "ISC", "engines": { "node": ">=4" } }, "node_modules/har-validator": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", + "license": "MIT", "dependencies": { "ajv": "^6.12.3", "har-schema": "^2.0.0" @@ -15603,8 +14358,7 @@ }, "node_modules/has": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "license": "MIT", "dependencies": { "function-bind": "^1.1.1" }, @@ -15614,8 +14368,7 @@ }, "node_modules/has-ansi": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" }, @@ -15625,32 +14378,28 @@ }, "node_modules/has-ansi/node_modules/ansi-regex": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/has-bigints": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "license": "MIT", "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": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/has-property-descriptors": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.1" }, @@ -15660,8 +14409,7 @@ }, "node_modules/has-proto": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -15671,16 +14419,14 @@ }, "node_modules/has-symbol-support-x": { "version": "1.4.2", - "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", - "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "license": "MIT", "engines": { "node": "*" } }, "node_modules/has-symbols": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -15690,8 +14436,7 @@ }, "node_modules/has-to-string-tag-x": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", - "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "license": "MIT", "dependencies": { "has-symbol-support-x": "^1.4.1" }, @@ -15701,8 +14446,7 @@ }, "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==", + "license": "MIT", "dependencies": { "has-symbols": "^1.0.2" }, @@ -15715,8 +14459,7 @@ }, "node_modules/has-value": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "license": "MIT", "dependencies": { "get-value": "^2.0.6", "has-values": "^1.0.0", @@ -15728,8 +14471,7 @@ }, "node_modules/has-values": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "license": "MIT", "dependencies": { "is-number": "^3.0.0", "kind-of": "^4.0.0" @@ -15740,13 +14482,11 @@ }, "node_modules/has-values/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==" + "license": "MIT" }, "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": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -15756,8 +14496,7 @@ }, "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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -15767,8 +14506,7 @@ }, "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": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -15778,16 +14516,14 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "inherits": "^2.0.4", "readable-stream": "^3.6.0", @@ -15799,8 +14535,6 @@ }, "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", @@ -15814,12 +14548,12 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "minimalistic-assert": "^1.0.1" @@ -15827,8 +14561,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.3", "comma-separated-tokens": "^1.0.0", @@ -15845,8 +14578,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@types/parse5": "^5.0.0", "hastscript": "^6.0.0", @@ -15862,8 +14594,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -15871,8 +14602,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "hast-util-from-parse5": "^6.0.0", @@ -15892,13 +14622,11 @@ }, "node_modules/hast-util-raw/node_modules/parse5": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "hast-to-hyperscript": "^9.0.0", "property-information": "^5.0.0", @@ -15913,8 +14641,7 @@ }, "node_modules/hast-util-whitespace": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz", - "integrity": "sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -15922,8 +14649,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "comma-separated-tokens": "^1.0.0", @@ -15938,36 +14664,30 @@ }, "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==", + "license": "MIT", "bin": { "he": "bin/he" } }, "node_modules/heap": { "version": "0.2.7", - "resolved": "https://registry.npmjs.org/heap/-/heap-0.2.7.tgz", - "integrity": "sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==" + "license": "MIT" }, "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==" + "license": "MIT" }, "node_modules/highlight.js": { "version": "9.18.5", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.5.tgz", - "integrity": "sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA==", - "deprecated": "Support has ended for 9.x series. Upgrade to @latest", "hasInstallScript": true, + "license": "BSD-3-Clause", "engines": { "node": "*" } }, "node_modules/history": { "version": "4.10.1", - "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", - "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.1.2", "loose-envify": "^1.2.0", @@ -15979,8 +14699,7 @@ }, "node_modules/hmac-drbg": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "license": "MIT", "dependencies": { "hash.js": "^1.0.3", "minimalistic-assert": "^1.0.0", @@ -15989,21 +14708,18 @@ }, "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==", + "license": "BSD-3-Clause", "dependencies": { "react-is": "^16.7.0" } }, "node_modules/hosted-git-info": { "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + "license": "ISC" }, "node_modules/hpack.js": { "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "license": "MIT", "dependencies": { "inherits": "^2.0.1", "obuf": "^1.0.0", @@ -16013,13 +14729,11 @@ }, "node_modules/hpack.js/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -16032,26 +14746,22 @@ }, "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==", + "license": "MIT", "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": "sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==" + "license": "MIT" }, "node_modules/hsla-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", - "integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==" + "license": "MIT" }, "node_modules/html-element-map": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.3.1.tgz", - "integrity": "sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==", + "license": "MIT", "dependencies": { "array.prototype.filter": "^1.0.0", "call-bind": "^1.0.2" @@ -16062,19 +14772,16 @@ }, "node_modules/html-entities": { "version": "2.3.3", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", - "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" + "license": "MIT" }, "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 + "dev": true, + "license": "MIT" }, "node_modules/html-minifier-terser": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "license": "MIT", "dependencies": { "camel-case": "^4.1.2", "clean-css": "^5.2.2", @@ -16093,16 +14800,14 @@ }, "node_modules/html-minifier-terser/node_modules/commander": { "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "license": "MIT", "engines": { "node": ">= 12" } }, "node_modules/html-tags": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz", - "integrity": "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==", + "license": "MIT", "engines": { "node": ">=8" }, @@ -16112,8 +14817,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -16121,8 +14825,7 @@ }, "node_modules/html-webpack-plugin": { "version": "5.5.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", - "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "license": "MIT", "dependencies": { "@types/html-minifier-terser": "^6.0.0", "html-minifier-terser": "^6.0.2", @@ -16143,8 +14846,7 @@ }, "node_modules/html2canvas": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", - "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "license": "MIT", "dependencies": { "css-line-break": "^2.1.0", "text-segmentation": "^1.0.3" @@ -16155,8 +14857,6 @@ }, "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", { @@ -16164,6 +14864,7 @@ "url": "https://github.com/sponsors/fb55" } ], + "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", @@ -16173,18 +14874,15 @@ }, "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==" + "license": "BSD-2-Clause" }, "node_modules/http-deceiver": { "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", @@ -16198,13 +14896,11 @@ }, "node_modules/http-parser-js": { "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", @@ -16216,8 +14912,7 @@ }, "node_modules/http-proxy-middleware": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "license": "MIT", "dependencies": { "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", @@ -16239,8 +14934,7 @@ }, "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -16250,13 +14944,11 @@ }, "node_modules/http-reasons": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/http-reasons/-/http-reasons-0.1.0.tgz", - "integrity": "sha512-P6kYh0lKZ+y29T2Gqz+RlC9WBLhKe8kDmcJ+A+611jFfxdPsbMRQ5aNmFRM3lENqFkK+HTTL+tlQviAiv0AbLQ==" + "license": "Apache-2.0" }, "node_modules/http-signature": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", @@ -16269,27 +14961,23 @@ }, "node_modules/http2-client": { "version": "1.3.5", - "resolved": "https://registry.npmjs.org/http2-client/-/http2-client-1.3.5.tgz", - "integrity": "sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA==" + "license": "MIT" }, "node_modules/https-browserify": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" + "license": "MIT" }, "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==", + "license": "Apache-2.0", "engines": { "node": ">=10.17.0" } }, "node_modules/husky": { "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", "dev": true, + "license": "MIT", "bin": { "husky": "lib/bin.js" }, @@ -16302,8 +14990,7 @@ }, "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==", + "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -16313,8 +15000,7 @@ }, "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==", + "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" }, @@ -16324,13 +15010,10 @@ }, "node_modules/ids": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/ids/-/ids-1.0.5.tgz", - "integrity": "sha512-XQ0yom/4KWTL29sLG+tyuycy7UmeaM/79GRtSJq6IG9cJGIPeBz5kwDCguie3TwxaMNIc3WtPi0cTa1XYHicpw==" + "license": "MIT" }, "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", @@ -16344,20 +15027,19 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "BSD-3-Clause" }, "node_modules/ignore": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/image-size": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.0.2.tgz", - "integrity": "sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==", + "license": "MIT", "dependencies": { "queue": "6.0.2" }, @@ -16370,8 +15052,7 @@ }, "node_modules/imagemin": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-6.1.0.tgz", - "integrity": "sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==", + "license": "MIT", "dependencies": { "file-type": "^10.7.0", "globby": "^8.0.1", @@ -16386,8 +15067,7 @@ }, "node_modules/imagemin-gifsicle": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-6.0.1.tgz", - "integrity": "sha512-kuu47c6iKDQ6R9J10xCwL0lgs0+sMz3LRHqRcJ2CRBWdcNmo3T5hUaM8hSZfksptZXJLGKk8heSAvwtSdB1Fng==", + "license": "MIT", "dependencies": { "exec-buffer": "^3.0.0", "gifsicle": "^4.0.0", @@ -16399,8 +15079,7 @@ }, "node_modules/imagemin-jpegtran": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/imagemin-jpegtran/-/imagemin-jpegtran-6.0.0.tgz", - "integrity": "sha512-Ih+NgThzqYfEWv9t58EItncaaXIHR0u9RuhKa8CtVBlMBvY0dCIxgQJQCfwImA4AV1PMfmUKlkyIHJjb7V4z1g==", + "license": "MIT", "dependencies": { "exec-buffer": "^3.0.0", "is-jpg": "^2.0.0", @@ -16412,8 +15091,7 @@ }, "node_modules/imagemin-optipng": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-6.0.0.tgz", - "integrity": "sha512-FoD2sMXvmoNm/zKPOWdhKpWdFdF9qiJmKC17MxZJPH42VMAp17/QENI/lIuP7LCUnLVAloO3AUoTSNzfhpyd8A==", + "license": "MIT", "dependencies": { "exec-buffer": "^3.0.0", "is-png": "^1.0.0", @@ -16425,8 +15103,7 @@ }, "node_modules/imagemin-svgo": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-7.1.0.tgz", - "integrity": "sha512-0JlIZNWP0Luasn1HT82uB9nU9aa+vUj6kpT+MjPW11LbprXC+iC4HDwn1r4Q2/91qj4iy9tRZNsFySMlEpLdpg==", + "license": "MIT", "dependencies": { "is-svg": "^4.2.1", "svgo": "^1.3.2" @@ -16440,16 +15117,14 @@ }, "node_modules/imagemin-svgo/node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/imagemin-svgo/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==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", "css-what": "^3.2.1", @@ -16459,8 +15134,7 @@ }, "node_modules/imagemin-svgo/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==", + "license": "MIT", "dependencies": { "mdn-data": "2.0.4", "source-map": "^0.6.1" @@ -16471,8 +15145,7 @@ }, "node_modules/imagemin-svgo/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==", + "license": "BSD-2-Clause", "engines": { "node": ">= 6" }, @@ -16482,8 +15155,7 @@ }, "node_modules/imagemin-svgo/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==", + "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "entities": "^2.0.0" @@ -16491,8 +15163,7 @@ }, "node_modules/imagemin-svgo/node_modules/domutils": { "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "0", "domelementtype": "1" @@ -16500,13 +15171,11 @@ }, "node_modules/imagemin-svgo/node_modules/domutils/node_modules/domelementtype": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + "license": "BSD-2-Clause" }, "node_modules/imagemin-svgo/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==", + "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -16517,30 +15186,25 @@ }, "node_modules/imagemin-svgo/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==" + "license": "CC0-1.0" }, "node_modules/imagemin-svgo/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==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "~1.0.0" } }, "node_modules/imagemin-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==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/imagemin-svgo/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.", + "license": "MIT", "dependencies": { "chalk": "^2.4.1", "coa": "^2.0.2", @@ -16565,16 +15229,14 @@ }, "node_modules/imagemin/node_modules/@nodelib/fs.stat": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", - "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/imagemin/node_modules/array-union": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "license": "MIT", "dependencies": { "array-uniq": "^1.0.1" }, @@ -16584,8 +15246,7 @@ }, "node_modules/imagemin/node_modules/braces": { "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "license": "MIT", "dependencies": { "arr-flatten": "^1.1.0", "array-unique": "^0.3.2", @@ -16604,8 +15265,7 @@ }, "node_modules/imagemin/node_modules/dir-glob": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", - "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", + "license": "MIT", "dependencies": { "arrify": "^1.0.1", "path-type": "^3.0.0" @@ -16616,8 +15276,7 @@ }, "node_modules/imagemin/node_modules/fast-glob": { "version": "2.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", - "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "license": "MIT", "dependencies": { "@mrmlnc/readdir-enhanced": "^2.2.1", "@nodelib/fs.stat": "^1.1.2", @@ -16632,8 +15291,7 @@ }, "node_modules/imagemin/node_modules/fill-range": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "is-number": "^3.0.0", @@ -16646,8 +15304,7 @@ }, "node_modules/imagemin/node_modules/glob-parent": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "license": "ISC", "dependencies": { "is-glob": "^3.1.0", "path-dirname": "^1.0.0" @@ -16655,8 +15312,7 @@ }, "node_modules/imagemin/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": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "license": "MIT", "dependencies": { "is-extglob": "^2.1.0" }, @@ -16666,8 +15322,7 @@ }, "node_modules/imagemin/node_modules/globby": { "version": "8.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", - "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "license": "MIT", "dependencies": { "array-union": "^1.0.1", "dir-glob": "2.0.0", @@ -16683,26 +15338,22 @@ }, "node_modules/imagemin/node_modules/globby/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/imagemin/node_modules/ignore": { "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" + "license": "MIT" }, "node_modules/imagemin/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==" + "license": "MIT" }, "node_modules/imagemin/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==", + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" }, @@ -16712,8 +15363,7 @@ }, "node_modules/imagemin/node_modules/is-number": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -16723,8 +15373,7 @@ }, "node_modules/imagemin/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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -16734,8 +15383,7 @@ }, "node_modules/imagemin/node_modules/make-dir": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "license": "MIT", "dependencies": { "pify": "^3.0.0" }, @@ -16745,16 +15393,14 @@ }, "node_modules/imagemin/node_modules/make-dir/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/imagemin/node_modules/micromatch": { "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -16776,8 +15422,7 @@ }, "node_modules/imagemin/node_modules/micromatch/node_modules/extend-shallow": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -16788,8 +15433,7 @@ }, "node_modules/imagemin/node_modules/path-type": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "license": "MIT", "dependencies": { "pify": "^3.0.0" }, @@ -16799,24 +15443,21 @@ }, "node_modules/imagemin/node_modules/path-type/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/imagemin/node_modules/slash": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/imagemin/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": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "license": "MIT", "dependencies": { "is-number": "^3.0.0", "repeat-string": "^1.6.1" @@ -16827,8 +15468,7 @@ }, "node_modules/immer": { "version": "9.0.21", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", - "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/immer" @@ -16836,13 +15476,11 @@ }, "node_modules/immutable": { "version": "4.3.4", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", - "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -16856,8 +15494,7 @@ }, "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=", + "license": "MIT", "engines": { "node": ">=4" } @@ -16867,6 +15504,7 @@ "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, + "license": "MIT", "dependencies": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" @@ -16883,37 +15521,32 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "license": "MIT", "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==", + "license": "MIT", "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": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==" + "license": "MIT" }, "node_modules/infima": { "version": "0.2.0-alpha.43", - "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.43.tgz", - "integrity": "sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==", + "license": "MIT", "engines": { "node": ">=12" } }, "node_modules/inflight": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -16921,23 +15554,19 @@ }, "node_modules/inherits": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "license": "ISC" }, "node_modules/ini": { "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "license": "ISC" }, "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==" + "license": "MIT" }, "node_modules/internal-slot": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.0", "has": "^1.0.3", @@ -16949,24 +15578,21 @@ }, "node_modules/internmap": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", - "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/interpret": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/into-stream": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", - "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", + "license": "MIT", "dependencies": { "from2": "^2.1.1", "p-is-promise": "^1.1.0" @@ -16977,40 +15603,35 @@ }, "node_modules/invariant": { "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", "dependencies": { "loose-envify": "^1.0.0" } }, "node_modules/ip-regex": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", - "integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ipaddr.js": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", - "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "license": "MIT", "engines": { "node": ">= 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": "sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "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==", + "license": "MIT", "dependencies": { "kind-of": "^6.0.0" }, @@ -17020,8 +15641,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -17029,8 +15649,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-alphabetical": "^1.0.0", "is-decimal": "^1.0.0" @@ -17042,8 +15661,7 @@ }, "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==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -17057,8 +15675,7 @@ }, "node_modules/is-array-buffer": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.2.0", @@ -17070,13 +15687,11 @@ }, "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==" + "license": "MIT" }, "node_modules/is-bigint": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "license": "MIT", "dependencies": { "has-bigints": "^1.0.1" }, @@ -17086,8 +15701,7 @@ }, "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==", + "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" }, @@ -17097,8 +15711,7 @@ }, "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==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -17112,8 +15725,6 @@ }, "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", @@ -17128,14 +15739,14 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/is-callable": { "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -17145,8 +15756,7 @@ }, "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==", + "license": "MIT", "dependencies": { "ci-info": "^2.0.0" }, @@ -17156,8 +15766,7 @@ }, "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": "sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==", + "license": "MIT", "dependencies": { "css-color-names": "^0.0.4", "hex-color-regex": "^1.1.0", @@ -17169,8 +15778,7 @@ }, "node_modules/is-core-module": { "version": "2.9.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", - "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", + "license": "MIT", "dependencies": { "has": "^1.0.3" }, @@ -17180,8 +15788,7 @@ }, "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==", + "license": "MIT", "dependencies": { "kind-of": "^6.0.0" }, @@ -17191,8 +15798,7 @@ }, "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==", + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -17205,8 +15811,7 @@ }, "node_modules/is-decimal": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz", - "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -17214,8 +15819,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", @@ -17227,16 +15831,14 @@ }, "node_modules/is-directory": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "license": "MIT", "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==", + "license": "MIT", "bin": { "is-docker": "cli.js" }, @@ -17249,24 +15851,21 @@ }, "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==", + "license": "MIT", "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=", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-finite": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", - "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "license": "MIT", "engines": { "node": ">=0.10.0" }, @@ -17276,25 +15875,22 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=8" } }, "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, + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/is-generator-function": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -17307,8 +15903,7 @@ }, "node_modules/is-gif": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz", - "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==", + "license": "MIT", "dependencies": { "file-type": "^10.4.0" }, @@ -17318,8 +15913,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, @@ -17329,8 +15923,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -17338,8 +15931,7 @@ }, "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==", + "license": "MIT", "dependencies": { "global-dirs": "^3.0.0", "is-path-inside": "^3.0.2" @@ -17353,16 +15945,14 @@ }, "node_modules/is-jpg": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz", - "integrity": "sha512-ODlO0ruzhkzD3sdynIainVP5eoOFNN85rxA1+cwwnPe4dKyX0r5+hxNO5XpCrxlHcmb9vkOit9mhRD2JVuimHg==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/is-nan": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", - "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.0", "define-properties": "^1.1.3" @@ -17376,13 +15966,11 @@ }, "node_modules/is-natural-number": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", - "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==" + "license": "MIT" }, "node_modules/is-negative-zero": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -17392,8 +15980,7 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -17403,16 +15990,14 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=0.12.0" } }, "node_modules/is-number-object": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -17425,48 +16010,42 @@ }, "node_modules/is-obj": { "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==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-object": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", - "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "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==", + "license": "MIT", "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==", + "license": "MIT", "engines": { "node": ">=8" } }, "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==", + "license": "MIT", "engines": { "node": ">=8" } }, "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==", + "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -17476,16 +16055,14 @@ }, "node_modules/is-png": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-png/-/is-png-1.1.0.tgz", - "integrity": "sha512-23Rmps8UEx3Bzqr0JqAtQo0tYP6sDfIfMt1rL9rzlla/zbteftI9LSJoqsIoGgL06sJboDGdVns4RTakAW/WTw==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -17499,37 +16076,32 @@ }, "node_modules/is-regexp": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "license": "MIT", "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==" + "license": "ISC" }, "node_modules/is-retry-allowed": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", - "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "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==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/is-shared-array-buffer": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2" }, @@ -17539,8 +16111,7 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=8" }, @@ -17550,8 +16121,7 @@ }, "node_modules/is-string": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -17564,13 +16134,11 @@ }, "node_modules/is-subset": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", - "integrity": "sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==" + "license": "MIT" }, "node_modules/is-svg": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.4.0.tgz", - "integrity": "sha512-v+AgVwiK5DsGtT9ng+m4mClp6zDAmwrW8nZi6Gg15qzvBnRWWdfWA1TGaXyCDnWq5g5asofIgMVl3PjKxvk1ug==", + "license": "MIT", "dependencies": { "fast-xml-parser": "^4.1.3" }, @@ -17583,8 +16151,7 @@ }, "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==", + "license": "MIT", "dependencies": { "has-symbols": "^1.0.2" }, @@ -17597,8 +16164,7 @@ }, "node_modules/is-typed-array": { "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -17615,23 +16181,19 @@ }, "node_modules/is-typedarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + "license": "MIT" }, "node_modules/is-url": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", - "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==" + "license": "MIT" }, "node_modules/is-utf8": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" + "license": "MIT" }, "node_modules/is-weakref": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2" }, @@ -17641,8 +16203,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -17650,16 +16211,14 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -17667,8 +16226,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-docker": "^2.0.0" }, @@ -17678,13 +16236,11 @@ }, "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==" + "license": "MIT" }, "node_modules/is2": { "version": "2.0.9", - "resolved": "https://registry.npmjs.org/is2/-/is2-2.0.9.tgz", - "integrity": "sha512-rZkHeBn9Zzq52sd9IUIV3a5mfwBY+o2HePMh0wkGBM4z4qjvy2GwVxQ6nNXSfw6MmVP6gf1QIlWjiOavhM3x5g==", + "license": "MIT", "dependencies": { "deep-is": "^0.1.3", "ip-regex": "^4.1.0", @@ -17696,32 +16252,29 @@ }, "node_modules/isarray": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "license": "ISC" }, "node_modules/isobject": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/isstream": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + "license": "MIT" }, "node_modules/istanbul-lib-coverage": { "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, + "license": "BSD-3-Clause", "engines": { "node": ">=8" } @@ -17731,6 +16284,7 @@ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.23.9", "@babel/parser": "^7.23.9", @@ -17744,9 +16298,8 @@ }, "node_modules/istanbul-lib-report": { "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, + "license": "BSD-3-Clause", "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^4.0.0", @@ -17758,18 +16311,16 @@ }, "node_modules/istanbul-lib-report/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "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, + "license": "MIT", "dependencies": { "semver": "^7.5.3" }, @@ -17782,9 +16333,8 @@ }, "node_modules/istanbul-lib-report/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -17794,9 +16344,8 @@ }, "node_modules/istanbul-lib-source-maps": { "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, + "license": "BSD-3-Clause", "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", @@ -17808,9 +16357,8 @@ }, "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, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } @@ -17820,6 +16368,7 @@ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" @@ -17830,8 +16379,7 @@ }, "node_modules/isurl": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", - "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "license": "MIT", "dependencies": { "has-to-string-tag-x": "^1.2.0", "is-object": "^1.0.1" @@ -17842,8 +16390,7 @@ }, "node_modules/jackspeak": { "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "license": "BlueOak-1.0.0", "dependencies": { "@isaacs/cliui": "^8.0.2" }, @@ -17862,6 +16409,7 @@ "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", @@ -17888,6 +16436,7 @@ "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, + "license": "MIT", "dependencies": { "execa": "^5.0.0", "jest-util": "^29.7.0", @@ -17899,9 +16448,8 @@ }, "node_modules/jest-changed-files/node_modules/p-limit": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -17917,6 +16465,7 @@ "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/environment": "^29.7.0", "@jest/expect": "^29.7.0", @@ -17945,9 +16494,8 @@ }, "node_modules/jest-circus/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -17960,9 +16508,8 @@ }, "node_modules/jest-circus/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -17976,9 +16523,8 @@ }, "node_modules/jest-circus/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -17988,24 +16534,21 @@ }, "node_modules/jest-circus/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-circus/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-circus/node_modules/p-limit": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -18018,9 +16561,8 @@ }, "node_modules/jest-circus/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18033,6 +16575,7 @@ "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", "dev": true, + "license": "MIT", "dependencies": { "@jest/core": "^29.7.0", "@jest/test-result": "^29.7.0", @@ -18063,9 +16606,8 @@ }, "node_modules/jest-cli/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18078,9 +16620,8 @@ }, "node_modules/jest-cli/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18094,9 +16635,8 @@ }, "node_modules/jest-cli/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -18106,24 +16646,21 @@ }, "node_modules/jest-cli/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-cli/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-cli/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18136,6 +16673,7 @@ "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, + "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@jest/test-sequencer": "^29.7.0", @@ -18178,9 +16716,8 @@ }, "node_modules/jest-config/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18193,9 +16730,8 @@ }, "node_modules/jest-config/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18218,15 +16754,15 @@ "url": "https://github.com/sponsors/sibiraj-s" } ], + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-config/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -18236,24 +16772,21 @@ }, "node_modules/jest-config/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-config/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-config/node_modules/strip-json-comments": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -18263,9 +16796,8 @@ }, "node_modules/jest-config/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18278,6 +16810,7 @@ "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", @@ -18290,9 +16823,8 @@ }, "node_modules/jest-diff/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18305,9 +16837,8 @@ }, "node_modules/jest-diff/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18321,9 +16852,8 @@ }, "node_modules/jest-diff/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -18333,24 +16863,21 @@ }, "node_modules/jest-diff/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-diff/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-diff/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18363,6 +16890,7 @@ "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, + "license": "MIT", "dependencies": { "detect-newline": "^3.0.0" }, @@ -18375,6 +16903,7 @@ "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", @@ -18388,9 +16917,8 @@ }, "node_modules/jest-each/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18403,9 +16931,8 @@ }, "node_modules/jest-each/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18419,9 +16946,8 @@ }, "node_modules/jest-each/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -18431,24 +16957,21 @@ }, "node_modules/jest-each/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-each/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-each/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18461,6 +16984,7 @@ "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/environment": "^29.7.0", "@jest/fake-timers": "^29.7.0", @@ -18475,9 +16999,8 @@ }, "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, + "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } @@ -18487,6 +17010,7 @@ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@types/graceful-fs": "^4.1.3", @@ -18509,9 +17033,8 @@ }, "node_modules/jest-haste-map/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -18521,6 +17044,7 @@ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "jest-util": "^29.7.0", @@ -18533,9 +17057,8 @@ }, "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, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18551,6 +17074,7 @@ "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, + "license": "MIT", "dependencies": { "jest-get-type": "^29.6.3", "pretty-format": "^29.7.0" @@ -18564,6 +17088,7 @@ "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, + "license": "MIT", "dependencies": { "chalk": "^4.0.0", "jest-diff": "^29.7.0", @@ -18576,9 +17101,8 @@ }, "node_modules/jest-matcher-utils/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18591,9 +17115,8 @@ }, "node_modules/jest-matcher-utils/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18607,9 +17130,8 @@ }, "node_modules/jest-matcher-utils/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -18619,24 +17141,21 @@ }, "node_modules/jest-matcher-utils/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-matcher-utils/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-matcher-utils/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18649,6 +17168,7 @@ "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, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.12.13", "@jest/types": "^29.6.3", @@ -18666,9 +17186,8 @@ }, "node_modules/jest-message-util/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18681,9 +17200,8 @@ }, "node_modules/jest-message-util/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18697,9 +17215,8 @@ }, "node_modules/jest-message-util/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -18709,24 +17226,21 @@ }, "node_modules/jest-message-util/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-message-util/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-message-util/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18739,6 +17253,7 @@ "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", @@ -18750,9 +17265,8 @@ }, "node_modules/jest-pnp-resolver": { "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" }, @@ -18767,9 +17281,8 @@ }, "node_modules/jest-regex-util": { "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, + "license": "MIT", "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } @@ -18779,6 +17292,7 @@ "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", @@ -18799,6 +17313,7 @@ "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, + "license": "MIT", "dependencies": { "jest-regex-util": "^29.6.3", "jest-snapshot": "^29.7.0" @@ -18809,9 +17324,8 @@ }, "node_modules/jest-resolve/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18824,9 +17338,8 @@ }, "node_modules/jest-resolve/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18840,9 +17353,8 @@ }, "node_modules/jest-resolve/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -18852,24 +17364,21 @@ }, "node_modules/jest-resolve/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-resolve/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-resolve/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18882,6 +17391,7 @@ "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/console": "^29.7.0", "@jest/environment": "^29.7.0", @@ -18911,9 +17421,8 @@ }, "node_modules/jest-runner/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -18926,9 +17435,8 @@ }, "node_modules/jest-runner/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -18942,9 +17450,8 @@ }, "node_modules/jest-runner/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -18954,15 +17461,13 @@ }, "node_modules/jest-runner/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-runner/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -18972,6 +17477,7 @@ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "jest-util": "^29.7.0", @@ -18984,9 +17490,8 @@ }, "node_modules/jest-runner/node_modules/jest-worker/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, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -18999,9 +17504,8 @@ }, "node_modules/jest-runner/node_modules/p-limit": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -19014,18 +17518,16 @@ }, "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, + "license": "BSD-3-Clause", "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, + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -19033,9 +17535,8 @@ }, "node_modules/jest-runner/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19048,6 +17549,7 @@ "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/environment": "^29.7.0", "@jest/fake-timers": "^29.7.0", @@ -19078,9 +17580,8 @@ }, "node_modules/jest-runtime/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -19093,9 +17594,8 @@ }, "node_modules/jest-runtime/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -19109,9 +17609,8 @@ }, "node_modules/jest-runtime/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -19121,24 +17620,21 @@ }, "node_modules/jest-runtime/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-runtime/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-runtime/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19151,6 +17647,7 @@ "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, + "license": "MIT", "dependencies": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", @@ -19179,9 +17676,8 @@ }, "node_modules/jest-snapshot/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -19194,9 +17690,8 @@ }, "node_modules/jest-snapshot/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -19210,9 +17705,8 @@ }, "node_modules/jest-snapshot/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -19222,24 +17716,21 @@ }, "node_modules/jest-snapshot/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-snapshot/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-snapshot/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19252,6 +17743,7 @@ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "@types/node": "*", @@ -19266,9 +17758,8 @@ }, "node_modules/jest-util/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -19281,9 +17772,8 @@ }, "node_modules/jest-util/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -19297,8 +17787,6 @@ }, "node_modules/jest-util/node_modules/ci-info": { "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", "dev": true, "funding": [ { @@ -19306,15 +17794,15 @@ "url": "https://github.com/sponsors/sibiraj-s" } ], + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-util/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -19324,24 +17812,21 @@ }, "node_modules/jest-util/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-util/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-util/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19354,6 +17839,7 @@ "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, + "license": "MIT", "dependencies": { "@jest/types": "^29.6.3", "camelcase": "^6.2.0", @@ -19368,9 +17854,8 @@ }, "node_modules/jest-validate/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -19383,9 +17868,8 @@ }, "node_modules/jest-validate/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -19399,9 +17883,8 @@ }, "node_modules/jest-validate/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -19411,24 +17894,21 @@ }, "node_modules/jest-validate/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-validate/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-validate/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19441,6 +17921,7 @@ "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, + "license": "MIT", "dependencies": { "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", @@ -19457,9 +17938,8 @@ }, "node_modules/jest-watcher/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==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -19472,9 +17952,8 @@ }, "node_modules/jest-watcher/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -19488,9 +17967,8 @@ }, "node_modules/jest-watcher/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==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -19500,24 +17978,21 @@ }, "node_modules/jest-watcher/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==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/jest-watcher/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-watcher/node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19527,8 +18002,7 @@ }, "node_modules/jest-worker": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "license": "MIT", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -19540,16 +18014,14 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/jest-worker/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -19562,8 +18034,7 @@ }, "node_modules/joi": { "version": "17.6.0", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz", - "integrity": "sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==", + "license": "BSD-3-Clause", "dependencies": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -19574,9 +18045,8 @@ }, "node_modules/jpegtran-bin": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jpegtran-bin/-/jpegtran-bin-4.0.0.tgz", - "integrity": "sha512-2cRl1ism+wJUoYAYFt6O/rLBfpXNWG2dUWbgcEkTt5WGMnqI46eEro8T4C5zGROxKRqyKpCBSdHPvt5UYCtxaQ==", "hasInstallScript": true, + "license": "MIT", "dependencies": { "bin-build": "^3.0.0", "bin-wrapper": "^4.0.0", @@ -19591,21 +18061,18 @@ }, "node_modules/js-levenshtein": { "version": "1.1.6", - "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", - "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", + "license": "MIT", "engines": { "node": ">=0.10.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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -19615,8 +18082,7 @@ }, "node_modules/jsbn": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + "license": "MIT" }, "node_modules/jsesc": { "version": "3.0.2", @@ -19631,44 +18097,37 @@ }, "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=" + "license": "MIT" }, "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==" + "license": "MIT" }, "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==" + "license": "MIT" }, "node_modules/json-pointer": { "version": "0.6.2", - "resolved": "https://registry.npmjs.org/json-pointer/-/json-pointer-0.6.2.tgz", - "integrity": "sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==", + "license": "MIT", "dependencies": { "foreach": "^2.0.4" } }, "node_modules/json-schema": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + "license": "(AFL-2.1 OR BSD-3-Clause)" }, "node_modules/json-schema-compare": { "version": "0.2.2", - "resolved": "https://registry.npmjs.org/json-schema-compare/-/json-schema-compare-0.2.2.tgz", - "integrity": "sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==", + "license": "MIT", "dependencies": { "lodash": "^4.17.4" } }, "node_modules/json-schema-merge-allof": { "version": "0.8.1", - "resolved": "https://registry.npmjs.org/json-schema-merge-allof/-/json-schema-merge-allof-0.8.1.tgz", - "integrity": "sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==", + "license": "MIT", "dependencies": { "compute-lcm": "^1.1.2", "json-schema-compare": "^0.2.2", @@ -19680,13 +18139,11 @@ }, "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==" + "license": "MIT" }, "node_modules/json-stringify-safe": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + "license": "ISC" }, "node_modules/json5": { "version": "2.2.3", @@ -19701,8 +18158,7 @@ }, "node_modules/jsonfile": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", "dependencies": { "universalify": "^2.0.0" }, @@ -19712,8 +18168,7 @@ }, "node_modules/jsprim": { "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "license": "MIT", "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", @@ -19726,37 +18181,31 @@ }, "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==", + "license": "MIT", "dependencies": { "json-buffer": "3.0.0" } }, "node_modules/khroma": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/khroma/-/khroma-2.1.0.tgz", - "integrity": "sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==" + "version": "2.1.0" }, "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==", + "license": "MIT", "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==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/klona": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", - "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "license": "MIT", "engines": { "node": ">= 8" } @@ -19779,8 +18228,7 @@ }, "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==", + "license": "MIT", "dependencies": { "package-json": "^6.3.0" }, @@ -19790,13 +18238,11 @@ }, "node_modules/layout-base": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/layout-base/-/layout-base-1.0.2.tgz", - "integrity": "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==" + "license": "MIT" }, "node_modules/lazy-cache": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", - "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", + "license": "MIT", "dependencies": { "set-getter": "^0.1.0" }, @@ -19806,8 +18252,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==", + "license": "MIT", "engines": { "node": ">=6" } @@ -19827,22 +18272,19 @@ }, "node_modules/lilconfig": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "license": "MIT", "engines": { "node": ">=10" } }, "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==" + "license": "MIT" }, "node_modules/lint-staged": { "version": "14.0.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-14.0.1.tgz", - "integrity": "sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==", "dev": true, + "license": "MIT", "dependencies": { "chalk": "5.3.0", "commander": "11.0.0", @@ -19867,9 +18309,8 @@ }, "node_modules/lint-staged/node_modules/chalk": { "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, + "license": "MIT", "engines": { "node": "^12.17.0 || ^14.13 || >=16.0.0" }, @@ -19879,18 +18320,16 @@ }, "node_modules/lint-staged/node_modules/commander": { "version": "11.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz", - "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=16" } }, "node_modules/lint-staged/node_modules/execa": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", "dev": true, + "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.1", @@ -19911,9 +18350,8 @@ }, "node_modules/lint-staged/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, + "license": "MIT", "engines": { "node": ">=10" }, @@ -19923,18 +18361,16 @@ }, "node_modules/lint-staged/node_modules/human-signals": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=14.18.0" } }, "node_modules/lint-staged/node_modules/is-stream": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, + "license": "MIT", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, @@ -19944,9 +18380,8 @@ }, "node_modules/lint-staged/node_modules/mimic-fn": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -19956,9 +18391,8 @@ }, "node_modules/lint-staged/node_modules/npm-run-path": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^4.0.0" }, @@ -19971,9 +18405,8 @@ }, "node_modules/lint-staged/node_modules/onetime": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, + "license": "MIT", "dependencies": { "mimic-fn": "^4.0.0" }, @@ -19986,9 +18419,8 @@ }, "node_modules/lint-staged/node_modules/path-key": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -19998,9 +18430,8 @@ }, "node_modules/lint-staged/node_modules/strip-final-newline": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -20010,25 +18441,22 @@ }, "node_modules/lint-staged/node_modules/yaml": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", - "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", "dev": true, + "license": "ISC", "engines": { "node": ">= 14" } }, "node_modules/liquid-json": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/liquid-json/-/liquid-json-0.3.1.tgz", - "integrity": "sha512-wUayTU8MS827Dam6MxgD72Ui+KOSF+u/eIqpatOtjnvgJ0+mnDq33uC2M7J0tPK+upe/DpUAuK4JUU89iBoNKQ==", + "license": "Apache-2.0", "engines": { "node": ">=4" } }, "node_modules/list-item": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", - "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", + "license": "MIT", "dependencies": { "expand-range": "^1.8.1", "extend-shallow": "^2.0.1", @@ -20041,13 +18469,11 @@ }, "node_modules/list-item/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==" + "license": "MIT" }, "node_modules/list-item/node_modules/is-number": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -20057,8 +18483,7 @@ }, "node_modules/list-item/node_modules/kind-of": { "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -20068,14 +18493,12 @@ }, "node_modules/listenercount": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz", - "integrity": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" + "license": "ISC" }, "node_modules/listr2": { "version": "6.6.1", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-6.6.1.tgz", - "integrity": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==", "dev": true, + "license": "MIT", "dependencies": { "cli-truncate": "^3.1.0", "colorette": "^2.0.20", @@ -20098,9 +18521,8 @@ }, "node_modules/listr2/node_modules/ansi-regex": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -20110,9 +18532,8 @@ }, "node_modules/listr2/node_modules/ansi-styles": { "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -20122,21 +18543,18 @@ }, "node_modules/listr2/node_modules/emoji-regex": { "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/listr2/node_modules/eventemitter3": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", - "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/listr2/node_modules/string-width": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, + "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", @@ -20151,9 +18569,8 @@ }, "node_modules/listr2/node_modules/strip-ansi": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -20166,9 +18583,8 @@ }, "node_modules/listr2/node_modules/wrap-ansi": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", @@ -20183,13 +18599,11 @@ }, "node_modules/livereload-js": { "version": "2.4.0", - "resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz", - "integrity": "sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==" + "license": "MIT" }, "node_modules/load-json-file": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^2.2.0", @@ -20203,8 +18617,7 @@ }, "node_modules/load-json-file/node_modules/parse-json": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "license": "MIT", "dependencies": { "error-ex": "^1.2.0" }, @@ -20214,16 +18627,14 @@ }, "node_modules/load-json-file/node_modules/pify": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/load-json-file/node_modules/strip-bom": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "license": "MIT", "dependencies": { "is-utf8": "^0.2.0" }, @@ -20233,21 +18644,18 @@ }, "node_modules/load-script": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/load-script/-/load-script-1.0.0.tgz", - "integrity": "sha1-BJGTngvuVkPuSUp+PaPSuscMbKQ=" + "license": "MIT" }, "node_modules/loader-runner": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", - "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==", + "license": "MIT", "engines": { "node": ">=6.11.5" } }, "node_modules/loader-utils": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "license": "MIT", "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", @@ -20259,8 +18667,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==", + "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -20270,138 +18677,111 @@ }, "node_modules/lodash": { "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "license": "MIT" }, "node_modules/lodash-es": { "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + "license": "MIT" }, "node_modules/lodash._reinterpolate": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" + "license": "MIT" }, "node_modules/lodash.assignin": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", - "integrity": "sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg==" + "license": "MIT" }, "node_modules/lodash.bind": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", - "integrity": "sha512-lxdsn7xxlCymgLYo1gGvVrfHmkjDiyqVv62FAeF2i5ta72BipE1SLxw8hPEPLhD4/247Ijw07UQH7Hq/chT5LA==" + "license": "MIT" }, "node_modules/lodash.chunk": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.chunk/-/lodash.chunk-4.2.0.tgz", - "integrity": "sha512-ZzydJKfUHJwHa+hF5X66zLFCBrWn5GeF28OHEr4WVWtNDXlQ/IjWKPBiikqKo2ne0+v6JgCgJ0GzJp8k8bHC7w==" + "license": "MIT" }, "node_modules/lodash.clonedeep": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==" + "license": "MIT" }, "node_modules/lodash.curry": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.curry/-/lodash.curry-4.1.1.tgz", - "integrity": "sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==" + "license": "MIT" }, "node_modules/lodash.debounce": { "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + "license": "MIT" }, "node_modules/lodash.defaults": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==" + "license": "MIT" }, "node_modules/lodash.escape": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz", - "integrity": "sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==" + "license": "MIT" }, "node_modules/lodash.filter": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", - "integrity": "sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ==" + "license": "MIT" }, "node_modules/lodash.flatten": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==" + "license": "MIT" }, "node_modules/lodash.flattendeep": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", - "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==" + "license": "MIT" }, "node_modules/lodash.flow": { "version": "3.5.0", - "resolved": "https://registry.npmjs.org/lodash.flow/-/lodash.flow-3.5.0.tgz", - "integrity": "sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==" + "license": "MIT" }, "node_modules/lodash.foreach": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", - "integrity": "sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==" + "license": "MIT" }, "node_modules/lodash.isequal": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + "license": "MIT" }, "node_modules/lodash.map": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", - "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==" + "license": "MIT" }, "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==" + "license": "MIT" }, "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==" + "license": "MIT" }, "node_modules/lodash.padstart": { "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" + "license": "MIT" }, "node_modules/lodash.pick": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==" + "license": "MIT" }, "node_modules/lodash.reduce": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", - "integrity": "sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw==" + "license": "MIT" }, "node_modules/lodash.reject": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", - "integrity": "sha512-qkTuvgEzYdyhiJBx42YPzPo71R1aEr0z79kAv7Ixg8wPFEjgRgJdUsGMG3Hf3OYSF/kHI79XhNlt+5Ar6OzwxQ==" + "license": "MIT" }, "node_modules/lodash.some": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", - "integrity": "sha512-j7MJE+TuT51q9ggt4fSgVqro163BEFjAt3u97IqU+JA2DkWl80nFTrowzLpZ/BnpN7rrl0JA/593NAdd8p/scQ==" + "license": "MIT" }, "node_modules/lodash.sortby": { "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + "license": "MIT" }, "node_modules/lodash.template": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "license": "MIT", "dependencies": { "lodash._reinterpolate": "^3.0.0", "lodash.templatesettings": "^4.0.0" @@ -20409,22 +18789,19 @@ }, "node_modules/lodash.templatesettings": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "license": "MIT", "dependencies": { "lodash._reinterpolate": "^3.0.0" } }, "node_modules/lodash.uniq": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + "license": "MIT" }, "node_modules/log-update": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-5.0.1.tgz", - "integrity": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==", "dev": true, + "license": "MIT", "dependencies": { "ansi-escapes": "^5.0.0", "cli-cursor": "^4.0.0", @@ -20441,9 +18818,8 @@ }, "node_modules/log-update/node_modules/ansi-escapes": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-5.0.0.tgz", - "integrity": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==", "dev": true, + "license": "MIT", "dependencies": { "type-fest": "^1.0.2" }, @@ -20456,9 +18832,8 @@ }, "node_modules/log-update/node_modules/ansi-regex": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -20468,9 +18843,8 @@ }, "node_modules/log-update/node_modules/ansi-styles": { "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -20480,15 +18854,13 @@ }, "node_modules/log-update/node_modules/emoji-regex": { "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/log-update/node_modules/string-width": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, + "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", @@ -20503,9 +18875,8 @@ }, "node_modules/log-update/node_modules/strip-ansi": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -20518,9 +18889,8 @@ }, "node_modules/log-update/node_modules/type-fest": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", "dev": true, + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -20530,9 +18900,8 @@ }, "node_modules/log-update/node_modules/wrap-ansi": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", @@ -20547,8 +18916,7 @@ }, "node_modules/logalot": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/logalot/-/logalot-2.1.0.tgz", - "integrity": "sha512-Ah4CgdSRfeCJagxQhcVNMi9BfGYyEKLa6d7OA6xSbld/Hg3Cf2QiOa1mDpmG7Ve8LOH6DN3mdttzjQAvWTyVkw==", + "license": "MIT", "dependencies": { "figures": "^1.3.5", "squeak": "^1.0.0" @@ -20559,16 +18927,14 @@ }, "node_modules/longest": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "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==", + "license": "MIT", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, @@ -20578,8 +18944,7 @@ }, "node_modules/loud-rejection": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==", + "license": "MIT", "dependencies": { "currently-unhandled": "^0.4.1", "signal-exit": "^3.0.0" @@ -20590,24 +18955,21 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/lpad-align": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/lpad-align/-/lpad-align-1.1.2.tgz", - "integrity": "sha512-MMIcFmmR9zlGZtBcFOows6c2COMekHCIFJz3ew/rRpKZ1wR4mXDPzvcVqLarux8M33X4TPSq2Jdw8WJj0q0KbQ==", + "license": "MIT", "dependencies": { "get-stdin": "^4.0.1", "indent-string": "^2.1.0", @@ -20623,8 +18985,7 @@ }, "node_modules/lpad-align/node_modules/indent-string": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==", + "license": "MIT", "dependencies": { "repeating": "^2.0.0" }, @@ -20634,8 +18995,7 @@ }, "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==", + "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, @@ -20653,8 +19013,7 @@ }, "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==", + "license": "MIT", "dependencies": { "semver": "^6.0.0" }, @@ -20667,41 +19026,36 @@ }, "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==", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/makeerror": { "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "tmpl": "1.0.5" } }, "node_modules/map-cache": { "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/map-obj": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "license": "MIT", "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": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "license": "MIT", "dependencies": { "object-visit": "^1.0.0" }, @@ -20711,8 +19065,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -20720,16 +19073,14 @@ }, "node_modules/markdown-link": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", - "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/markdown-toc": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/markdown-toc/-/markdown-toc-1.2.0.tgz", - "integrity": "sha512-eOsq7EGd3asV0oBfmyqngeEIhrbkc7XVP63OwcJBIhH2EpG2PzFcbZdhy1jutXSlRBBVMNXHvMtSr5LAxSUvUg==", + "license": "MIT", "dependencies": { "concat-stream": "^1.5.2", "diacritics-map": "^0.1.0", @@ -20753,24 +19104,21 @@ }, "node_modules/markdown-toc/node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/markdown-toc/node_modules/autolinker": { "version": "0.28.1", - "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", - "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", + "license": "MIT", "dependencies": { "gulp-header": "^1.7.1" } }, "node_modules/markdown-toc/node_modules/gray-matter": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", - "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", + "license": "MIT", "dependencies": { "ansi-red": "^0.1.1", "coffee-script": "^1.12.4", @@ -20784,8 +19132,7 @@ }, "node_modules/markdown-toc/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==", + "license": "MIT", "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -20796,8 +19143,7 @@ }, "node_modules/markdown-toc/node_modules/remarkable": { "version": "1.7.4", - "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz", - "integrity": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==", + "license": "MIT", "dependencies": { "argparse": "^1.0.10", "autolinker": "~0.28.0" @@ -20822,13 +19168,11 @@ }, "node_modules/math-random": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", - "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1", @@ -20837,8 +19181,7 @@ }, "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==", + "license": "MIT", "dependencies": { "unist-util-remove": "^2.0.0" }, @@ -20849,8 +19192,7 @@ }, "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==", + "license": "MIT", "dependencies": { "unist-util-visit": "^2.0.0" }, @@ -20861,8 +19203,7 @@ }, "node_modules/mdast-util-definitions/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", @@ -20875,8 +19216,7 @@ }, "node_modules/mdast-util-definitions/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" @@ -20888,8 +19228,7 @@ }, "node_modules/mdast-util-from-markdown": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", - "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", @@ -20911,8 +19250,7 @@ }, "node_modules/mdast-util-from-markdown/node_modules/mdast-util-to-string": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", - "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0" }, @@ -20923,8 +19261,7 @@ }, "node_modules/mdast-util-from-markdown/node_modules/unist-util-stringify-position": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -20935,8 +19272,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", @@ -20954,8 +19290,7 @@ }, "node_modules/mdast-util-to-hast/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", @@ -20968,8 +19303,7 @@ }, "node_modules/mdast-util-to-hast/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" @@ -20981,8 +19315,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -20990,26 +19323,22 @@ }, "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==" + "license": "CC0-1.0" }, "node_modules/mdurl": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" + "license": "MIT" }, "node_modules/media-typer": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/memfs": { "version": "3.4.7", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", - "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", + "license": "Unlicense", "dependencies": { "fs-monkey": "^1.0.3" }, @@ -21019,13 +19348,11 @@ }, "node_modules/memoize-one": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.1.1.tgz", - "integrity": "sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA==" + "license": "MIT" }, "node_modules/meow": { "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==", + "license": "MIT", "dependencies": { "camelcase-keys": "^2.0.0", "decamelize": "^1.1.2", @@ -21044,26 +19371,22 @@ }, "node_modules/merge-descriptors": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + "license": "MIT" }, "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==" + "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/mermaid": { "version": "9.4.3", - "resolved": "https://registry.npmjs.org/mermaid/-/mermaid-9.4.3.tgz", - "integrity": "sha512-TLkQEtqhRSuEHSE34lh5bCa94KATCyluAXmFnNI2PRZwOpXFeqiJWwZl+d2CcemE1RS6QbbueSSq9QIg8Uxcyw==", + "license": "MIT", "dependencies": { "@braintree/sanitize-url": "^6.0.0", "cytoscape": "^3.23.0", @@ -21085,38 +19408,32 @@ }, "node_modules/mermaid/node_modules/dompurify": { "version": "2.4.3", - "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-2.4.3.tgz", - "integrity": "sha512-q6QaLcakcRjebxjg8/+NP+h0rPfatOgOzc46Fst9VAA3jF2ApfKBNKMzdP4DYTqtUMXSCd5pRS/8Po/OmoCHZQ==" + "license": "(MPL-2.0 OR Apache-2.0)" }, "node_modules/mermaid/node_modules/uuid": { "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", "funding": [ "https://github.com/sponsors/broofa", "https://github.com/sponsors/ctavan" ], + "license": "MIT", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/methods": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", "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==" + "license": "MIT" }, "node_modules/micromark": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", - "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", "funding": [ { "type": "GitHub Sponsors", @@ -21127,6 +19444,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "@types/debug": "^4.0.0", "debug": "^4.0.0", @@ -21149,8 +19467,6 @@ }, "node_modules/micromark-core-commonmark": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", - "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", "funding": [ { "type": "GitHub Sponsors", @@ -21161,6 +19477,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-factory-destination": "^1.0.0", @@ -21182,8 +19499,6 @@ }, "node_modules/micromark-factory-destination": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", - "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", "funding": [ { "type": "GitHub Sponsors", @@ -21194,6 +19509,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -21202,8 +19518,6 @@ }, "node_modules/micromark-factory-label": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", - "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", "funding": [ { "type": "GitHub Sponsors", @@ -21214,6 +19528,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -21223,8 +19538,6 @@ }, "node_modules/micromark-factory-space": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz", - "integrity": "sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==", "funding": [ { "type": "GitHub Sponsors", @@ -21235,6 +19548,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-types": "^1.0.0" @@ -21242,8 +19556,6 @@ }, "node_modules/micromark-factory-title": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", - "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", "funding": [ { "type": "GitHub Sponsors", @@ -21254,6 +19566,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -21263,8 +19576,6 @@ }, "node_modules/micromark-factory-whitespace": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", - "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", "funding": [ { "type": "GitHub Sponsors", @@ -21275,6 +19586,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-factory-space": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -21284,8 +19596,6 @@ }, "node_modules/micromark-util-character": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.2.0.tgz", - "integrity": "sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==", "funding": [ { "type": "GitHub Sponsors", @@ -21296,6 +19606,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0", "micromark-util-types": "^1.0.0" @@ -21303,8 +19614,6 @@ }, "node_modules/micromark-util-chunked": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", - "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", "funding": [ { "type": "GitHub Sponsors", @@ -21315,14 +19624,13 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0" } }, "node_modules/micromark-util-classify-character": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", - "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", "funding": [ { "type": "GitHub Sponsors", @@ -21333,6 +19641,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -21341,8 +19650,6 @@ }, "node_modules/micromark-util-combine-extensions": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", - "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", "funding": [ { "type": "GitHub Sponsors", @@ -21353,6 +19660,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-chunked": "^1.0.0", "micromark-util-types": "^1.0.0" @@ -21360,8 +19668,6 @@ }, "node_modules/micromark-util-decode-numeric-character-reference": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", - "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", "funding": [ { "type": "GitHub Sponsors", @@ -21372,14 +19678,13 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0" } }, "node_modules/micromark-util-decode-string": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", - "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", "funding": [ { "type": "GitHub Sponsors", @@ -21390,6 +19695,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "decode-named-character-reference": "^1.0.0", "micromark-util-character": "^1.0.0", @@ -21399,8 +19705,6 @@ }, "node_modules/micromark-util-encode": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", - "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", "funding": [ { "type": "GitHub Sponsors", @@ -21410,12 +19714,11 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromark-util-html-tag-name": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", - "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", "funding": [ { "type": "GitHub Sponsors", @@ -21425,12 +19728,11 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromark-util-normalize-identifier": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", - "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", "funding": [ { "type": "GitHub Sponsors", @@ -21441,14 +19743,13 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-symbol": "^1.0.0" } }, "node_modules/micromark-util-resolve-all": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", - "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", "funding": [ { "type": "GitHub Sponsors", @@ -21459,14 +19760,13 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-types": "^1.0.0" } }, "node_modules/micromark-util-sanitize-uri": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", - "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", "funding": [ { "type": "GitHub Sponsors", @@ -21477,6 +19777,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-character": "^1.0.0", "micromark-util-encode": "^1.0.0", @@ -21485,8 +19786,6 @@ }, "node_modules/micromark-util-subtokenize": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", - "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", "funding": [ { "type": "GitHub Sponsors", @@ -21497,6 +19796,7 @@ "url": "https://opencollective.com/unified" } ], + "license": "MIT", "dependencies": { "micromark-util-chunked": "^1.0.0", "micromark-util-symbol": "^1.0.0", @@ -21506,8 +19806,6 @@ }, "node_modules/micromark-util-symbol": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz", - "integrity": "sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==", "funding": [ { "type": "GitHub Sponsors", @@ -21517,12 +19815,11 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromark-util-types": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", - "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", "funding": [ { "type": "GitHub Sponsors", @@ -21532,12 +19829,12 @@ "type": "OpenCollective", "url": "https://opencollective.com/unified" } - ] + ], + "license": "MIT" }, "node_modules/micromatch": { "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "license": "MIT", "dependencies": { "braces": "^3.0.2", "picomatch": "^2.3.1" @@ -21548,8 +19845,7 @@ }, "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==", + "license": "MIT", "dependencies": { "bn.js": "^4.0.0", "brorand": "^1.0.1" @@ -21560,13 +19856,11 @@ }, "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==" + "license": "MIT" }, "node_modules/mime": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", "bin": { "mime": "cli.js" }, @@ -21576,24 +19870,21 @@ }, "node_modules/mime-db": { "version": "1.51.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", - "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/mime-format": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mime-format/-/mime-format-2.0.1.tgz", - "integrity": "sha512-XxU3ngPbEnrYnNbIX+lYSaYg0M01v6p2ntd2YaFksTu0vayaw5OJvbdRyWs07EYRlLED5qadUZ+xo+XhOvFhwg==", + "license": "Apache-2.0", "dependencies": { "charset": "^1.0.0" } }, "node_modules/mime-types": { "version": "2.1.34", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", - "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", + "license": "MIT", "dependencies": { "mime-db": "1.51.0" }, @@ -21603,16 +19894,14 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "engines": { "node": ">=4" } @@ -21634,8 +19923,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.1", "tiny-warning": "^1.0.3" @@ -21647,8 +19935,7 @@ }, "node_modules/mini-css-extract-plugin": { "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==", + "license": "MIT", "dependencies": { "schema-utils": "^4.0.0" }, @@ -21665,8 +19952,7 @@ }, "node_modules/mini-css-extract-plugin/node_modules/ajv": { "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -21680,8 +19966,7 @@ }, "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, @@ -21691,13 +19976,11 @@ }, "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.8.0", @@ -21714,18 +19997,15 @@ }, "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==" + "license": "ISC" }, "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": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" + "license": "MIT" }, "node_modules/minimatch": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -21735,8 +20015,7 @@ }, "node_modules/minimist": { "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + "license": "MIT" }, "node_modules/minipass": { "version": "7.1.2", @@ -21748,13 +20027,11 @@ }, "node_modules/mitt": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", - "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "for-in": "^1.0.2", "is-extendable": "^1.0.1" @@ -21765,8 +20042,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" }, @@ -21784,8 +20060,7 @@ }, "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==", + "license": "MIT", "dependencies": { "minimist": "^1.2.6" }, @@ -21795,34 +20070,29 @@ }, "node_modules/moo": { "version": "0.5.2", - "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", - "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" + "license": "BSD-3-Clause" }, "node_modules/mri": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/mrmime": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.0.tgz", - "integrity": "sha512-a70zx7zFfVO7XpnQ2IX1Myh9yY4UYvfld/dikWRnsXxbyvMcfz+u6UfgNAtH+k2QqtJuzVpv6eLTx1G2+WKZbQ==", + "license": "MIT", "engines": { "node": ">=10" } }, "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==" + "license": "MIT" }, "node_modules/multicast-dns": { "version": "7.2.5", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", - "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "license": "MIT", "dependencies": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" @@ -21833,16 +20103,14 @@ }, "node_modules/mustache": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", - "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", + "license": "MIT", "bin": { "mustache": "bin/mustache" } }, "node_modules/mz": { "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "license": "MIT", "dependencies": { "any-promise": "^1.0.0", "object-assign": "^4.0.1", @@ -21868,8 +20136,7 @@ }, "node_modules/nanomatch": { "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "license": "MIT", "dependencies": { "arr-diff": "^4.0.0", "array-unique": "^0.3.2", @@ -21889,8 +20156,7 @@ }, "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": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -21901,8 +20167,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" }, @@ -21912,14 +20177,12 @@ }, "node_modules/natural-compare": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/nearley": { "version": "2.20.1", - "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", - "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", + "license": "MIT", "dependencies": { "commander": "^2.19.0", "moo": "^0.5.0", @@ -21939,31 +20202,26 @@ }, "node_modules/nearley/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==" + "license": "MIT" }, "node_modules/negotiator": { "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", "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==" + "license": "MIT" }, "node_modules/nice-try": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" @@ -21971,16 +20229,14 @@ }, "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==", + "license": "MIT", "dependencies": { "lodash": "^4.17.21" } }, "node_modules/node-fetch": { "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==", + "license": "MIT", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -21998,8 +20254,7 @@ }, "node_modules/node-fetch-h2": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/node-fetch-h2/-/node-fetch-h2-2.3.0.tgz", - "integrity": "sha512-ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg==", + "license": "MIT", "dependencies": { "http2-client": "^1.2.5" }, @@ -22009,22 +20264,19 @@ }, "node_modules/node-forge": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "license": "(BSD-3-Clause OR GPL-2.0)", "engines": { "node": ">= 6.13.0" } }, "node_modules/node-int64": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/node-polyfill-webpack-plugin": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-2.0.1.tgz", - "integrity": "sha512-ZUMiCnZkP1LF0Th2caY6J/eKKoA0TefpoVa68m/LQU1I/mE8rGt4fNYGgNuCcK+aG8P8P43nbeJ2RqJMOL/Y1A==", + "license": "MIT", "dependencies": { "assert": "^2.0.0", "browserify-zlib": "^0.2.0", @@ -22061,8 +20313,6 @@ }, "node_modules/node-polyfill-webpack-plugin/node_modules/buffer": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "funding": [ { "type": "github", @@ -22077,6 +20327,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.2.1" @@ -22084,8 +20335,7 @@ }, "node_modules/node-polyfill-webpack-plugin/node_modules/readable-stream": { "version": "4.5.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", - "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", + "license": "MIT", "dependencies": { "abort-controller": "^3.0.0", "buffer": "^6.0.3", @@ -22099,8 +20349,7 @@ }, "node_modules/node-polyfill-webpack-plugin/node_modules/type-fest": { "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=12.20" }, @@ -22110,8 +20359,7 @@ }, "node_modules/node-readfiles": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/node-readfiles/-/node-readfiles-0.2.0.tgz", - "integrity": "sha512-SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==", + "license": "MIT", "dependencies": { "es6-promise": "^3.2.1" } @@ -22123,13 +20371,11 @@ }, "node_modules/non-layered-tidy-tree-layout": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz", - "integrity": "sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==" + "license": "MIT" }, "node_modules/normalize-package-data": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -22139,32 +20385,28 @@ }, "node_modules/normalize-package-data/node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", "bin": { "semver": "bin/semver" } }, "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==", + "license": "MIT", "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": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "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==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -22174,8 +20416,7 @@ }, "node_modules/npm-conf": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", - "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "license": "MIT", "dependencies": { "config-chain": "^1.1.11", "pify": "^3.0.0" @@ -22186,16 +20427,14 @@ }, "node_modules/npm-conf/node_modules/pify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "license": "MIT", "engines": { "node": ">=4" } }, "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==", + "license": "MIT", "dependencies": { "path-key": "^3.0.0" }, @@ -22205,13 +20444,11 @@ }, "node_modules/nprogress": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz", - "integrity": "sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==" + "license": "MIT" }, "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==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0" }, @@ -22221,21 +20458,18 @@ }, "node_modules/num2fraction": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==" + "license": "MIT" }, "node_modules/oas-kit-common": { "version": "1.0.8", - "resolved": "https://registry.npmjs.org/oas-kit-common/-/oas-kit-common-1.0.8.tgz", - "integrity": "sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ==", + "license": "BSD-3-Clause", "dependencies": { "fast-safe-stringify": "^2.0.7" } }, "node_modules/oas-linter": { "version": "3.2.2", - "resolved": "https://registry.npmjs.org/oas-linter/-/oas-linter-3.2.2.tgz", - "integrity": "sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ==", + "license": "BSD-3-Clause", "dependencies": { "@exodus/schemasafe": "^1.0.0-rc.2", "should": "^13.2.1", @@ -22247,8 +20481,7 @@ }, "node_modules/oas-resolver": { "version": "2.5.6", - "resolved": "https://registry.npmjs.org/oas-resolver/-/oas-resolver-2.5.6.tgz", - "integrity": "sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ==", + "license": "BSD-3-Clause", "dependencies": { "node-fetch-h2": "^2.3.0", "oas-kit-common": "^1.0.8", @@ -22265,8 +20498,7 @@ }, "node_modules/oas-resolver-browser": { "version": "2.5.2", - "resolved": "https://registry.npmjs.org/oas-resolver-browser/-/oas-resolver-browser-2.5.2.tgz", - "integrity": "sha512-L3ugWyBHOpKLT+lb+pFXCOpk3byh6usis5T9u9mfu92jH5bR6YK8MA2bebUTIjY7I4415PzDeZcmcc+i7X05MA==", + "license": "BSD-3-Clause", "dependencies": { "node-fetch-h2": "^2.3.0", "oas-kit-common": "^1.0.8", @@ -22284,8 +20516,7 @@ }, "node_modules/oas-resolver-browser/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -22298,16 +20529,14 @@ }, "node_modules/oas-resolver-browser/node_modules/camelcase": { "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/oas-resolver-browser/node_modules/cliui": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", @@ -22316,8 +20545,7 @@ }, "node_modules/oas-resolver-browser/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -22327,13 +20555,11 @@ }, "node_modules/oas-resolver-browser/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==" + "license": "MIT" }, "node_modules/oas-resolver-browser/node_modules/wrap-ansi": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -22345,13 +20571,11 @@ }, "node_modules/oas-resolver-browser/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==" + "license": "ISC" }, "node_modules/oas-resolver-browser/node_modules/yargs": { "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "license": "MIT", "dependencies": { "cliui": "^6.0.0", "decamelize": "^1.2.0", @@ -22371,8 +20595,7 @@ }, "node_modules/oas-resolver-browser/node_modules/yargs-parser": { "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "license": "ISC", "dependencies": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" @@ -22383,16 +20606,14 @@ }, "node_modules/oas-schema-walker": { "version": "1.1.5", - "resolved": "https://registry.npmjs.org/oas-schema-walker/-/oas-schema-walker-1.1.5.tgz", - "integrity": "sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ==", + "license": "BSD-3-Clause", "funding": { "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, "node_modules/oas-validator": { "version": "5.0.8", - "resolved": "https://registry.npmjs.org/oas-validator/-/oas-validator-5.0.8.tgz", - "integrity": "sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw==", + "license": "BSD-3-Clause", "dependencies": { "call-me-maybe": "^1.0.1", "oas-kit-common": "^1.0.8", @@ -22409,24 +20630,21 @@ }, "node_modules/oauth-sign": { "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "license": "Apache-2.0", "engines": { "node": "*" } }, "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=", + "license": "MIT", "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": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "license": "MIT", "dependencies": { "copy-descriptor": "^0.1.0", "define-property": "^0.2.5", @@ -22438,8 +20656,7 @@ }, "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": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -22449,8 +20666,7 @@ }, "node_modules/object-copy/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": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -22460,13 +20676,11 @@ }, "node_modules/object-copy/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==" + "license": "MIT" }, "node_modules/object-copy/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": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -22476,8 +20690,7 @@ }, "node_modules/object-copy/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==", + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -22489,16 +20702,14 @@ }, "node_modules/object-copy/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==", + "license": "MIT", "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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -22508,16 +20719,14 @@ }, "node_modules/object-inspect": { "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -22531,16 +20740,14 @@ }, "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==", + "license": "MIT", "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": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "license": "MIT", "dependencies": { "isobject": "^3.0.0" }, @@ -22550,8 +20757,7 @@ }, "node_modules/object.assign": { "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -22567,8 +20773,7 @@ }, "node_modules/object.entries": { "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -22580,8 +20785,7 @@ }, "node_modules/object.fromentries": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -22596,8 +20800,7 @@ }, "node_modules/object.getownpropertydescriptors": { "version": "2.1.5", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz", - "integrity": "sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==", + "license": "MIT", "dependencies": { "array.prototype.reduce": "^1.0.5", "call-bind": "^1.0.2", @@ -22613,8 +20816,7 @@ }, "node_modules/object.pick": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, @@ -22624,8 +20826,7 @@ }, "node_modules/object.values": { "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -22640,13 +20841,11 @@ }, "node_modules/obuf": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + "license": "MIT" }, "node_modules/on-finished": { "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -22656,24 +20855,21 @@ }, "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==", + "license": "MIT", "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=", + "license": "ISC", "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==", + "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" }, @@ -22686,8 +20882,7 @@ }, "node_modules/open": { "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "license": "MIT", "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", @@ -22702,17 +20897,15 @@ }, "node_modules/opener": { "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "license": "(WTFPL OR MIT)", "bin": { "opener": "bin/opener-bin.js" } }, "node_modules/optipng-bin": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-5.1.0.tgz", - "integrity": "sha512-9baoqZTNNmXQjq/PQTWEXbVV3AMO2sI/GaaqZJZ8SExfAzjijeAP7FEeT+TtyumSw7gr0PZtSUYB/Ke7iHQVKA==", "hasInstallScript": true, + "license": "MIT", "dependencies": { "bin-build": "^3.0.0", "bin-wrapper": "^4.0.0", @@ -22727,13 +20920,11 @@ }, "node_modules/os-browserify": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" + "license": "MIT" }, "node_modules/os-filter-obj": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", - "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", + "license": "MIT", "dependencies": { "arch": "^2.1.0" }, @@ -22743,16 +20934,14 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/p-event": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", - "integrity": "sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==", + "license": "MIT", "dependencies": { "p-timeout": "^1.1.1" }, @@ -22762,24 +20951,21 @@ }, "node_modules/p-finally": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/p-is-promise": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", - "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -22792,8 +20978,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==", + "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -22803,8 +20988,7 @@ }, "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==", + "license": "MIT", "dependencies": { "aggregate-error": "^3.0.0" }, @@ -22817,8 +21001,7 @@ }, "node_modules/p-map-series": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", - "integrity": "sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==", + "license": "MIT", "dependencies": { "p-reduce": "^1.0.0" }, @@ -22828,24 +21011,21 @@ }, "node_modules/p-pipe": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-1.2.0.tgz", - "integrity": "sha512-IA8SqjIGA8l9qOksXJvsvkeQ+VGb0TAzNCzvKvz9wt5wWLqfWbV6fXy43gpR2L4Te8sOq3S+Ql9biAaMKPdbtw==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/p-reduce": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", - "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/p-retry": { "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "license": "MIT", "dependencies": { "@types/retry": "0.12.0", "retry": "^0.13.1" @@ -22856,8 +21036,7 @@ }, "node_modules/p-timeout": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", - "integrity": "sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==", + "license": "MIT", "dependencies": { "p-finally": "^1.0.0" }, @@ -22867,16 +21046,14 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "got": "^9.6.0", "registry-auth-token": "^4.0.0", @@ -22889,21 +21066,18 @@ }, "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==", + "license": "ISC", "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==" + "license": "(MIT AND Zlib)" }, "node_modules/param-case": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "license": "MIT", "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" @@ -22911,8 +21085,7 @@ }, "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==", + "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, @@ -22922,8 +21095,7 @@ }, "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==", + "license": "ISC", "dependencies": { "asn1.js": "^5.2.0", "browserify-aes": "^1.0.0", @@ -22934,8 +21106,7 @@ }, "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==", + "license": "MIT", "dependencies": { "character-entities": "^1.0.0", "character-entities-legacy": "^1.0.0", @@ -22951,8 +21122,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -22968,13 +21138,11 @@ }, "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==" + "license": "ISC" }, "node_modules/parse5": { "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "license": "MIT", "dependencies": { "entities": "^4.4.0" }, @@ -22984,8 +21152,7 @@ }, "node_modules/parse5-htmlparser2-tree-adapter": { "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==", + "license": "MIT", "dependencies": { "domhandler": "^5.0.2", "parse5": "^7.0.0" @@ -22996,8 +21163,7 @@ }, "node_modules/parse5-htmlparser2-tree-adapter/node_modules/domhandler": { "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.3.0" }, @@ -23010,8 +21176,7 @@ }, "node_modules/parse5/node_modules/entities": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", - "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", + "license": "BSD-2-Clause", "engines": { "node": ">=0.12" }, @@ -23021,16 +21186,14 @@ }, "node_modules/parseurl": { "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" @@ -23038,16 +21201,14 @@ }, "node_modules/pascalcase": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/path": { "version": "0.12.7", - "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", + "license": "MIT", "dependencies": { "process": "^0.11.1", "util": "^0.10.3" @@ -23055,47 +21216,40 @@ }, "node_modules/path-browserify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + "license": "MIT" }, "node_modules/path-dirname": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==" + "license": "MIT" }, "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==", + "license": "MIT", "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=", + "license": "MIT", "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=" + "license": "(WTFPL OR MIT)" }, "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==", + "license": "MIT", "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==" + "license": "MIT" }, "node_modules/path-scurry": { "version": "1.11.1", @@ -23119,37 +21273,32 @@ }, "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==", + "license": "MIT", "dependencies": { "isarray": "0.0.1" } }, "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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path/node_modules/inherits": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + "license": "ISC" }, "node_modules/path/node_modules/util": { "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "license": "MIT", "dependencies": { "inherits": "2.0.3" } }, "node_modules/pbkdf2": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "license": "MIT", "dependencies": { "create-hash": "^1.1.2", "create-hmac": "^1.1.4", @@ -23163,13 +21312,11 @@ }, "node_modules/pend": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + "license": "MIT" }, "node_modules/performance-now": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + "license": "MIT" }, "node_modules/picocolors": { "version": "1.1.1", @@ -23178,8 +21325,7 @@ }, "node_modules/picomatch": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", "engines": { "node": ">=8.6" }, @@ -23189,9 +21335,8 @@ }, "node_modules/pidtree": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", "dev": true, + "license": "MIT", "bin": { "pidtree": "bin/pidtree.js" }, @@ -23201,24 +21346,21 @@ }, "node_modules/pify": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/pinkie": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "license": "MIT", "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": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "license": "MIT", "dependencies": { "pinkie": "^2.0.0" }, @@ -23228,16 +21370,14 @@ }, "node_modules/pirates": { "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "find-up": "^4.0.0" }, @@ -23247,8 +21387,7 @@ }, "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==", + "license": "MIT", "dependencies": { "find-up": "^3.0.0" }, @@ -23258,8 +21397,7 @@ }, "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==", + "license": "MIT", "dependencies": { "locate-path": "^3.0.0" }, @@ -23269,8 +21407,7 @@ }, "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==", + "license": "MIT", "dependencies": { "p-locate": "^3.0.0", "path-exists": "^3.0.0" @@ -23281,8 +21418,7 @@ }, "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==", + "license": "MIT", "dependencies": { "p-limit": "^2.0.0" }, @@ -23292,17 +21428,15 @@ }, "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": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/playwright": { "version": "1.49.0", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.49.0.tgz", - "integrity": "sha512-eKpmys0UFDnfNb3vfsf8Vx2LEOtflgRebl0Im2eQQnYMA4Aqd+Zw8bEOB+7ZKvN76901mRnqdsiOGKxzVTbi7A==", "dev": true, + "license": "Apache-2.0", "dependencies": { "playwright-core": "1.49.0" }, @@ -23318,9 +21452,8 @@ }, "node_modules/playwright/node_modules/playwright-core": { "version": "1.49.0", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.49.0.tgz", - "integrity": "sha512-R+3KKTQF3npy5GTiKH/T+kdhoJfJojjHESR1YEWhYuEKRVfVaxH3+4+GvXE5xyCngCxhxnykk0Vlah9v8fs3jA==", "dev": true, + "license": "Apache-2.0", "bin": { "playwright-core": "cli.js" }, @@ -23330,16 +21463,14 @@ }, "node_modules/pluralize": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/portfinder": { "version": "1.0.32", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", - "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", + "license": "MIT", "dependencies": { "async": "^2.6.4", "debug": "^3.2.7", @@ -23351,16 +21482,14 @@ }, "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==", + "license": "MIT", "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": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -23383,6 +21512,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { "nanoid": "^3.3.7", "picocolors": "^1.1.1", @@ -23394,8 +21524,7 @@ }, "node_modules/postcss-calc": { "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.9", "postcss-value-parser": "^4.2.0" @@ -23406,8 +21535,7 @@ }, "node_modules/postcss-colormin": { "version": "5.3.1", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", - "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", @@ -23423,8 +21551,7 @@ }, "node_modules/postcss-convert-values": { "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", - "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" @@ -23438,8 +21565,7 @@ }, "node_modules/postcss-discard-comments": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, @@ -23449,8 +21575,7 @@ }, "node_modules/postcss-discard-duplicates": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, @@ -23460,8 +21585,7 @@ }, "node_modules/postcss-discard-empty": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, @@ -23471,8 +21595,7 @@ }, "node_modules/postcss-discard-overridden": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, @@ -23482,8 +21605,7 @@ }, "node_modules/postcss-discard-unused": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-5.1.0.tgz", - "integrity": "sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==", + "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.5" }, @@ -23496,8 +21618,7 @@ }, "node_modules/postcss-loader": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.0.1.tgz", - "integrity": "sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==", + "license": "MIT", "dependencies": { "cosmiconfig": "^7.0.0", "klona": "^2.0.5", @@ -23517,8 +21638,7 @@ }, "node_modules/postcss-merge-idents": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-5.1.1.tgz", - "integrity": "sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==", + "license": "MIT", "dependencies": { "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" @@ -23532,8 +21652,7 @@ }, "node_modules/postcss-merge-longhand": { "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==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", "stylehacks": "^5.1.1" @@ -23547,8 +21666,7 @@ }, "node_modules/postcss-merge-rules": { "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", - "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", @@ -23564,8 +21682,7 @@ }, "node_modules/postcss-minify-font-values": { "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==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -23578,8 +21695,7 @@ }, "node_modules/postcss-minify-gradients": { "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==", + "license": "MIT", "dependencies": { "colord": "^2.9.1", "cssnano-utils": "^3.1.0", @@ -23594,8 +21710,7 @@ }, "node_modules/postcss-minify-params": { "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", - "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "cssnano-utils": "^3.1.0", @@ -23610,8 +21725,7 @@ }, "node_modules/postcss-minify-selectors": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.5" }, @@ -23624,8 +21738,7 @@ }, "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==", + "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" }, @@ -23635,8 +21748,7 @@ }, "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==", + "license": "MIT", "dependencies": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^6.0.2", @@ -23651,8 +21763,7 @@ }, "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==", + "license": "ISC", "dependencies": { "postcss-selector-parser": "^6.0.4" }, @@ -23665,8 +21776,7 @@ }, "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==", + "license": "ISC", "dependencies": { "icss-utils": "^5.0.0" }, @@ -23679,8 +21789,7 @@ }, "node_modules/postcss-normalize-charset": { "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==", + "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, @@ -23690,8 +21799,7 @@ }, "node_modules/postcss-normalize-display-values": { "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==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -23704,8 +21812,7 @@ }, "node_modules/postcss-normalize-positions": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -23718,8 +21825,7 @@ }, "node_modules/postcss-normalize-repeat-style": { "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==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -23732,8 +21838,7 @@ }, "node_modules/postcss-normalize-string": { "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==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -23746,8 +21851,7 @@ }, "node_modules/postcss-normalize-timing-functions": { "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==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -23760,8 +21864,7 @@ }, "node_modules/postcss-normalize-unicode": { "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==", + "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" @@ -23775,8 +21878,7 @@ }, "node_modules/postcss-normalize-url": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "license": "MIT", "dependencies": { "normalize-url": "^6.0.1", "postcss-value-parser": "^4.2.0" @@ -23790,8 +21892,7 @@ }, "node_modules/postcss-normalize-whitespace": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -23804,8 +21905,7 @@ }, "node_modules/postcss-ordered-values": { "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "license": "MIT", "dependencies": { "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" @@ -23819,8 +21919,7 @@ }, "node_modules/postcss-reduce-idents": { "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==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -23833,8 +21932,7 @@ }, "node_modules/postcss-reduce-initial": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", - "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "caniuse-api": "^3.0.0" @@ -23848,8 +21946,7 @@ }, "node_modules/postcss-reduce-transforms": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -23862,8 +21959,7 @@ }, "node_modules/postcss-selector-parser": { "version": "6.0.10", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -23874,8 +21970,7 @@ }, "node_modules/postcss-sort-media-queries": { "version": "4.4.1", - "resolved": "https://registry.npmjs.org/postcss-sort-media-queries/-/postcss-sort-media-queries-4.4.1.tgz", - "integrity": "sha512-QDESFzDDGKgpiIh4GYXsSy6sek2yAwQx1JASl5AxBtU1Lq2JfKBljIPNdil989NcSKRQX1ToiaKphImtBuhXWw==", + "license": "MIT", "dependencies": { "sort-css-media-queries": "2.1.0" }, @@ -23888,8 +21983,7 @@ }, "node_modules/postcss-svgo": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "license": "MIT", "dependencies": { "postcss-value-parser": "^4.2.0", "svgo": "^2.7.0" @@ -23903,8 +21997,7 @@ }, "node_modules/postcss-unique-selectors": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.0.5" }, @@ -23917,13 +22010,11 @@ }, "node_modules/postcss-value-parser": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + "license": "MIT" }, "node_modules/postcss-zindex": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-5.1.0.tgz", - "integrity": "sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==", + "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, @@ -23933,8 +22024,7 @@ }, "node_modules/postman-url-encoder": { "version": "3.0.5", - "resolved": "https://registry.npmjs.org/postman-url-encoder/-/postman-url-encoder-3.0.5.tgz", - "integrity": "sha512-jOrdVvzUXBC7C+9gkIkpDJ3HIxOHTIqjpQ4C1EMt1ZGeMvSEpbFCKq23DEfgsj46vMnDgyQf+1ZLp2Wm+bKSsA==", + "license": "Apache-2.0", "dependencies": { "punycode": "^2.1.1" }, @@ -23953,17 +22043,15 @@ }, "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=", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/prettier": { "version": "3.3.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", - "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", "dev": true, + "license": "MIT", "bin": { "prettier": "bin/prettier.cjs" }, @@ -23976,8 +22064,7 @@ }, "node_modules/pretty-bytes": { "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "license": "MIT", "engines": { "node": ">=6" }, @@ -23987,8 +22074,7 @@ }, "node_modules/pretty-error": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", - "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "license": "MIT", "dependencies": { "lodash": "^4.17.20", "renderkid": "^3.0.0" @@ -23999,6 +22085,7 @@ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, + "license": "MIT", "dependencies": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", @@ -24010,9 +22097,8 @@ }, "node_modules/pretty-format/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, + "license": "MIT", "engines": { "node": ">=10" }, @@ -24022,59 +22108,51 @@ }, "node_modules/pretty-format/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 + "dev": true, + "license": "MIT" }, "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==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/prism-react-renderer": { "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==", + "license": "MIT", "peerDependencies": { "react": ">=0.14.9" } }, "node_modules/prismjs": { "version": "1.29.0", - "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz", - "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/process": { "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "license": "MIT", "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==" + "license": "MIT" }, "node_modules/promise": { "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "license": "MIT", "dependencies": { "asap": "~2.0.3" } }, "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==", + "license": "MIT", "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" @@ -24085,8 +22163,7 @@ }, "node_modules/prop-types": { "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", @@ -24095,8 +22172,7 @@ }, "node_modules/prop-types-exact": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.0.tgz", - "integrity": "sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==", + "license": "MIT", "dependencies": { "has": "^1.0.3", "object.assign": "^4.1.0", @@ -24105,8 +22181,7 @@ }, "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==", + "license": "MIT", "dependencies": { "xtend": "^4.0.0" }, @@ -24117,13 +22192,11 @@ }, "node_modules/proto-list": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==" + "license": "ISC" }, "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==", + "license": "MIT", "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" @@ -24134,26 +22207,22 @@ }, "node_modules/proxy-addr/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==", + "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/pseudomap": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" + "license": "ISC" }, "node_modules/psl": { "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + "license": "MIT" }, "node_modules/public-encrypt": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "license": "MIT", "dependencies": { "bn.js": "^4.1.0", "browserify-rsa": "^4.0.0", @@ -24165,13 +22234,11 @@ }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -24179,16 +22246,14 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=6" } }, "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==", + "license": "MIT", "dependencies": { "escape-goat": "^2.0.0" }, @@ -24198,8 +22263,7 @@ }, "node_modules/pure-color": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/pure-color/-/pure-color-1.3.0.tgz", - "integrity": "sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==" + "license": "MIT" }, "node_modules/pure-rand": { "version": "6.1.0", @@ -24215,12 +22279,12 @@ "type": "opencollective", "url": "https://opencollective.com/fast-check" } - ] + ], + "license": "MIT" }, "node_modules/pushfeedback": { "version": "0.1.39", - "resolved": "https://registry.npmjs.org/pushfeedback/-/pushfeedback-0.1.39.tgz", - "integrity": "sha512-/sZR2Sqdi1MgxVxVFup3c8GMW1vKVDykCNYIzJH4ic+whTG4a1VFR/uhsx6iHDP3CNxVO/mcxH+pMRSv9voypQ==", + "license": "MIT", "dependencies": { "@stencil/core": "^2.13.0", "html2canvas": "^1.4.1" @@ -24228,16 +22292,14 @@ }, "node_modules/pushfeedback-react": { "version": "0.1.30", - "resolved": "https://registry.npmjs.org/pushfeedback-react/-/pushfeedback-react-0.1.30.tgz", - "integrity": "sha512-rHLfkmHSL8NLHdZ9xPlAoes4cor8LGzsCwYBvlajlIFggsajdO+F5GdUAi+cXvXJaBM+Us4EmZlD9naBljHMZA==", + "license": "ISC", "dependencies": { "pushfeedback": "^0.1.39" } }, "node_modules/q": { "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "license": "MIT", "engines": { "node": ">=0.6.0", "teleport": ">=0.2.0" @@ -24245,8 +22307,7 @@ }, "node_modules/qs": { "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.4" }, @@ -24259,8 +22320,7 @@ }, "node_modules/query-string": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", - "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "license": "MIT", "dependencies": { "decode-uri-component": "^0.2.0", "object-assign": "^4.1.0", @@ -24272,24 +22332,19 @@ }, "node_modules/querystring-es3": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", "engines": { "node": ">=0.4.x" } }, "node_modules/queue": { "version": "6.0.2", - "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", - "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", + "license": "MIT", "dependencies": { "inherits": "~2.0.3" } }, "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", @@ -24303,25 +22358,23 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/raf": { "version": "3.4.1", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", - "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "license": "MIT", "dependencies": { "performance-now": "^2.1.0" } }, "node_modules/railroad-diagrams": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", - "integrity": "sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==" + "license": "CC0-1.0" }, "node_modules/randexp": { "version": "0.4.6", - "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", - "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", + "license": "MIT", "dependencies": { "discontinuous-range": "1.0.0", "ret": "~0.1.10" @@ -24332,8 +22385,7 @@ }, "node_modules/randomatic": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", - "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", + "license": "MIT", "dependencies": { "is-number": "^4.0.0", "kind-of": "^6.0.0", @@ -24345,24 +22397,21 @@ }, "node_modules/randomatic/node_modules/is-number": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/randombytes": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "randombytes": "^2.0.5", "safe-buffer": "^5.1.0" @@ -24370,16 +22419,14 @@ }, "node_modules/range-parser": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "license": "MIT", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", @@ -24392,16 +22439,14 @@ }, "node_modules/raw-body/node_modules/bytes": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", "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==", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { "deep-extend": "^0.6.0", "ini": "~1.3.0", @@ -24414,8 +22459,7 @@ }, "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==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1" @@ -24426,8 +22470,7 @@ }, "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": "sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==", + "license": "MIT", "dependencies": { "base16": "^1.0.0", "lodash.curry": "^4.0.1", @@ -24437,8 +22480,7 @@ }, "node_modules/react-dev-utils": { "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==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.16.0", "address": "^1.1.2", @@ -24471,8 +22513,7 @@ }, "node_modules/react-dev-utils/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -24485,8 +22526,7 @@ }, "node_modules/react-dev-utils/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -24500,8 +22540,7 @@ }, "node_modules/react-dev-utils/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -24511,13 +22550,11 @@ }, "node_modules/react-dev-utils/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==" + "license": "MIT" }, "node_modules/react-dev-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==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -24527,8 +22564,7 @@ }, "node_modules/react-dev-utils/node_modules/find-up": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -24542,24 +22578,21 @@ }, "node_modules/react-dev-utils/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/react-dev-utils/node_modules/loader-utils": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz", - "integrity": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==", + "license": "MIT", "engines": { "node": ">= 12.13.0" } }, "node_modules/react-dev-utils/node_modules/locate-path": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, @@ -24572,8 +22605,7 @@ }, "node_modules/react-dev-utils/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==", + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -24586,8 +22618,7 @@ }, "node_modules/react-dev-utils/node_modules/p-locate": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, @@ -24600,8 +22631,7 @@ }, "node_modules/react-dev-utils/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -24611,8 +22641,7 @@ }, "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==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1", @@ -24624,18 +22653,15 @@ }, "node_modules/react-error-overlay": { "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==" + "license": "MIT" }, "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==" + "license": "MIT" }, "node_modules/react-helmet-async": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/react-helmet-async/-/react-helmet-async-1.3.0.tgz", - "integrity": "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==", + "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.12.5", "invariant": "^2.2.4", @@ -24650,8 +22676,7 @@ }, "node_modules/react-hook-form": { "version": "7.49.3", - "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.49.3.tgz", - "integrity": "sha512-foD6r3juidAT1cOZzpmD/gOKt7fRsDhXXZ0y28+Al1CHgX+AY1qIN9VSIIItXRq1dN68QrRwl1ORFlwjBaAqeQ==", + "license": "MIT", "engines": { "node": ">=18", "pnpm": "8" @@ -24666,13 +22691,11 @@ }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "flux": "^4.0.1", "react-base16-styling": "^0.6.0", @@ -24686,13 +22709,11 @@ }, "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==" + "license": "MIT" }, "node_modules/react-live": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/react-live/-/react-live-4.0.1.tgz", - "integrity": "sha512-ndRYxgJYdcfVibnM0zublvEdwArbIwplhLxpOf3dsRtVh8BId0nOnblticIwhl24D5RcmIHf8siCErtgGN4zLw==", + "license": "MIT", "dependencies": { "prism-react-renderer": "^1.3.1", "sucrase": "^3.31.0", @@ -24706,17 +22727,18 @@ "node_modules/react-loadable": { "name": "@docusaurus/react-loadable", "version": "5.5.2", - "resolved": "https://registry.npmjs.org/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz", - "integrity": "sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==", + "license": "MIT", "dependencies": { "@types/react": "*", "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": "*" } }, "node_modules/react-loadable-ssr-addon-v5-slorber": { "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==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.10.3" }, @@ -24730,13 +22752,11 @@ }, "node_modules/react-magic-dropzone": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/react-magic-dropzone/-/react-magic-dropzone-1.0.1.tgz", - "integrity": "sha512-0BIROPARmXHpk4AS3eWBOsewxoM5ndk2psYP/JmbCq8tz3uR2LIV1XiroZ9PKrmDRMctpW+TvsBCtWasuS8vFA==" + "license": "MIT" }, "node_modules/react-markdown": { "version": "8.0.7", - "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-8.0.7.tgz", - "integrity": "sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "@types/prop-types": "^15.0.0", @@ -24765,8 +22785,7 @@ }, "node_modules/react-markdown/node_modules/bail": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -24774,8 +22793,7 @@ }, "node_modules/react-markdown/node_modules/comma-separated-tokens": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -24783,8 +22801,7 @@ }, "node_modules/react-markdown/node_modules/is-plain-obj": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -24794,8 +22811,7 @@ }, "node_modules/react-markdown/node_modules/property-information": { "version": "6.4.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.4.0.tgz", - "integrity": "sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -24803,13 +22819,11 @@ }, "node_modules/react-markdown/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==" + "license": "MIT" }, "node_modules/react-markdown/node_modules/remark-parse": { "version": "10.0.2", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.2.tgz", - "integrity": "sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==", + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "mdast-util-from-markdown": "^1.0.0", @@ -24822,8 +22836,7 @@ }, "node_modules/react-markdown/node_modules/space-separated-tokens": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -24831,16 +22844,14 @@ }, "node_modules/react-markdown/node_modules/style-to-object": { "version": "0.4.4", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.4.4.tgz", - "integrity": "sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==", + "license": "MIT", "dependencies": { "inline-style-parser": "0.1.1" } }, "node_modules/react-markdown/node_modules/trough": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", - "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -24848,8 +22859,7 @@ }, "node_modules/react-markdown/node_modules/unified": { "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "bail": "^2.0.0", @@ -24866,8 +22876,7 @@ }, "node_modules/react-markdown/node_modules/unist-util-is": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -24878,8 +22887,7 @@ }, "node_modules/react-markdown/node_modules/unist-util-stringify-position": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -24890,8 +22898,7 @@ }, "node_modules/react-markdown/node_modules/unist-util-visit": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0", @@ -24904,8 +22911,7 @@ }, "node_modules/react-markdown/node_modules/unist-util-visit-parents": { "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0" @@ -24917,8 +22923,7 @@ }, "node_modules/react-markdown/node_modules/vfile": { "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", @@ -24932,8 +22937,7 @@ }, "node_modules/react-markdown/node_modules/vfile-message": { "version": "3.1.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^3.0.0" @@ -24945,8 +22949,7 @@ }, "node_modules/react-modal": { "version": "3.16.1", - "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz", - "integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==", + "license": "MIT", "dependencies": { "exenv": "^1.2.0", "prop-types": "^15.7.2", @@ -24978,8 +22981,7 @@ }, "node_modules/react-redux": { "version": "7.2.9", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", - "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.15.4", "@types/react-redux": "^7.1.20", @@ -25002,13 +23004,11 @@ }, "node_modules/react-redux/node_modules/react-is": { "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + "license": "MIT" }, "node_modules/react-router": { "version": "5.3.3", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.3.tgz", - "integrity": "sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.13", "history": "^4.9.0", @@ -25027,8 +23027,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.1.2" }, @@ -25039,8 +23038,7 @@ }, "node_modules/react-router-dom": { "version": "5.3.3", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.3.tgz", - "integrity": "sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.13", "history": "^4.9.0", @@ -25056,8 +23054,7 @@ }, "node_modules/react-textarea-autosize": { "version": "8.5.3", - "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.3.tgz", - "integrity": "sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.20.13", "use-composed-ref": "^1.3.0", @@ -25072,8 +23069,7 @@ }, "node_modules/read-pkg": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "license": "MIT", "dependencies": { "load-json-file": "^1.0.0", "normalize-package-data": "^2.3.2", @@ -25085,8 +23081,7 @@ }, "node_modules/read-pkg-up": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "license": "MIT", "dependencies": { "find-up": "^1.0.0", "read-pkg": "^1.0.0" @@ -25097,8 +23092,7 @@ }, "node_modules/read-pkg-up/node_modules/find-up": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "license": "MIT", "dependencies": { "path-exists": "^2.0.0", "pinkie-promise": "^2.0.0" @@ -25109,8 +23103,7 @@ }, "node_modules/read-pkg-up/node_modules/path-exists": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "license": "MIT", "dependencies": { "pinkie-promise": "^2.0.0" }, @@ -25120,8 +23113,7 @@ }, "node_modules/read-pkg/node_modules/path-type": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "pify": "^2.0.0", @@ -25133,16 +23125,14 @@ }, "node_modules/read-pkg/node_modules/pify": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/readable-stream": { "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -25154,8 +23144,7 @@ }, "node_modules/readdirp": { "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "license": "MIT", "dependencies": { "picomatch": "^2.2.1" }, @@ -25165,13 +23154,10 @@ }, "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==" + "license": "MIT" }, "node_modules/rechoir": { "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", "dependencies": { "resolve": "^1.1.6" }, @@ -25181,8 +23167,7 @@ }, "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==", + "license": "MIT", "dependencies": { "minimatch": "3.0.4" }, @@ -25192,8 +23177,7 @@ }, "node_modules/redent": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==", + "license": "MIT", "dependencies": { "indent-string": "^2.1.0", "strip-indent": "^1.0.1" @@ -25204,8 +23188,7 @@ }, "node_modules/redent/node_modules/indent-string": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==", + "license": "MIT", "dependencies": { "repeating": "^2.0.0" }, @@ -25215,42 +23198,36 @@ }, "node_modules/redux": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.9.2" } }, "node_modules/redux-thunk": { "version": "2.4.2", - "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", - "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", + "license": "MIT", "peerDependencies": { "redux": "^4" } }, "node_modules/reflect.ownkeys": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz", - "integrity": "sha512-qOLsBKHCpSOFKK1NUOCGC5VyeufB6lEsFe92AL2bhIJsacZS1qdoOZSbPk3MYKuT2cFlRDnulKXuuElIrMjGUg==" + "license": "MIT" }, "node_modules/reftools": { "version": "1.1.9", - "resolved": "https://registry.npmjs.org/reftools/-/reftools-1.1.9.tgz", - "integrity": "sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w==", + "license": "BSD-3-Clause", "funding": { "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, "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==" + "license": "MIT" }, "node_modules/regenerate-unicode-properties": { "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "license": "MIT", "dependencies": { "regenerate": "^1.4.2" }, @@ -25260,21 +23237,18 @@ }, "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==" + "license": "MIT" }, "node_modules/regenerator-transform": { "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "extend-shallow": "^3.0.2", "safe-regex": "^1.1.0" @@ -25285,8 +23259,7 @@ }, "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": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -25297,8 +23270,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" }, @@ -25308,8 +23280,7 @@ }, "node_modules/regexp.prototype.flags": { "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", @@ -25324,8 +23295,7 @@ }, "node_modules/regexpu-core": { "version": "5.2.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.2.tgz", - "integrity": "sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==", + "license": "MIT", "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.1.0", @@ -25340,8 +23310,7 @@ }, "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==", + "license": "MIT", "dependencies": { "rc": "^1.2.8" }, @@ -25351,8 +23320,7 @@ }, "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==", + "license": "MIT", "dependencies": { "rc": "^1.2.8" }, @@ -25362,13 +23330,11 @@ }, "node_modules/regjsgen": { "version": "0.7.1", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz", - "integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==" + "license": "MIT" }, "node_modules/regjsparser": { "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "license": "BSD-2-Clause", "dependencies": { "jsesc": "~0.5.0" }, @@ -25378,16 +23344,13 @@ }, "node_modules/regjsparser/node_modules/jsesc": { "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", "bin": { "jsesc": "bin/jsesc" } }, "node_modules/rehype-raw": { "version": "6.1.1", - "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-6.1.1.tgz", - "integrity": "sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "hast-util-raw": "^7.2.0", @@ -25400,13 +23363,11 @@ }, "node_modules/rehype-raw/node_modules/@types/parse5": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz", - "integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==" + "license": "MIT" }, "node_modules/rehype-raw/node_modules/bail": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25414,8 +23375,7 @@ }, "node_modules/rehype-raw/node_modules/comma-separated-tokens": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25423,8 +23383,7 @@ }, "node_modules/rehype-raw/node_modules/hast-util-from-parse5": { "version": "7.1.2", - "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.2.tgz", - "integrity": "sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "@types/unist": "^2.0.0", @@ -25441,8 +23400,7 @@ }, "node_modules/rehype-raw/node_modules/hast-util-parse-selector": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz", - "integrity": "sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0" }, @@ -25453,8 +23411,7 @@ }, "node_modules/rehype-raw/node_modules/hast-util-raw": { "version": "7.2.3", - "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-7.2.3.tgz", - "integrity": "sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "@types/parse5": "^6.0.0", @@ -25475,8 +23432,7 @@ }, "node_modules/rehype-raw/node_modules/hast-util-to-parse5": { "version": "7.1.0", - "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-7.1.0.tgz", - "integrity": "sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "comma-separated-tokens": "^2.0.0", @@ -25492,8 +23448,7 @@ }, "node_modules/rehype-raw/node_modules/hastscript": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz", - "integrity": "sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "comma-separated-tokens": "^2.0.0", @@ -25508,8 +23463,7 @@ }, "node_modules/rehype-raw/node_modules/html-void-elements": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-2.0.1.tgz", - "integrity": "sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25517,8 +23471,7 @@ }, "node_modules/rehype-raw/node_modules/is-plain-obj": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -25528,13 +23481,11 @@ }, "node_modules/rehype-raw/node_modules/parse5": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + "license": "MIT" }, "node_modules/rehype-raw/node_modules/property-information": { "version": "6.4.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.4.0.tgz", - "integrity": "sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25542,8 +23493,7 @@ }, "node_modules/rehype-raw/node_modules/space-separated-tokens": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25551,8 +23501,7 @@ }, "node_modules/rehype-raw/node_modules/trough": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", - "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25560,8 +23509,7 @@ }, "node_modules/rehype-raw/node_modules/unified": { "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "bail": "^2.0.0", @@ -25578,8 +23526,7 @@ }, "node_modules/rehype-raw/node_modules/unist-util-is": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -25590,8 +23537,7 @@ }, "node_modules/rehype-raw/node_modules/unist-util-position": { "version": "4.0.4", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", - "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -25602,8 +23548,7 @@ }, "node_modules/rehype-raw/node_modules/unist-util-stringify-position": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -25614,8 +23559,7 @@ }, "node_modules/rehype-raw/node_modules/unist-util-visit": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0", @@ -25628,8 +23572,7 @@ }, "node_modules/rehype-raw/node_modules/unist-util-visit-parents": { "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0" @@ -25641,8 +23584,7 @@ }, "node_modules/rehype-raw/node_modules/vfile": { "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", @@ -25656,8 +23598,7 @@ }, "node_modules/rehype-raw/node_modules/vfile-location": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.1.0.tgz", - "integrity": "sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "vfile": "^5.0.0" @@ -25669,8 +23610,7 @@ }, "node_modules/rehype-raw/node_modules/vfile-message": { "version": "3.1.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^3.0.0" @@ -25682,8 +23622,7 @@ }, "node_modules/rehype-raw/node_modules/web-namespaces": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz", - "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25691,8 +23630,7 @@ }, "node_modules/rehype-raw/node_modules/zwitch": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25700,16 +23638,14 @@ }, "node_modules/relateurl": { "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/remark-emoji": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/remark-emoji/-/remark-emoji-2.2.0.tgz", - "integrity": "sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==", + "license": "MIT", "dependencies": { "emoticon": "^3.2.0", "node-emoji": "^1.10.0", @@ -25718,8 +23654,7 @@ }, "node_modules/remark-emoji/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", @@ -25732,8 +23667,7 @@ }, "node_modules/remark-emoji/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" @@ -25745,8 +23679,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -25754,8 +23687,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/core": "7.12.9", "@babel/helper-plugin-utils": "7.10.4", @@ -25773,8 +23705,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/generator": "^7.12.5", @@ -25803,13 +23734,11 @@ }, "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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4", "@babel/plugin-syntax-object-rest-spread": "^7.8.0", @@ -25821,8 +23750,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -25832,16 +23760,14 @@ }, "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==", + "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/remark-mdx/node_modules/unified": { "version": "9.2.0", - "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz", - "integrity": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==", + "license": "MIT", "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", @@ -25857,8 +23783,7 @@ }, "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==", + "license": "MIT", "dependencies": { "ccount": "^1.0.0", "collapse-white-space": "^1.0.2", @@ -25884,8 +23809,7 @@ }, "node_modules/remark-rehype": { "version": "10.1.0", - "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz", - "integrity": "sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "@types/mdast": "^3.0.0", @@ -25899,8 +23823,7 @@ }, "node_modules/remark-rehype/node_modules/bail": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25908,8 +23831,7 @@ }, "node_modules/remark-rehype/node_modules/is-plain-obj": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "license": "MIT", "engines": { "node": ">=12" }, @@ -25919,8 +23841,7 @@ }, "node_modules/remark-rehype/node_modules/mdast-util-definitions": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", - "integrity": "sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==", + "license": "MIT", "dependencies": { "@types/mdast": "^3.0.0", "@types/unist": "^2.0.0", @@ -25933,8 +23854,7 @@ }, "node_modules/remark-rehype/node_modules/mdast-util-to-hast": { "version": "12.3.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz", - "integrity": "sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==", + "license": "MIT", "dependencies": { "@types/hast": "^2.0.0", "@types/mdast": "^3.0.0", @@ -25952,8 +23872,7 @@ }, "node_modules/remark-rehype/node_modules/trough": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz", - "integrity": "sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -25961,8 +23880,7 @@ }, "node_modules/remark-rehype/node_modules/unified": { "version": "10.1.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", - "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "bail": "^2.0.0", @@ -25979,8 +23897,7 @@ }, "node_modules/remark-rehype/node_modules/unist-util-generated": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", - "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -25988,8 +23905,7 @@ }, "node_modules/remark-rehype/node_modules/unist-util-is": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", - "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -26000,8 +23916,7 @@ }, "node_modules/remark-rehype/node_modules/unist-util-position": { "version": "4.0.4", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", - "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -26012,8 +23927,7 @@ }, "node_modules/remark-rehype/node_modules/unist-util-stringify-position": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", - "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0" }, @@ -26024,8 +23938,7 @@ }, "node_modules/remark-rehype/node_modules/unist-util-visit": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", - "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0", @@ -26038,8 +23951,7 @@ }, "node_modules/remark-rehype/node_modules/unist-util-visit-parents": { "version": "5.1.3", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", - "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0" @@ -26051,8 +23963,7 @@ }, "node_modules/remark-rehype/node_modules/vfile": { "version": "5.3.7", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", - "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", @@ -26066,8 +23977,7 @@ }, "node_modules/remark-rehype/node_modules/vfile-message": { "version": "3.1.4", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", - "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^3.0.0" @@ -26079,8 +23989,7 @@ }, "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==", + "license": "MIT", "dependencies": { "mdast-squeeze-paragraphs": "^4.0.0" }, @@ -26091,8 +24000,7 @@ }, "node_modules/remarkable": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-2.0.1.tgz", - "integrity": "sha512-YJyMcOH5lrR+kZdmB0aJJ4+93bEojRZ1HGDn9Eagu6ibg7aVZhc3OWbbShRid+Q5eAfsEqWxpe+g5W5nYNfNiA==", + "license": "MIT", "dependencies": { "argparse": "^1.0.10", "autolinker": "^3.11.0" @@ -26106,16 +24014,14 @@ }, "node_modules/remarkable/node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/renderkid": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", - "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "license": "MIT", "dependencies": { "css-select": "^4.1.3", "dom-converter": "^0.2.0", @@ -26126,24 +24032,21 @@ }, "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==", + "license": "MIT", "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": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/repeating": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==", + "license": "MIT", "dependencies": { "is-finite": "^1.0.0" }, @@ -26153,8 +24056,7 @@ }, "node_modules/replace-ext": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "license": "MIT", "engines": { "node": ">= 0.10" } @@ -26195,8 +24097,6 @@ }, "node_modules/replace-in-file/node_modules/brace-expansion": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "license": "MIT", "dependencies": { @@ -26299,9 +24199,7 @@ }, "node_modules/request": { "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "license": "Apache-2.0", "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", @@ -26330,64 +24228,53 @@ }, "node_modules/request/node_modules/qs": { "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.6" } }, "node_modules/request/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.", + "license": "MIT", "bin": { "uuid": "bin/uuid" } }, "node_modules/require-directory": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/require-from-string": { "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==", + "license": "MIT", "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": "sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==", "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==" + "license": "ISC" }, "node_modules/requires-port": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + "license": "MIT" }, "node_modules/reselect": { "version": "4.1.8", - "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", - "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" + "license": "MIT" }, "node_modules/resolve": { "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "license": "MIT", "dependencies": { "is-core-module": "^2.9.0", "path-parse": "^1.0.7", @@ -26402,9 +24289,8 @@ }, "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, + "license": "MIT", "dependencies": { "resolve-from": "^5.0.0" }, @@ -26414,54 +24300,48 @@ }, "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, + "license": "MIT", "engines": { "node": ">=8" } }, "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==", + "license": "MIT", "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==" + "license": "MIT" }, "node_modules/resolve-url": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", - "deprecated": "https://github.com/lydell/resolve-url#deprecated" + "license": "MIT" }, "node_modules/resolve.exports": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz", "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/responselike": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "license": "MIT", "dependencies": { "lowercase-keys": "^1.0.0" } }, "node_modules/restore-cursor": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", - "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", "dev": true, + "license": "MIT", "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" @@ -26475,24 +24355,21 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=0.12" } }, "node_modules/retry": { "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "license": "MIT", "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==", + "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" @@ -26500,24 +24377,20 @@ }, "node_modules/rfdc": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/rgb-regex": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", - "integrity": "sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==" + "license": "MIT" }, "node_modules/rgba-regex": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", - "integrity": "sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==" + "license": "MIT" }, "node_modules/rimraf": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -26530,8 +24403,7 @@ }, "node_modules/ripemd160": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "license": "MIT", "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1" @@ -26575,8 +24447,7 @@ }, "node_modules/rst-selector-parser": { "version": "2.2.3", - "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", - "integrity": "sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==", + "license": "BSD-3-Clause", "dependencies": { "lodash.flattendeep": "^4.4.0", "nearley": "^2.7.10" @@ -26584,13 +24455,11 @@ }, "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==" + "license": "BSD-3-Clause" }, "node_modules/rtlcss": { "version": "3.5.0", - "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-3.5.0.tgz", - "integrity": "sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==", + "license": "MIT", "dependencies": { "find-up": "^5.0.0", "picocolors": "^1.0.0", @@ -26603,8 +24472,7 @@ }, "node_modules/rtlcss/node_modules/find-up": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -26618,8 +24486,7 @@ }, "node_modules/rtlcss/node_modules/locate-path": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, @@ -26632,8 +24499,7 @@ }, "node_modules/rtlcss/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==", + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -26646,8 +24512,7 @@ }, "node_modules/rtlcss/node_modules/p-locate": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, @@ -26660,8 +24525,7 @@ }, "node_modules/rtlcss/node_modules/strip-json-comments": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "license": "MIT", "engines": { "node": ">=8" }, @@ -26671,8 +24535,6 @@ }, "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", @@ -26687,27 +24549,25 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/rw": { "version": "1.3.3", - "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", - "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" + "license": "BSD-3-Clause" }, "node_modules/rxjs": { "version": "7.6.0", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.6.0.tgz", - "integrity": "sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/sade": { "version": "1.8.1", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", - "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", + "license": "MIT", "dependencies": { "mri": "^1.1.0" }, @@ -26717,26 +24577,21 @@ }, "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==" + "license": "MIT" }, "node_modules/safe-json-parse": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz", - "integrity": "sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A==" + "version": "1.0.1" }, "node_modules/safe-regex": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "license": "MIT", "dependencies": { "ret": "~0.1.10" } }, "node_modules/safe-regex-test": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", @@ -26748,13 +24603,11 @@ }, "node_modules/safer-buffer": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "license": "MIT" }, "node_modules/sass": { "version": "1.70.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.70.0.tgz", - "integrity": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==", + "license": "MIT", "dependencies": { "chokidar": ">=3.0.0 <4.0.0", "immutable": "^4.0.0", @@ -26769,8 +24622,7 @@ }, "node_modules/sass-loader": { "version": "13.3.3", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.3.3.tgz", - "integrity": "sha512-mt5YN2F1MOZr3d/wBRcZxeFgwgkH44wVc2zohO2YF6JiOMkiXe4BYRZpSu2sO1g71mo/j16txzUhsKZlqjVGzA==", + "license": "MIT", "dependencies": { "neo-async": "^2.6.2" }, @@ -26805,13 +24657,11 @@ }, "node_modules/sax": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + "license": "ISC" }, "node_modules/scheduler": { "version": "0.20.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", - "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1" @@ -26819,8 +24669,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -26836,8 +24685,7 @@ }, "node_modules/search-insights": { "version": "2.8.0", - "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.8.0.tgz", - "integrity": "sha512-VzI4PMktJbydkbrF3/n40vFfRxdwg+o3CkQt0F3mHRSXVuv0PsVxQvB6mQQq/e9MCXAemcmp/GP9CNHpayFoCw==", + "license": "MIT", "peer": true, "engines": { "node": ">=16.0.0" @@ -26845,8 +24693,7 @@ }, "node_modules/section-matter": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", - "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", + "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "kind-of": "^6.0.0" @@ -26857,8 +24704,7 @@ }, "node_modules/seek-bzip": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", - "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", + "license": "MIT", "dependencies": { "commander": "^2.8.1" }, @@ -26869,18 +24715,15 @@ }, "node_modules/seek-bzip/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==" + "license": "MIT" }, "node_modules/select-hose": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + "license": "MIT" }, "node_modules/selfsigned": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", - "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", + "license": "MIT", "dependencies": { "node-forge": "^1" }, @@ -26890,8 +24733,7 @@ }, "node_modules/semver": { "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" }, @@ -26904,8 +24746,7 @@ }, "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==", + "license": "MIT", "dependencies": { "semver": "^6.3.0" }, @@ -26915,24 +24756,21 @@ }, "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==", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/semver-regex": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", - "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/semver-truncate": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", - "integrity": "sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==", + "license": "MIT", "dependencies": { "semver": "^5.3.0" }, @@ -26942,16 +24780,14 @@ }, "node_modules/semver-truncate/node_modules/semver": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/send": { "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "license": "MIT", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -26973,42 +24809,36 @@ }, "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==", + "license": "MIT", "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "node_modules/send/node_modules/ms": { "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + "license": "MIT" }, "node_modules/send/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==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/serialize-javascript": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "license": "BSD-3-Clause", "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==", + "license": "MIT", "dependencies": { "bytes": "3.0.0", "content-disposition": "0.5.2", @@ -27022,16 +24852,14 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "mime-db": "~1.33.0" }, @@ -27041,13 +24869,11 @@ }, "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==" + "license": "MIT" }, "node_modules/serve-index": { "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "license": "MIT", "dependencies": { "accepts": "~1.3.4", "batch": "0.6.1", @@ -27063,24 +24889,21 @@ }, "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==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/serve-index/node_modules/depd": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "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": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "license": "MIT", "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", @@ -27093,31 +24916,26 @@ }, "node_modules/serve-index/node_modules/inherits": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + "license": "ISC" }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "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==" + "license": "ISC" }, "node_modules/serve-index/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==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/serve-static": { "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "license": "MIT", "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -27130,13 +24948,11 @@ }, "node_modules/set-blocking": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + "license": "ISC" }, "node_modules/set-getter": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.1.tgz", - "integrity": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==", + "license": "MIT", "dependencies": { "to-object-path": "^0.3.0" }, @@ -27146,8 +24962,7 @@ }, "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==", + "license": "MIT", "dependencies": { "extend-shallow": "^2.0.1", "is-extendable": "^0.1.1", @@ -27160,18 +24975,15 @@ }, "node_modules/setimmediate": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + "license": "MIT" }, "node_modules/setprototypeof": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + "license": "ISC" }, "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==", + "license": "(MIT AND BSD-3-Clause)", "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" @@ -27182,8 +24994,7 @@ }, "node_modules/shallow-clone": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "license": "MIT", "dependencies": { "kind-of": "^6.0.2" }, @@ -27193,13 +25004,11 @@ }, "node_modules/shallowequal": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -27209,21 +25018,18 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/shell-quote": { "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==" + "license": "MIT" }, "node_modules/shelljs": { "version": "0.8.5", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", - "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "license": "BSD-3-Clause", "dependencies": { "glob": "^7.0.0", "interpret": "^1.0.0", @@ -27238,8 +25044,7 @@ }, "node_modules/should": { "version": "13.2.3", - "resolved": "https://registry.npmjs.org/should/-/should-13.2.3.tgz", - "integrity": "sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ==", + "license": "MIT", "dependencies": { "should-equal": "^2.0.0", "should-format": "^3.0.3", @@ -27250,16 +25055,14 @@ }, "node_modules/should-equal": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/should-equal/-/should-equal-2.0.0.tgz", - "integrity": "sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==", + "license": "MIT", "dependencies": { "should-type": "^1.4.0" } }, "node_modules/should-format": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/should-format/-/should-format-3.0.3.tgz", - "integrity": "sha512-hZ58adtulAk0gKtua7QxevgUaXTTXxIi8t41L3zo9AHvjXO1/7sdLECuHeIN2SRtYXpNkmhoUP2pdeWgricQ+Q==", + "license": "MIT", "dependencies": { "should-type": "^1.3.0", "should-type-adaptors": "^1.0.1" @@ -27267,13 +25070,11 @@ }, "node_modules/should-type": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/should-type/-/should-type-1.4.0.tgz", - "integrity": "sha512-MdAsTu3n25yDbIe1NeN69G4n6mUnJGtSJHygX3+oN0ZbO3DTiATnf7XnYJdGT42JCXurTb1JI0qOBR65shvhPQ==" + "license": "MIT" }, "node_modules/should-type-adaptors": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/should-type-adaptors/-/should-type-adaptors-1.1.0.tgz", - "integrity": "sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA==", + "license": "MIT", "dependencies": { "should-type": "^1.3.0", "should-util": "^1.0.0" @@ -27281,13 +25082,11 @@ }, "node_modules/should-util": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/should-util/-/should-util-1.0.1.tgz", - "integrity": "sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", @@ -27299,21 +25098,18 @@ }, "node_modules/signal-exit": { "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + "license": "ISC" }, "node_modules/simple-swizzle": { "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "license": "MIT", "dependencies": { "is-arrayish": "^0.3.1" } }, "node_modules/sirv": { "version": "1.0.19", - "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.19.tgz", - "integrity": "sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==", + "license": "MIT", "dependencies": { "@polka/url": "^1.0.0-next.20", "mrmime": "^1.0.0", @@ -27325,13 +25121,11 @@ }, "node_modules/sisteransi": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + "license": "MIT" }, "node_modules/sitemap": { "version": "7.1.1", - "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-7.1.1.tgz", - "integrity": "sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==", + "license": "MIT", "dependencies": { "@types/node": "^17.0.5", "@types/sax": "^1.2.1", @@ -27348,17 +25142,15 @@ }, "node_modules/slash": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/slice-ansi": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^6.0.0", "is-fullwidth-code-point": "^4.0.0" @@ -27372,9 +25164,8 @@ }, "node_modules/slice-ansi/node_modules/ansi-styles": { "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -27384,9 +25175,8 @@ }, "node_modules/slice-ansi/node_modules/is-fullwidth-code-point": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -27396,16 +25186,14 @@ }, "node_modules/slugify": { "version": "1.6.6", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", - "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", + "license": "MIT", "engines": { "node": ">=8.0.0" } }, "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==", + "license": "MIT", "dependencies": { "base": "^0.11.1", "debug": "^2.2.0", @@ -27422,8 +25210,7 @@ }, "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==", + "license": "MIT", "dependencies": { "define-property": "^1.0.0", "isobject": "^3.0.0", @@ -27435,8 +25222,7 @@ }, "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": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "license": "MIT", "dependencies": { "is-descriptor": "^1.0.0" }, @@ -27446,8 +25232,7 @@ }, "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==", + "license": "MIT", "dependencies": { "kind-of": "^3.2.0" }, @@ -27457,13 +25242,11 @@ }, "node_modules/snapdragon-util/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==" + "license": "MIT" }, "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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -27473,16 +25256,14 @@ }, "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==", + "license": "MIT", "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": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -27492,8 +25273,7 @@ }, "node_modules/snapdragon/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": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -27503,8 +25283,7 @@ }, "node_modules/snapdragon/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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -27514,13 +25293,11 @@ }, "node_modules/snapdragon/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==" + "license": "MIT" }, "node_modules/snapdragon/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": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -27530,8 +25307,7 @@ }, "node_modules/snapdragon/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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -27541,8 +25317,7 @@ }, "node_modules/snapdragon/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==", + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -27554,21 +25329,18 @@ }, "node_modules/snapdragon/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==", + "license": "MIT", "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": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "node_modules/sockjs": { "version": "0.3.24", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", - "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "license": "MIT", "dependencies": { "faye-websocket": "^0.11.3", "uuid": "^8.3.2", @@ -27577,16 +25349,14 @@ }, "node_modules/sort-css-media-queries": { "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==", + "license": "MIT", "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": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "license": "MIT", "dependencies": { "is-plain-obj": "^1.0.0" }, @@ -27596,8 +25366,7 @@ }, "node_modules/sort-keys-length": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", - "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", + "license": "MIT", "dependencies": { "sort-keys": "^1.0.0" }, @@ -27607,16 +25376,14 @@ }, "node_modules/sort-keys/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": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map": { "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } @@ -27631,9 +25398,7 @@ }, "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==", - "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "license": "MIT", "dependencies": { "atob": "^2.1.2", "decode-uri-component": "^0.2.0", @@ -27644,8 +25409,7 @@ }, "node_modules/source-map-support": { "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -27653,22 +25417,18 @@ }, "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==", + "license": "BSD-3-Clause", "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==", - "deprecated": "See https://github.com/lydell/source-map-url#deprecated" + "license": "MIT" }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -27676,8 +25436,7 @@ }, "node_modules/spdx-correct": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -27685,13 +25444,11 @@ }, "node_modules/spdx-exceptions": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" @@ -27699,13 +25456,11 @@ }, "node_modules/spdx-license-ids": { "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==" + "license": "CC0-1.0" }, "node_modules/spdy": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "license": "MIT", "dependencies": { "debug": "^4.1.0", "handle-thing": "^2.0.0", @@ -27719,8 +25474,7 @@ }, "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==", + "license": "MIT", "dependencies": { "debug": "^4.1.0", "detect-node": "^2.0.4", @@ -27732,8 +25486,7 @@ }, "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==", + "license": "MIT", "dependencies": { "extend-shallow": "^3.0.0" }, @@ -27743,8 +25496,7 @@ }, "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": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -27755,8 +25507,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" }, @@ -27766,13 +25517,11 @@ }, "node_modules/sprintf-js": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + "license": "BSD-3-Clause" }, "node_modules/squeak": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/squeak/-/squeak-1.3.0.tgz", - "integrity": "sha512-YQL1ulInM+ev8nXX7vfXsCsDh6IqXlrremc1hzi77776BtpWgYJUMto3UM05GSAaGzJgWekszjoKDrVNB5XG+A==", + "license": "MIT", "dependencies": { "chalk": "^1.0.0", "console-stream": "^0.1.1", @@ -27784,24 +25533,21 @@ }, "node_modules/squeak/node_modules/ansi-regex": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/squeak/node_modules/ansi-styles": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/squeak/node_modules/chalk": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "license": "MIT", "dependencies": { "ansi-styles": "^2.2.1", "escape-string-regexp": "^1.0.2", @@ -27815,8 +25561,7 @@ }, "node_modules/squeak/node_modules/strip-ansi": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "license": "MIT", "dependencies": { "ansi-regex": "^2.0.0" }, @@ -27826,16 +25571,14 @@ }, "node_modules/squeak/node_modules/supports-color": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/sshpk": { "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", + "license": "MIT", "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", @@ -27858,14 +25601,12 @@ }, "node_modules/stable": { "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + "license": "MIT" }, "node_modules/stack-utils": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, + "license": "MIT", "dependencies": { "escape-string-regexp": "^2.0.0" }, @@ -27875,17 +25616,15 @@ }, "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, + "license": "MIT", "engines": { "node": ">=8" } }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -27893,8 +25632,7 @@ }, "node_modules/static-extend": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "license": "MIT", "dependencies": { "define-property": "^0.2.5", "object-copy": "^0.1.0" @@ -27905,8 +25643,7 @@ }, "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": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "license": "MIT", "dependencies": { "is-descriptor": "^0.1.0" }, @@ -27916,8 +25653,7 @@ }, "node_modules/static-extend/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": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -27927,8 +25663,7 @@ }, "node_modules/static-extend/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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -27938,13 +25673,11 @@ }, "node_modules/static-extend/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==" + "license": "MIT" }, "node_modules/static-extend/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": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -27954,8 +25687,7 @@ }, "node_modules/static-extend/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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -27965,8 +25697,7 @@ }, "node_modules/static-extend/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==", + "license": "MIT", "dependencies": { "is-accessor-descriptor": "^0.1.6", "is-data-descriptor": "^0.1.4", @@ -27978,29 +25709,25 @@ }, "node_modules/static-extend/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==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/statuses": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/std-env": { "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==" + "license": "MIT" }, "node_modules/stream-browserify": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", + "license": "MIT", "dependencies": { "inherits": "~2.0.4", "readable-stream": "^3.5.0" @@ -28008,8 +25735,7 @@ }, "node_modules/stream-http": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz", - "integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==", + "license": "MIT", "dependencies": { "builtin-status-codes": "^3.0.0", "inherits": "^2.0.4", @@ -28019,24 +25745,20 @@ }, "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": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "license": "MIT", "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==", + "license": "MIT", "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", @@ -28050,22 +25772,21 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/string-argv": { "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.6.19" } }, "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, + "license": "MIT", "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" @@ -28075,14 +25796,11 @@ } }, "node_modules/string-template": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz", - "integrity": "sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw==" + "version": "0.2.1" }, "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==", + "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -28095,8 +25813,7 @@ "node_modules/string-width-cjs": { "name": "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==", + "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -28108,8 +25825,7 @@ }, "node_modules/string.prototype.trim": { "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -28124,8 +25840,7 @@ }, "node_modules/string.prototype.trimend": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -28137,8 +25852,7 @@ }, "node_modules/string.prototype.trimstart": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -28150,8 +25864,7 @@ }, "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==", + "license": "BSD-2-Clause", "dependencies": { "get-own-enumerable-property-symbols": "^3.0.0", "is-obj": "^1.0.1", @@ -28163,8 +25876,7 @@ }, "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==", + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -28175,8 +25887,7 @@ "node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -28186,57 +25897,50 @@ }, "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, + "license": "MIT", "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": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/strip-color": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz", - "integrity": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/strip-dirs": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", - "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", + "license": "MIT", "dependencies": { "is-natural-number": "^4.0.1" } }, "node_modules/strip-eof": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "license": "MIT", "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==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/strip-indent": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==", + "license": "MIT", "dependencies": { "get-stdin": "^4.0.1" }, @@ -28249,16 +25953,14 @@ }, "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=", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/strip-outer": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", - "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.2" }, @@ -28268,26 +25970,22 @@ }, "node_modules/strnum": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + "license": "MIT" }, "node_modules/style-mod": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.2.tgz", - "integrity": "sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "inline-style-parser": "0.1.1" } }, "node_modules/stylehacks": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", - "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "license": "MIT", "dependencies": { "browserslist": "^4.21.4", "postcss-selector-parser": "^6.0.4" @@ -28301,13 +25999,11 @@ }, "node_modules/stylis": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.3.1.tgz", - "integrity": "sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==" + "license": "MIT" }, "node_modules/sucrase": { "version": "3.35.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", - "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.2", "commander": "^4.0.0", @@ -28327,24 +26023,21 @@ }, "node_modules/sucrase/node_modules/brace-expansion": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/sucrase/node_modules/commander": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/sucrase/node_modules/glob": { "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^2.3.5", @@ -28364,8 +26057,7 @@ }, "node_modules/sucrase/node_modules/minimatch": { "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, @@ -28378,8 +26070,7 @@ }, "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==", + "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, @@ -28389,8 +26080,7 @@ }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -28400,13 +26090,11 @@ }, "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==" + "license": "MIT" }, "node_modules/svgo": { "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "license": "MIT", "dependencies": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", @@ -28425,16 +26113,14 @@ }, "node_modules/svgo/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==", + "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/swagger2openapi": { "version": "7.0.8", - "resolved": "https://registry.npmjs.org/swagger2openapi/-/swagger2openapi-7.0.8.tgz", - "integrity": "sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g==", + "license": "BSD-3-Clause", "dependencies": { "call-me-maybe": "^1.0.1", "node-fetch": "^2.6.1", @@ -28459,9 +26145,8 @@ }, "node_modules/swc-loader": { "version": "0.2.3", - "resolved": "https://registry.npmjs.org/swc-loader/-/swc-loader-0.2.3.tgz", - "integrity": "sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==", "dev": true, + "license": "MIT", "peerDependencies": { "@swc/core": "^1.2.147", "webpack": ">=2" @@ -28469,21 +26154,18 @@ }, "node_modules/tabbable": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", - "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" + "license": "MIT" }, "node_modules/tapable": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/tar-stream": { "version": "1.6.2", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", - "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "license": "MIT", "dependencies": { "bl": "^1.0.0", "buffer-alloc": "^1.2.0", @@ -28499,13 +26181,11 @@ }, "node_modules/tar-stream/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "license": "MIT" }, "node_modules/tar-stream/node_modules/readable-stream": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -28518,16 +26198,14 @@ }, "node_modules/tar-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==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/tcp-port-used": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/tcp-port-used/-/tcp-port-used-1.0.2.tgz", - "integrity": "sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==", + "license": "MIT", "dependencies": { "debug": "4.3.1", "is2": "^2.0.6" @@ -28535,8 +26213,7 @@ }, "node_modules/tcp-port-used/node_modules/debug": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -28551,16 +26228,14 @@ }, "node_modules/temp-dir": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", - "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/tempfile": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", - "integrity": "sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==", + "license": "MIT", "dependencies": { "temp-dir": "^1.0.0", "uuid": "^3.0.1" @@ -28571,17 +26246,14 @@ }, "node_modules/tempfile/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.", + "license": "MIT", "bin": { "uuid": "bin/uuid" } }, "node_modules/terser": { "version": "5.10.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.10.0.tgz", - "integrity": "sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==", + "license": "BSD-2-Clause", "dependencies": { "commander": "^2.20.0", "source-map": "~0.7.2", @@ -28604,8 +26276,7 @@ }, "node_modules/terser-webpack-plugin": { "version": "5.3.3", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.3.tgz", - "integrity": "sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==", + "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.7", "jest-worker": "^27.4.5", @@ -28637,22 +26308,19 @@ }, "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==" + "license": "MIT" }, "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==", + "license": "BSD-3-Clause", "engines": { "node": ">= 8" } }, "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, + "license": "ISC", "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", @@ -28664,29 +26332,25 @@ }, "node_modules/text-segmentation": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz", - "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "license": "MIT", "dependencies": { "utrie": "^1.0.2" } }, "node_modules/text-table": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + "license": "MIT" }, "node_modules/thenify": { "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "thenify": ">= 3.1.0 < 4" }, @@ -28696,13 +26360,11 @@ }, "node_modules/through": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + "license": "MIT" }, "node_modules/through2": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" @@ -28710,13 +26372,11 @@ }, "node_modules/through2/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "license": "MIT" }, "node_modules/through2/node_modules/readable-stream": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -28729,34 +26389,29 @@ }, "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==", + "license": "MIT", "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==" + "license": "MIT" }, "node_modules/ticky": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ticky/-/ticky-1.0.1.tgz", - "integrity": "sha512-RX35iq/D+lrsqhcPWIazM9ELkjOe30MSeoBHQHSsRwd1YuhJO5ui1K1/R0r7N3mFvbLBs33idw+eR6j+w6i/DA==" + "license": "MIT" }, "node_modules/timed-out": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "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==", + "license": "MIT", "dependencies": { "setimmediate": "^1.0.4" }, @@ -28766,18 +26421,15 @@ }, "node_modules/timsort": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", - "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==" + "license": "MIT" }, "node_modules/tiny-invariant": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz", - "integrity": "sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg==" + "license": "MIT" }, "node_modules/tiny-lr": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.1.tgz", - "integrity": "sha512-44yhA3tsaRoMOjQQ+5v5mVdqef+kH6Qze9jTpqtVufgYjYt08zyZAwNwwVBj3i1rJMnR52IxOW0LK0vBzgAkuA==", + "license": "MIT", "dependencies": { "body": "^5.1.0", "debug": "^3.1.0", @@ -28789,16 +26441,14 @@ }, "node_modules/tiny-lr/node_modules/debug": { "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/tiny-lr/node_modules/faye-websocket": { "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==", + "license": "MIT", "dependencies": { "websocket-driver": ">=0.5.1" }, @@ -28808,24 +26458,20 @@ }, "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==" + "license": "MIT" }, "node_modules/tmpl": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true + "dev": true, + "license": "BSD-3-Clause" }, "node_modules/to-buffer": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", - "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" + "license": "MIT" }, "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": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "license": "MIT", "dependencies": { "kind-of": "^3.0.2" }, @@ -28835,13 +26481,11 @@ }, "node_modules/to-object-path/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==" + "license": "MIT" }, "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": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", "dependencies": { "is-buffer": "^1.1.5" }, @@ -28851,16 +26495,14 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "define-property": "^2.0.2", "extend-shallow": "^3.0.2", @@ -28873,8 +26515,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, @@ -28884,8 +26525,7 @@ }, "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": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", "dependencies": { "assign-symbols": "^1.0.0", "is-extendable": "^1.0.1" @@ -28896,8 +26536,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4" }, @@ -28907,29 +26546,25 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=0.6" } }, "node_modules/toml": { "version": "2.3.6", - "resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz", - "integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==" + "license": "MIT" }, "node_modules/totalist": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz", - "integrity": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/tough-cookie": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.28", "punycode": "^2.1.1" @@ -28940,21 +26575,15 @@ }, "node_modules/tr46": { "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + "license": "MIT" }, "node_modules/traverse": { "version": "0.3.9", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", - "integrity": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==", - "engines": { - "node": "*" - } + "license": "MIT/X11" }, "node_modules/tree-node-cli": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/tree-node-cli/-/tree-node-cli-1.6.0.tgz", - "integrity": "sha512-M8um5Lbl76rWU5aC8oOeEhruiCM29lFCKnwpxrwMjpRicHXJx+bb9Cak11G3zYLrMb6Glsrhnn90rHIzDJrjvg==", + "license": "MIT", "dependencies": { "commander": "^5.0.0", "fast-folder-size": "1.6.1", @@ -28966,14 +26595,11 @@ } }, "node_modules/trim": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", - "integrity": "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==" + "version": "0.0.1" }, "node_modules/trim-lines": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", - "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -28981,16 +26607,14 @@ }, "node_modules/trim-newlines": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/trim-repeated": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", - "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.2" }, @@ -29000,8 +26624,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -29009,8 +26632,7 @@ }, "node_modules/trough": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz", - "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -29018,8 +26640,7 @@ }, "node_modules/truncate-html": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/truncate-html/-/truncate-html-1.0.4.tgz", - "integrity": "sha512-FpDAlPzpJ3jlZiNEahRs584FS3jOSQafgj4cC9DmAYPct6uMZDLY625+eErRd43G35vGDrNq3i7b4aYUQ/Bxqw==", + "license": "MIT", "dependencies": { "@types/cheerio": "^0.22.8", "cheerio": "0.22.0" @@ -29027,8 +26648,7 @@ }, "node_modules/truncate-html/node_modules/cheerio": { "version": "0.22.0", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", - "integrity": "sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA==", + "license": "MIT", "dependencies": { "css-select": "~1.2.0", "dom-serializer": "~0.1.0", @@ -29053,8 +26673,7 @@ }, "node_modules/truncate-html/node_modules/css-select": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA==", + "license": "BSD-like", "dependencies": { "boolbase": "~1.0.0", "css-what": "2.1", @@ -29064,16 +26683,14 @@ }, "node_modules/truncate-html/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==", + "license": "BSD-2-Clause", "engines": { "node": "*" } }, "node_modules/truncate-html/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==", + "license": "MIT", "dependencies": { "domelementtype": "^1.3.0", "entities": "^1.1.1" @@ -29081,21 +26698,17 @@ }, "node_modules/truncate-html/node_modules/domelementtype": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + "license": "BSD-2-Clause" }, "node_modules/truncate-html/node_modules/domhandler": { "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "license": "BSD-2-Clause", "dependencies": { "domelementtype": "1" } }, "node_modules/truncate-html/node_modules/domutils": { "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==", "dependencies": { "dom-serializer": "0", "domelementtype": "1" @@ -29103,13 +26716,11 @@ }, "node_modules/truncate-html/node_modules/entities": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + "license": "BSD-2-Clause" }, "node_modules/truncate-html/node_modules/htmlparser2": { "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "license": "MIT", "dependencies": { "domelementtype": "^1.3.1", "domhandler": "^2.3.0", @@ -29121,39 +26732,33 @@ }, "node_modules/truncate-html/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==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "~1.0.0" } }, "node_modules/ts-dedent": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz", - "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", + "license": "MIT", "engines": { "node": ">=6.10" } }, "node_modules/ts-interface-checker": { "version": "0.1.13", - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", - "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + "license": "Apache-2.0" }, "node_modules/tslib": { "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + "license": "0BSD" }, "node_modules/tty-browserify": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz", - "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==" + "license": "MIT" }, "node_modules/tunnel-agent": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "license": "Apache-2.0", "dependencies": { "safe-buffer": "^5.0.1" }, @@ -29163,22 +26768,19 @@ }, "node_modules/tweetnacl": { "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" + "license": "Unlicense" }, "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, + "license": "MIT", "engines": { "node": ">=4" } }, "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==", + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -29188,8 +26790,7 @@ }, "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==", + "license": "MIT", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" @@ -29200,8 +26801,7 @@ }, "node_modules/typed-array-length": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "for-each": "^0.3.3", @@ -29213,21 +26813,18 @@ }, "node_modules/typedarray": { "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "is-typedarray": "^1.0.0" } }, "node_modules/typescript": { "version": "4.7.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", - "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", + "license": "Apache-2.0", "peer": true, "bin": { "tsc": "bin/tsc", @@ -29239,8 +26836,6 @@ }, "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==", "funding": [ { "type": "opencollective", @@ -29251,14 +26846,14 @@ "url": "https://paypal.me/faisalman" } ], + "license": "MIT", "engines": { "node": "*" } }, "node_modules/unbox-primitive": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", @@ -29271,8 +26866,7 @@ }, "node_modules/unbzip2-stream": { "version": "1.4.3", - "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", - "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", + "license": "MIT", "dependencies": { "buffer": "^5.2.1", "through": "^2.3.8" @@ -29280,8 +26874,7 @@ }, "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==", + "license": "MIT", "dependencies": { "inherits": "^2.0.0", "xtend": "^4.0.0" @@ -29293,16 +26886,14 @@ }, "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" @@ -29313,24 +26904,21 @@ }, "node_modules/unicode-match-property-value-ecmascript": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicode-property-aliases-ecmascript": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unified": { "version": "9.2.2", - "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz", - "integrity": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==", + "license": "MIT", "dependencies": { "bail": "^1.0.0", "extend": "^3.0.0", @@ -29346,8 +26934,7 @@ }, "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==", + "license": "MIT", "dependencies": { "arr-union": "^3.1.0", "get-value": "^2.0.6", @@ -29360,18 +26947,15 @@ }, "node_modules/uniq": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==" + "license": "MIT" }, "node_modules/uniqs": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "integrity": "sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "crypto-random-string": "^2.0.0" }, @@ -29381,8 +26965,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -29390,8 +26973,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -29399,8 +26981,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -29408,8 +26989,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -29417,8 +26997,7 @@ }, "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==", + "license": "MIT", "dependencies": { "unist-util-is": "^4.0.0" }, @@ -29429,8 +27008,7 @@ }, "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==", + "license": "MIT", "dependencies": { "unist-util-visit": "^2.0.0" }, @@ -29441,8 +27019,7 @@ }, "node_modules/unist-util-remove-position/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0", @@ -29455,8 +27032,7 @@ }, "node_modules/unist-util-remove-position/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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^4.0.0" @@ -29468,8 +27044,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.2" }, @@ -29480,8 +27055,7 @@ }, "node_modules/unist-util-visit": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", - "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-is": "^6.0.0", @@ -29494,8 +27068,7 @@ }, "node_modules/unist-util-visit-parents": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", - "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0", "unist-util-is": "^6.0.0" @@ -29507,13 +27080,11 @@ }, "node_modules/unist-util-visit-parents/node_modules/@types/unist": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.0.tgz", - "integrity": "sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w==" + "license": "MIT" }, "node_modules/unist-util-visit-parents/node_modules/unist-util-is": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", - "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -29524,13 +27095,11 @@ }, "node_modules/unist-util-visit/node_modules/@types/unist": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.0.tgz", - "integrity": "sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w==" + "license": "MIT" }, "node_modules/unist-util-visit/node_modules/unist-util-is": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", - "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "license": "MIT", "dependencies": { "@types/unist": "^3.0.0" }, @@ -29541,29 +27110,25 @@ }, "node_modules/universalify": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "license": "MIT", "engines": { "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==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/unquote": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" + "license": "MIT" }, "node_modules/unset-value": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "license": "MIT", "dependencies": { "has-value": "^0.3.1", "isobject": "^3.0.0" @@ -29574,8 +27139,7 @@ }, "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": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "license": "MIT", "dependencies": { "get-value": "^2.0.3", "has-values": "^0.1.4", @@ -29587,8 +27151,7 @@ }, "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": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "license": "MIT", "dependencies": { "isarray": "1.0.0" }, @@ -29598,21 +27161,18 @@ }, "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": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/unset-value/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "license": "MIT" }, "node_modules/unzipper": { "version": "0.10.11", - "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.10.11.tgz", - "integrity": "sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==", + "license": "MIT", "dependencies": { "big-integer": "^1.6.17", "binary": "~0.3.0", @@ -29628,13 +27188,11 @@ }, "node_modules/unzipper/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "license": "MIT" }, "node_modules/unzipper/node_modules/readable-stream": { "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -29647,8 +27205,7 @@ }, "node_modules/unzipper/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==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } @@ -29671,6 +27228,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.0" @@ -29684,8 +27242,7 @@ }, "node_modules/update-notifier": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-5.1.0.tgz", - "integrity": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==", + "license": "BSD-2-Clause", "dependencies": { "boxen": "^5.0.0", "chalk": "^4.1.0", @@ -29711,8 +27268,7 @@ }, "node_modules/update-notifier/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -29725,8 +27281,7 @@ }, "node_modules/update-notifier/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -29740,8 +27295,7 @@ }, "node_modules/update-notifier/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -29751,21 +27305,18 @@ }, "node_modules/update-notifier/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==" + "license": "MIT" }, "node_modules/update-notifier/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/update-notifier/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -29775,22 +27326,18 @@ }, "node_modules/uri-js": { "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } }, "node_modules/urix": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", - "deprecated": "Please see https://github.com/lydell/urix#deprecated" + "license": "MIT" }, "node_modules/url": { "version": "0.11.3", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.3.tgz", - "integrity": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==", + "license": "MIT", "dependencies": { "punycode": "^1.4.1", "qs": "^6.11.2" @@ -29798,8 +27345,7 @@ }, "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==", + "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", "mime-types": "^2.1.27", @@ -29824,8 +27370,7 @@ }, "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=", + "license": "MIT", "dependencies": { "prepend-http": "^2.0.0" }, @@ -29835,21 +27380,18 @@ }, "node_modules/url-to-options": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", - "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==", + "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/url/node_modules/punycode": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + "license": "MIT" }, "node_modules/url/node_modules/qs": { "version": "6.11.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", - "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.4" }, @@ -29862,32 +27404,28 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/use-composed-ref": { "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==", + "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, "node_modules/use-editable": { "version": "2.3.3", - "resolved": "https://registry.npmjs.org/use-editable/-/use-editable-2.3.3.tgz", - "integrity": "sha512-7wVD2JbfAFJ3DK0vITvXBdpd9JAz5BcKAAolsnLBuBn6UDDwBGuCIAGvR3yA2BNKm578vAMVHFCWaOcA+BhhiA==", + "license": "MIT", "peerDependencies": { "react": ">= 16.8.0" } }, "node_modules/use-isomorphic-layout-effect": { "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==", + "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0" }, @@ -29899,8 +27437,7 @@ }, "node_modules/use-latest": { "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==", + "license": "MIT", "dependencies": { "use-isomorphic-layout-effect": "^1.1.1" }, @@ -29915,16 +27452,14 @@ }, "node_modules/use-sync-external-store": { "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==", + "license": "MIT", "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, "node_modules/util": { "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", @@ -29935,13 +27470,11 @@ }, "node_modules/util-deprecate": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.2", @@ -29954,45 +27487,39 @@ }, "node_modules/utila": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + "license": "MIT" }, "node_modules/utility-types": { "version": "3.10.0", - "resolved": "https://registry.npmjs.org/utility-types/-/utility-types-3.10.0.tgz", - "integrity": "sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==", + "license": "MIT", "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": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", "engines": { "node": ">= 0.4.0" } }, "node_modules/utrie": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz", - "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "license": "MIT", "dependencies": { "base64-arraybuffer": "^1.0.2" } }, "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==", + "license": "MIT", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/uvu": { "version": "0.5.6", - "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz", - "integrity": "sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==", + "license": "MIT", "dependencies": { "dequal": "^2.0.0", "diff": "^5.0.0", @@ -30008,8 +27535,7 @@ }, "node_modules/uvu/node_modules/kleur": { "version": "4.1.5", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", - "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "license": "MIT", "engines": { "node": ">=6" } @@ -30019,6 +27545,7 @@ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", "dev": true, + "license": "ISC", "dependencies": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", @@ -30036,8 +27563,7 @@ }, "node_modules/validate-npm-package-license": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "license": "Apache-2.0", "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" @@ -30045,53 +27571,41 @@ }, "node_modules/validate.io-array": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/validate.io-array/-/validate.io-array-1.0.6.tgz", - "integrity": "sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==" + "license": "MIT" }, "node_modules/validate.io-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/validate.io-function/-/validate.io-function-1.0.2.tgz", - "integrity": "sha512-LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ==" + "version": "1.0.2" }, "node_modules/validate.io-integer": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/validate.io-integer/-/validate.io-integer-1.0.5.tgz", - "integrity": "sha512-22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ==", "dependencies": { "validate.io-number": "^1.0.3" } }, "node_modules/validate.io-integer-array": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/validate.io-integer-array/-/validate.io-integer-array-1.0.0.tgz", - "integrity": "sha512-mTrMk/1ytQHtCY0oNO3dztafHYyGU88KL+jRxWuzfOmQb+4qqnWmI+gykvGp8usKZOM0H7keJHEbRaFiYA0VrA==", "dependencies": { "validate.io-array": "^1.0.3", "validate.io-integer": "^1.0.4" } }, "node_modules/validate.io-number": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/validate.io-number/-/validate.io-number-1.0.3.tgz", - "integrity": "sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==" + "version": "1.0.3" }, "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==" + "license": "MIT" }, "node_modules/vary": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -30099,11 +27613,10 @@ }, "node_modules/verror": { "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", "engines": [ "node >=0.6.0" ], + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", @@ -30112,13 +27625,11 @@ }, "node_modules/verror/node_modules/core-util-is": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" + "license": "MIT" }, "node_modules/vfile": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz", - "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", @@ -30132,8 +27643,7 @@ }, "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==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/unified" @@ -30141,8 +27651,7 @@ }, "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==", + "license": "MIT", "dependencies": { "@types/unist": "^2.0.0", "unist-util-stringify-position": "^2.0.0" @@ -30154,18 +27663,15 @@ }, "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==" + "license": "MIT" }, "node_modules/w3c-keyname": { "version": "2.2.8", - "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz", - "integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==" + "license": "MIT" }, "node_modules/wait-on": { "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==", + "license": "MIT", "dependencies": { "axios": "^0.25.0", "joi": "^17.6.0", @@ -30182,25 +27688,22 @@ }, "node_modules/walker": { "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { "makeerror": "1.0.12" } }, "node_modules/warning": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "license": "MIT", "dependencies": { "loose-envify": "^1.0.0" } }, "node_modules/watchpack": { "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -30211,16 +27714,14 @@ }, "node_modules/wbuf": { "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "license": "MIT", "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==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" @@ -30228,18 +27729,15 @@ }, "node_modules/web-worker": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/web-worker/-/web-worker-1.3.0.tgz", - "integrity": "sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==" + "license": "Apache-2.0" }, "node_modules/webidl-conversions": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + "license": "BSD-2-Clause" }, "node_modules/webpack": { "version": "5.74.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz", - "integrity": "sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==", + "license": "MIT", "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^0.0.51", @@ -30284,8 +27782,7 @@ }, "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==", + "license": "MIT", "dependencies": { "acorn": "^8.0.4", "acorn-walk": "^8.0.0", @@ -30306,8 +27803,7 @@ }, "node_modules/webpack-bundle-analyzer/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -30320,8 +27816,7 @@ }, "node_modules/webpack-bundle-analyzer/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -30335,8 +27830,7 @@ }, "node_modules/webpack-bundle-analyzer/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -30346,29 +27840,25 @@ }, "node_modules/webpack-bundle-analyzer/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==" + "license": "MIT" }, "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==", + "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/webpack-bundle-analyzer/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/webpack-bundle-analyzer/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -30378,8 +27868,7 @@ }, "node_modules/webpack-dev-middleware": { "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==", + "license": "MIT", "dependencies": { "colorette": "^2.0.10", "memfs": "^3.4.3", @@ -30400,8 +27889,7 @@ }, "node_modules/webpack-dev-middleware/node_modules/ajv": { "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -30415,8 +27903,7 @@ }, "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, @@ -30426,21 +27913,18 @@ }, "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "node_modules/webpack-dev-middleware/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==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/webpack-dev-middleware/node_modules/schema-utils": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.8.0", @@ -30457,8 +27941,7 @@ }, "node_modules/webpack-dev-server": { "version": "4.9.3", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.3.tgz", - "integrity": "sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==", + "license": "MIT", "dependencies": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", @@ -30511,8 +27994,7 @@ }, "node_modules/webpack-dev-server/node_modules/ajv": { "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -30526,8 +28008,7 @@ }, "node_modules/webpack-dev-server/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, @@ -30537,13 +28018,11 @@ }, "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "node_modules/webpack-dev-server/node_modules/schema-utils": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.8.0", @@ -30560,8 +28039,7 @@ }, "node_modules/webpack-dev-server/node_modules/ws": { "version": "8.8.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz", - "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==", + "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -30580,8 +28058,7 @@ }, "node_modules/webpack-merge": { "version": "5.8.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", - "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", + "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", "wildcard": "^2.0.0" @@ -30592,16 +28069,14 @@ }, "node_modules/webpack-sources": { "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==", + "license": "MIT", "engines": { "node": ">=10.13.0" } }, "node_modules/webpackbar": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz", - "integrity": "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==", + "license": "MIT", "dependencies": { "chalk": "^4.1.0", "consola": "^2.15.3", @@ -30617,8 +28092,7 @@ }, "node_modules/webpackbar/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -30631,8 +28105,7 @@ }, "node_modules/webpackbar/node_modules/chalk": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -30646,8 +28119,7 @@ }, "node_modules/webpackbar/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -30657,21 +28129,18 @@ }, "node_modules/webpackbar/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==" + "license": "MIT" }, "node_modules/webpackbar/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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/webpackbar/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==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -30681,8 +28150,7 @@ }, "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==", + "license": "Apache-2.0", "dependencies": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", @@ -30694,16 +28162,14 @@ }, "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==", + "license": "Apache-2.0", "engines": { "node": ">=0.8.0" } }, "node_modules/whatwg-url": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" @@ -30711,8 +28177,7 @@ }, "node_modules/which": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -30725,8 +28190,7 @@ }, "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==", + "license": "MIT", "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", @@ -30740,13 +28204,11 @@ }, "node_modules/which-module": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", - "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + "license": "ISC" }, "node_modules/which-typed-array": { "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "license": "MIT", "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", @@ -30764,8 +28226,7 @@ }, "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==", + "license": "MIT", "dependencies": { "string-width": "^4.0.0" }, @@ -30775,29 +28236,25 @@ }, "node_modules/wildcard": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", - "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==" + "license": "MIT" }, "node_modules/wordwrap": { "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==", + "license": "MIT/X11", "engines": { "node": ">=0.4.0" } }, "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==", + "license": "MIT", "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==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -30813,8 +28270,7 @@ "node_modules/wrap-ansi-cjs": { "name": "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==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -30829,8 +28285,7 @@ }, "node_modules/wrap-ansi-cjs/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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -30843,8 +28298,7 @@ }, "node_modules/wrap-ansi-cjs/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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -30854,13 +28308,11 @@ }, "node_modules/wrap-ansi-cjs/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==" + "license": "MIT" }, "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==", + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -30873,8 +28325,7 @@ }, "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==", + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -30884,18 +28335,15 @@ }, "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==" + "license": "MIT" }, "node_modules/wrappy": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "license": "ISC" }, "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==", + "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", @@ -30905,8 +28353,7 @@ }, "node_modules/ws": { "version": "7.5.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz", - "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==", + "license": "MIT", "engines": { "node": ">=8.3.0" }, @@ -30925,16 +28372,14 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/xml-formatter": { "version": "2.6.1", - "resolved": "https://registry.npmjs.org/xml-formatter/-/xml-formatter-2.6.1.tgz", - "integrity": "sha512-dOiGwoqm8y22QdTNI7A+N03tyVfBlQ0/oehAzxIZtwnFAHGeSlrfjF73YQvzSsa/Kt6+YZasKsrdu6OIpuBggw==", + "license": "MIT", "dependencies": { "xml-parser-xo": "^3.2.0" }, @@ -30944,8 +28389,7 @@ }, "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==", + "license": "MIT", "dependencies": { "sax": "^1.2.4" }, @@ -30955,58 +28399,50 @@ }, "node_modules/xml-parser-xo": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/xml-parser-xo/-/xml-parser-xo-3.2.0.tgz", - "integrity": "sha512-8LRU6cq+d7mVsoDaMhnkkt3CTtAs4153p49fRo+HIB3I1FD1o5CeXRjRH29sQevIfVJIcPjKSsPU/+Ujhq09Rg==", + "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/xmlbuilder": { "version": "13.0.2", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-13.0.2.tgz", - "integrity": "sha512-Eux0i2QdDYKbdbA6AM6xE4m6ZTZr4G4xF9kahI2ukSEMCzwce2eX9WlTI5J3s+NU7hpasFsr8hWIONae7LluAQ==", + "license": "MIT", "engines": { "node": ">=6.0" } }, "node_modules/xtend": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", "engines": { "node": ">=0.4" } }, "node_modules/y18n": { "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yallist": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "license": "ISC" }, "node_modules/yaml": { "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", "engines": { "node": ">= 6" } }, "node_modules/yaml-ast-parser": { "version": "0.0.43", - "resolved": "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz", - "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==" + "license": "Apache-2.0" }, "node_modules/yamljs": { "version": "0.2.10", - "resolved": "https://registry.npmjs.org/yamljs/-/yamljs-0.2.10.tgz", - "integrity": "sha512-sbkbOosewjeRmJ23Hjee1RgTxn+xa7mt4sew3tfD0SdH0LTcswnZC9dhSNq4PIz15roQMzb84DjECyQo5DWIww==", + "license": "MIT", "dependencies": { "argparse": "^1.0.7", "glob": "^7.0.5" @@ -31018,16 +28454,14 @@ }, "node_modules/yamljs/node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/yargs": { "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", @@ -31043,16 +28477,14 @@ }, "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==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/yauzl": { "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", + "license": "MIT", "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" @@ -31060,8 +28492,7 @@ }, "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==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -31071,8 +28502,7 @@ }, "node_modules/zwitch": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz", - "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==", + "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm"